backpack-ontology 0.2.5 → 0.2.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.
- package/README.md +13 -9
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -22,21 +22,25 @@ No copy-pasting. No re-explaining. Your knowledge carries forward.
|
|
|
22
22
|
|
|
23
23
|
## Get started
|
|
24
24
|
|
|
25
|
-
### Backpack
|
|
25
|
+
### Recommended: Backpack App (free cloud account)
|
|
26
|
+
|
|
27
|
+
Sign up for a free account at [app.backpackontology.com](https://app.backpackontology.com), then add Backpack to Claude Code:
|
|
26
28
|
|
|
27
29
|
```bash
|
|
28
|
-
claude mcp add backpack -s user -- npx backpack-ontology
|
|
30
|
+
claude mcp add backpack-app -s user -- npx -p backpack-ontology backpack-app
|
|
29
31
|
```
|
|
30
32
|
|
|
31
|
-
|
|
33
|
+
Your knowledge syncs across devices, you can share with your team, and you get access to the web-based graph visualizer. On first run, a browser window opens for sign-in. After that, it's automatic.
|
|
34
|
+
|
|
35
|
+
### Backpack Local (offline, private)
|
|
32
36
|
|
|
33
|
-
|
|
37
|
+
Prefer to keep everything on your machine? No account needed:
|
|
34
38
|
|
|
35
39
|
```bash
|
|
36
|
-
claude mcp add backpack-
|
|
40
|
+
claude mcp add backpack-local -s user -- npx backpack-ontology
|
|
37
41
|
```
|
|
38
42
|
|
|
39
|
-
|
|
43
|
+
You can always move to Backpack App later by telling Claude "sync my backpack to the cloud".
|
|
40
44
|
|
|
41
45
|
### Switching from Backpack Local to Backpack App
|
|
42
46
|
|
|
@@ -103,10 +107,10 @@ You have one backpack. It goes everywhere with you. Inside it, you organize know
|
|
|
103
107
|
| Command | What it does |
|
|
104
108
|
|---|---|
|
|
105
109
|
| `npx backpack-ontology` | Start the Backpack Local MCP server |
|
|
106
|
-
| `npx backpack-app` | Start the Backpack App MCP server |
|
|
107
|
-
| `npx backpack-sync` | Upload local ontologies to Backpack App |
|
|
110
|
+
| `npx -p backpack-ontology backpack-app` | Start the Backpack App MCP server |
|
|
111
|
+
| `npx -p backpack-ontology backpack-sync` | Upload local ontologies to Backpack App |
|
|
108
112
|
| `npx backpack-viewer` | Open the graph visualizer (http://localhost:5173) |
|
|
109
|
-
| `npx backpack-init` | Reinstall auto-capture hooks if removed |
|
|
113
|
+
| `npx -p backpack-ontology backpack-init` | Reinstall auto-capture hooks if removed |
|
|
110
114
|
|
|
111
115
|
### Tools
|
|
112
116
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backpack-ontology",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "A persistent ontology engine for Claude Code via MCP — progressive discovery of structured knowledge graphs",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Noah Irzinger",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"bin": {
|
|
9
|
-
"backpack": "./dist/bin/backpack.js",
|
|
9
|
+
"backpack-ontology": "./dist/bin/backpack.js",
|
|
10
|
+
"backpack-local": "./dist/bin/backpack.js",
|
|
10
11
|
"backpack-app": "./dist/bin/backpack-app.js",
|
|
11
12
|
"backpack-sync": "./dist/bin/backpack-sync.js",
|
|
12
|
-
"backpack-init": "./dist/bin/init.js"
|
|
13
|
+
"backpack-init": "./dist/bin/init.js",
|
|
14
|
+
"backpack": "./dist/bin/backpack.js"
|
|
13
15
|
},
|
|
14
16
|
"main": "./dist/index.js",
|
|
15
17
|
"types": "./dist/index.d.ts",
|