recall-os 0.1.0 → 0.1.1

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 +17 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -47,18 +47,22 @@ them.
47
47
 
48
48
  ## Install
49
49
 
50
+ Install the CLI globally from npm:
51
+
50
52
  ```bash
51
- # Local development
52
- pnpm install
53
- pnpm build
54
- node dist/cli.js --help
53
+ npm install -g recall-os
54
+ recall --help
55
55
  ```
56
56
 
57
+ Or run it without installing:
58
+
57
59
  ```bash
58
- # Once published to npm
59
- npm install -g recall-os
60
+ npx recall-os --help
60
61
  ```
61
62
 
63
+ (Requires Node.js >= 20. Published at
64
+ [npmjs.com/package/recall-os](https://www.npmjs.com/package/recall-os).)
65
+
62
66
  ## Quickstart
63
67
 
64
68
  ```bash
@@ -69,12 +73,17 @@ recall init --preset kotlin-android # optional, proposes stack decisions
69
73
  # 2. Capture intent and decisions as you work
70
74
  recall feature create checkout
71
75
  recall adr create payment-provider
72
- recall module create billing
76
+ recall adr accept payment-provider # promote a proposal to accepted memory
73
77
 
74
- # 3. Validate the memory is healthy and complete
78
+ # 3. Bring an MCP server's context into durable memory (offline)
79
+ recall mcp add figma
80
+
81
+ # 4. Validate the memory is healthy and complete
75
82
  recall doctor
76
83
  ```
77
84
 
85
+ Every command guides you — it names the file it created, where it is, and what to do next.
86
+
78
87
  `recall init` also generates a tracked pre-commit hook at `.recall/hooks/pre-commit` that runs
79
88
  `recall doctor` plus any gates you configure. Enable it once per clone — Recall OS proposes the
80
89
  command but never runs it for you:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "recall-os",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Architecture-neutral repository memory for AI-assisted software teams.",
5
5
  "packageManager": "pnpm@10.12.3",
6
6
  "type": "module",