promptgraph-mcp 2.9.6 → 2.9.7

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.
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "promptgraph",
3
+ "description": "Semantic skill router for Claude Code — search and load only the skills you need, saving 20k+ tokens per session. Includes a marketplace with 40+ community skill bundles.",
4
+ "author": {
5
+ "name": "NeiP4n"
6
+ },
7
+ "homepage": "https://github.com/NeiP4n/promptgraph"
8
+ }
package/.mcp.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "promptgraph": {
3
+ "command": "npx",
4
+ "args": ["-y", "promptgraph-mcp"]
5
+ }
6
+ }
@@ -0,0 +1,14 @@
1
+ export const PromptGraph = async () => {
2
+ return {
3
+ config: async (config) => {
4
+ config.mcp = config.mcp || {};
5
+ config.mcp.promptgraph = {
6
+ type: 'local',
7
+ command: ['npx', 'promptgraph-mcp'],
8
+ enabled: true,
9
+ };
10
+ },
11
+ };
12
+ };
13
+
14
+ export default PromptGraph;
package/package.json CHANGED
@@ -1,13 +1,19 @@
1
1
  {
2
2
  "name": "promptgraph-mcp",
3
- "version": "2.9.6",
3
+ "version": "2.9.7",
4
4
  "files": [
5
5
  "*.js",
6
6
  "commands/",
7
7
  "src/",
8
- "README.md"
8
+ "README.md",
9
+ ".claude-plugin/",
10
+ ".mcp.json"
9
11
  ],
10
12
  "main": "index.js",
13
+ "exports": {
14
+ ".": "./index.js",
15
+ "./plugin": "./opencode-plugin.js"
16
+ },
11
17
  "type": "module",
12
18
  "bin": {
13
19
  "pg": "index.js",