Agent Plugins Marketplace
All plugins

knowledge

v0.3.26

Unified taxonomy tooling for durable project knowledge: docs, memory, and context snapshots in one plugin.

Codex21 Skills

By Girish AttriLicense: MIT0 GitHub starsUpdated 6 days ago

Directory evidence

Runtimes
Codex
Parsed components
21 skill or MCP entries
Source updated
Sep 18, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install knowledge for Codex

Installs for the current user
codex plugin marketplace add devgirishattri/agent-plugins
codex plugin marketplace upgrade girishattri-plugins
codex plugin add knowledge@girishattri-plugins

Paste and run these commands in a terminal with Codex. They add and refresh the girishattri-plugins catalog, then install this plugin.

Compatibility: the page URL and API slug “knowledge” remain stable.

  • Codex: knowledge@agent-plugin-marketplaceknowledge@girishattri-plugins

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/devgirishattri/agent-plugins

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is codex/plugins/knowledge/.

Plugin files

codex/plugins/knowledge/
├── .codex-plugin/plugin.json
├── skills/consolidate/SKILL.md
├── skills/context-diff/SKILL.md
├── skills/context-generate/SKILL.md
├── skills/context-list/SKILL.md
├── skills/context-load/SKILL.md
├── skills/context-remove/SKILL.md
├── skills/context-search/SKILL.md
├── skills/context-share/SKILL.md
├── skills/context-verify/SKILL.md
├── skills/docs-create/SKILL.md
├── skills/docs-review/SKILL.md
├── skills/doctor/SKILL.md
├── skills/find/SKILL.md
├── skills/graph/SKILL.md
├── skills/init/SKILL.md
├── skills/knowledge/SKILL.md
├── skills/lint/SKILL.md
├── skills/promote/SKILL.md
├── skills/recall/SKILL.md
├── skills/remember/SKILL.md
└── skills/search/SKILL.md

Included Skills21

consolidateskills/consolidate/SKILL.md

Review captured learnings and memory inbox items, propose durable create/update diffs, and apply approved changes. User-run only; nothing is written without explicit approval.

context-diffskills/context-diff/SKILL.md

Diff a saved session context snapshot against its archived history versions for the current Codex project.

context-generateskills/context-generate/SKILL.md

Generate a concise context snapshot or structured handoff for the current Codex session or project so another session can continue the work.

context-listskills/context-list/SKILL.md

List available session context snapshots for the current Codex project.

context-loadskills/context-load/SKILL.md

Load a previously saved session context snapshot into the current Codex session.

context-removeskills/context-remove/SKILL.md

Remove a saved session context snapshot for the current Codex project.

context-searchskills/context-search/SKILL.md

Search the contents of session context snapshots across local projects. Use when the user wants to find which snapshot or project mentions a topic, keyword, or decision.

context-shareskills/context-share/SKILL.md

Share a saved session context snapshot with another named tmux pane.

context-verifyskills/context-verify/SKILL.md

Verify a structured handoff's local file and commit evidence against an explicitly bound Git repository, without changing stores or executing recorded commands.

docs-createskills/docs-create/SKILL.md

This skill should be used when creating new documentation files or updating existing ones, especially when documenting system architecture, features, integrations, workflows, or technical decisions. Also use when asked to "document", "write docs for", or "create a doc about" any system component. Trigger this skill whenever the user wants to capture knowledge about how something works, even if they don't explicitly say "documentation" — phrases like "explain how X works and save it", "write up the auth flow", or "I need a reference for the API" all qualify.

docs-reviewskills/docs-review/SKILL.md

This skill should be used to independently verify the accuracy of documentation after it has been written or updated — it checks that every referenced file path, function, table, endpoint, and cross-link actually exists in the codebase, and runs the plugin's validation scripts. Trigger it after creating or editing docs (e.g. "review the docs I just wrote", "verify docs/ARCHITECTURE.md is accurate", "check the documentation for stale references") or as the verification step of the docs-create workflow. It reads and reports only; it does not edit files.

doctorskills/doctor/SKILL.md

Diagnose knowledge-store health across docs, memory, context, AGENTS.md, and provider capability (strictly read-only, cross-store).

findskills/find/SKILL.md

Search local docs, memory, and context together, with separate source, authority, and lifetime labels (read-only).

graphskills/graph/SKILL.md

Explicit-link knowledge graph over memory backlinks: neighbors, reverse links, orphans, components, and whole-graph renders.

initskills/init/SKILL.md

Bootstrap a new .agents/memory/ store for this repository through a reviewable two-call protocol.

knowledgeskills/knowledge/SKILL.md

Choose the right knowledge command for project docs, durable memory, or session context. Read before using a knowledge command for store boundaries and role rules.

lintskills/lint/SKILL.md

Lint the memory store's frontmatter, schema, and index for defects (read-only).

promoteskills/promote/SKILL.md

Promote stable context or memory into a durable destination, with separate confirmation before deleting the source. User-run only; nothing is written without explicit approval.

recallskills/recall/SKILL.md

Agent-facing recall: return slug citations and bounded snippets as untrusted fallible context.

rememberskills/remember/SKILL.md

Capture a low-friction memory candidate into the inbox for later consolidation, list pending candidates, or purge explicitly selected candidates.

searchskills/search/SKILL.md

Deterministic lexical ranked search over the memory store (read-only).

Plugin manifests1

codex/plugins/knowledge/.codex-plugin/plugin.json
{
  "name": "knowledge",
  "version": "0.3.26",
  "description": "Unified taxonomy tooling for durable project knowledge: docs, memory, and context snapshots in one plugin.",
  "author": {
    "name": "Girish Attri",
    "email": "[email protected]"
  },
  "homepage": "https://github.com/devgirishattri/agent-plugins",
  "repository": "https://github.com/devgirishattri/agent-plugins",
  "license": "MIT",
  "keywords": [
    "knowledge",
    "memory",
    "docs",
    "context",
    "handoff",
    "multi-agent"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Knowledge",
    "shortDescription": "Docs, memory, and context in one taxonomy for Codex.",
    "longDescription": "Unified project-knowledge tooling: structured documentation workflows, session context snapshots for handoff, and a deterministic project-local memory store — one taxonomy, one plugin.",
    "developerName": "Girish Attri",
    "category": "Productivity",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://github.com/devgirishattri/agent-plugins",
    "defaultPrompt": [
      "Document this project feature.",
      "Generate a context snapshot.",
      "List saved context snapshots."
    ],
    "composerIcon": "./assets/icon.svg",
    "logo": "./assets/icon.svg",
    "brandColor": "#0F766E",
    "screenshots": []
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[knowledge on Agent Plugins Marketplace](https://pluginsmp.com/plugins/knowledge)