backpack-ontology 0.2.5 → 0.2.6

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.
Files changed (2) hide show
  1. package/README.md +11 -7
  2. package/package.json +4 -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 Local (free, private, on your machine)
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 backpack-app
29
31
  ```
30
32
 
31
- The `-s user` flag installs globally so backpack is available in every project.
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.
32
34
 
33
- ### Backpack App (free account, cloud sync)
35
+ ### Backpack Local (offline, private)
36
+
37
+ Prefer to keep everything on your machine? No account needed:
34
38
 
35
39
  ```bash
36
- claude mcp add backpack-app -s user -- npx backpack-app
40
+ claude mcp add backpack-local -s user -- npx backpack-local
37
41
  ```
38
42
 
39
- Sync across devices, share with your team, and access the web-based graph visualizer at [app.backpackontology.com](https://app.backpackontology.com). On first run, a browser window opens for sign-in. After that, it's automatic.
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
 
@@ -102,7 +106,7 @@ You have one backpack. It goes everywhere with you. Inside it, you organize know
102
106
 
103
107
  | Command | What it does |
104
108
  |---|---|
105
- | `npx backpack-ontology` | Start the Backpack Local MCP server |
109
+ | `npx backpack-local` | Start the Backpack Local MCP server |
106
110
  | `npx backpack-app` | Start the Backpack App MCP server |
107
111
  | `npx backpack-sync` | Upload local ontologies to Backpack App |
108
112
  | `npx backpack-viewer` | Open the graph visualizer (http://localhost:5173) |
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "backpack-ontology",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
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-local": "./dist/bin/backpack.js",
10
10
  "backpack-app": "./dist/bin/backpack-app.js",
11
11
  "backpack-sync": "./dist/bin/backpack-sync.js",
12
- "backpack-init": "./dist/bin/init.js"
12
+ "backpack-init": "./dist/bin/init.js",
13
+ "backpack": "./dist/bin/backpack.js"
13
14
  },
14
15
  "main": "./dist/index.js",
15
16
  "types": "./dist/index.d.ts",