promptgraph-mcp 2.9.60 → 2.9.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/commands/setup.js +3 -3
- package/package.json +1 -1
- package/platform.js +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PromptGraph
|
|
2
2
|
|
|
3
|
-
**Semantic skill router and marketplace for Claude Code and OpenCode.**
|
|
3
|
+
**Semantic skill router and marketplace for Claude Code, Claude Desktop, and OpenCode.**
|
|
4
4
|
|
|
5
5
|
Instead of loading every `.md` skill into context, Claude calls `pg_search` and loads only the skill it needs — saving 20k+ tokens per session.
|
|
6
6
|
|
|
@@ -18,7 +18,7 @@ Instead of loading every `.md` skill into context, Claude calls `pg_search` and
|
|
|
18
18
|
- **Any local folder** — `pg add-dir <path>` indexes a folder that isn't a default source
|
|
19
19
|
- **Marketplace** — browse and install community skill bundles via TUI or MCP tools
|
|
20
20
|
- **Publishing** — publish skills/bundles to the registry hands-off via GitHub CLI
|
|
21
|
-
- **Multi-platform** — verified on Claude Code & OpenCode; best-effort config for
|
|
21
|
+
- **Multi-platform** — verified on Claude Code, Claude Desktop & OpenCode; best-effort config for Cursor, Windsurf, Cline, Codex
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
@@ -48,13 +48,13 @@ Then restart your editor — the `promptgraph` MCP server will be available.
|
|
|
48
48
|
|
|
49
49
|
## Supported platforms
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
**Claude Code**, **Claude Desktop**, and **OpenCode** are verified end-to-end. The others are best-effort — the MCP config path/format is implemented but untested, so `pg setup` warns before writing. If you run one, please [report results](https://github.com/NeiP4n/promptgraph/issues).
|
|
52
52
|
|
|
53
53
|
| Platform | Status | Config written | Skills directory |
|
|
54
54
|
|---|---|---|---|
|
|
55
55
|
| `claude-code` | ✅ verified | `~/.claude/settings.json` | `~/.claude/skills-store` |
|
|
56
|
+
| `claude-desktop` | ✅ verified | `claude_desktop_config.json` (OS-specific) | `~/.claude/skills-store` |
|
|
56
57
|
| `opencode` | ✅ verified | `~/.config/opencode/opencode.json` | `~/.config/opencode/skills` |
|
|
57
|
-
| `claude-desktop` | ⚠️ untested | `claude_desktop_config.json` (OS-specific) | `~/.claude/skills-store` |
|
|
58
58
|
| `cursor` | ⚠️ untested | `~/.cursor/mcp.json` | `~/.cursor/skills` |
|
|
59
59
|
| `windsurf` | ⚠️ untested | `~/.codeium/windsurf/mcp_config.json` | `~/.codeium/windsurf/skills` |
|
|
60
60
|
| `cline` | ⚠️ untested | `~/.vscode/mcp.json` | `~/.vscode/skills` |
|
package/commands/setup.js
CHANGED
|
@@ -14,8 +14,8 @@ export default async function handler(args, bin) {
|
|
|
14
14
|
info(`${chalk.white(p.id.padEnd(16))} ${chalk.gray(p.name.padEnd(20))} ${tag}`);
|
|
15
15
|
});
|
|
16
16
|
console.log(chalk.gray('\n Usage: pg setup <platform>'));
|
|
17
|
-
console.log(chalk.green(' Verified: ') + chalk.gray('claude-code, opencode'));
|
|
18
|
-
console.log(chalk.yellow(' Untested: ') + chalk.gray('
|
|
17
|
+
console.log(chalk.green(' Verified: ') + chalk.gray('claude-code, claude-desktop, opencode'));
|
|
18
|
+
console.log(chalk.yellow(' Untested: ') + chalk.gray('cursor, windsurf, cline, codex') + chalk.gray(' (best-effort — please report results)\n'));
|
|
19
19
|
process.exit(0);
|
|
20
20
|
}
|
|
21
21
|
|
|
@@ -23,7 +23,7 @@ export default async function handler(args, bin) {
|
|
|
23
23
|
if (!platform) { error(`Unknown platform: ${platformId}`); process.exit(1); }
|
|
24
24
|
|
|
25
25
|
if (!platform.verified) {
|
|
26
|
-
console.log(chalk.yellow(` ⚠ ${platform.name} is untested.`) + chalk.gray('
|
|
26
|
+
console.log(chalk.yellow(` ⚠ ${platform.name} is untested.`) + chalk.gray(' Verified: claude-code, claude-desktop, opencode.'));
|
|
27
27
|
console.log(chalk.gray(` The MCP config format/path below is best-effort and may need manual fixing.`));
|
|
28
28
|
console.log(chalk.gray(` If it works (or doesn't), please report: https://github.com/NeiP4n/promptgraph/issues\n`));
|
|
29
29
|
}
|
package/package.json
CHANGED
package/platform.js
CHANGED