From 8ff9e4a7139f30c95fb9718ad5023061ec47de89 Mon Sep 17 00:00:00 2001 From: bootoshi <127834715+kingbootoshi@users.noreply.github.com> Date: Wed, 1 Apr 2026 19:00:51 -0700 Subject: [PATCH] Add .codex-plugin/plugin.json manifest for Codex discoverability Adds the Codex plugin manifest format so the plugin is discoverable through Codex CLI, OpenCode, and community plugin registries. Co-Authored-By: Claude Opus 4.6 (1M context) --- .codex-plugin/plugin.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .codex-plugin/plugin.json diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 0000000..37d1314 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,13 @@ +{ + "name": "cartographer", + "version": "1.0.0", + "description": "Maps and documents codebases of any size using parallel AI subagents. Creates CODEBASE_MAP.md with architecture, file purposes, dependencies, and navigation guides.", + "author": { + "name": "Bootoshi", + "url": "https://github.com/kingbootoshi" + }, + "repository": "https://github.com/kingbootoshi/cartographer", + "license": "MIT", + "keywords": ["codebase-mapping", "documentation", "architecture", "subagents"], + "skills": "./plugins/cartographer/skills/" +}