-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkimi.plugin.json
More file actions
36 lines (36 loc) · 1.5 KB
/
Copy pathkimi.plugin.json
File metadata and controls
36 lines (36 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "codegraph",
"version": "0.1.5",
"description": "Inject the official CodeGraph prompt at session start (only when a `.codegraph/` directory exists) and expose all 20 codegraph CLI commands as slash commands for Codex/ZCode/Kimi/Claude Code. Pure Python stdlib.",
"author": {
"name": "Full Stack Plugins",
"url": "https://github.com/full-stack-plugins"
},
"homepage": "https://github.com/full-stack-plugins/codegraph-plugin",
"repository": "https://github.com/full-stack-plugins/codegraph-plugin",
"license": "Apache-2.0",
"keywords": [
"code-intelligence",
"knowledge-graph",
"codegraph",
"mcp",
"code-search",
"claude-code",
"codex",
"kimi"
],
"skills": "./skills/",
"commands": "./commands/",
"interface": {
"displayName": "CodeGraph",
"shortDescription": "Discoverable codegraph — official prompt + all CLI commands",
"longDescription": "For AI coding agents. At session start, when a `.codegraph/` directory exists, this plugin writes the official CodeGraph prompt block (verbatim from upstream `instructions-template.ts`) to `<cwd>/.claude/CLAUDE.md` or `<cwd>/AGENTS.md` using atomic marker-fenced replacement, and injects the same block as SessionStart additionalContext. All 20 codegraph CLI commands are exposed as slash commands. Pure Python stdlib; no third-party runtime dependencies."
},
"hooks": [
{
"event": "SessionStart",
"command": "python3 ./hooks/inject_codegraph_prompt.py",
"timeout": 10
}
]
}