backpack-ontology 0.2.6 → 0.2.8
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 +6 -6
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ No copy-pasting. No re-explaining. Your knowledge carries forward.
|
|
|
27
27
|
Sign up for a free account at [app.backpackontology.com](https://app.backpackontology.com), then add Backpack to Claude Code:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
claude mcp add backpack-app -s user -- npx backpack-app
|
|
30
|
+
claude mcp add backpack-app -s user -- npx -p backpack-ontology@latest backpack-app
|
|
31
31
|
```
|
|
32
32
|
|
|
33
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.
|
|
@@ -37,7 +37,7 @@ Your knowledge syncs across devices, you can share with your team, and you get a
|
|
|
37
37
|
Prefer to keep everything on your machine? No account needed:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
claude mcp add backpack-local -s user -- npx backpack-
|
|
40
|
+
claude mcp add backpack-local -s user -- npx backpack-ontology@latest
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
You can always move to Backpack App later by telling Claude "sync my backpack to the cloud".
|
|
@@ -106,11 +106,11 @@ You have one backpack. It goes everywhere with you. Inside it, you organize know
|
|
|
106
106
|
|
|
107
107
|
| Command | What it does |
|
|
108
108
|
|---|---|
|
|
109
|
-
| `npx backpack-
|
|
110
|
-
| `npx backpack-app` | Start the Backpack App MCP server |
|
|
111
|
-
| `npx backpack-sync` | Upload local ontologies to Backpack App |
|
|
109
|
+
| `npx backpack-ontology@latest` | Start the Backpack Local MCP server |
|
|
110
|
+
| `npx -p backpack-ontology@latest backpack-app` | Start the Backpack App MCP server |
|
|
111
|
+
| `npx -p backpack-ontology@latest backpack-sync` | Upload local ontologies to Backpack App |
|
|
112
112
|
| `npx backpack-viewer` | Open the graph visualizer (http://localhost:5173) |
|
|
113
|
-
| `npx backpack-init` | Reinstall auto-capture hooks if removed |
|
|
113
|
+
| `npx -p backpack-ontology@latest backpack-init` | Reinstall auto-capture hooks if removed |
|
|
114
114
|
|
|
115
115
|
### Tools
|
|
116
116
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backpack-ontology",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
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-ontology": "./dist/bin/backpack.js",
|
|
9
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",
|