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 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 Claude Desktop, Cursor, Windsurf, Cline, Codex
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
- Only **Claude Code** 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).
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('claude-desktop, cursor, windsurf, cline, codex') + chalk.gray(' (best-effort — please report results)\n'));
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(' Only claude-code and opencode are verified.'));
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptgraph-mcp",
3
- "version": "2.9.60",
3
+ "version": "2.9.61",
4
4
  "files": [
5
5
  "*.js",
6
6
  "commands/",
package/platform.js CHANGED
@@ -59,7 +59,7 @@ export const PLATFORMS = {
59
59
  name: 'Claude Desktop',
60
60
  configPath: getClaudeDesktopConfig(),
61
61
  addMcp: (config) => addStdMcp(config.configPath),
62
- verified: false,
62
+ verified: true,
63
63
  },
64
64
  'cline': {
65
65
  name: 'Cline (VS Code)',