snipara-companion 3.2.12 → 3.2.13
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 +8 -0
- package/docs/FULL_REFERENCE.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,15 @@
|
|
|
9
9
|
|
|
10
10
|
No global install. No account. Your code stays on your machine.
|
|
11
11
|
|
|
12
|
+
`create-snipara` is the canonical activation engine. Use it first when a repo
|
|
13
|
+
needs Hosted MCP config, editor/client files, a First Work Brief, and
|
|
14
|
+
review-only memory candidates. Use `snipara-companion` after that first
|
|
15
|
+
activation for local continuity: source refresh, impact checks, workflow phase
|
|
16
|
+
state, handoffs, and durable task outcomes.
|
|
17
|
+
|
|
12
18
|
```bash
|
|
19
|
+
npx -y create-snipara@latest init --client cursor --starter
|
|
20
|
+
npx -y snipara-companion session-bootstrap --include-session-context --max-context-tokens 1000
|
|
13
21
|
npx -y snipara-companion impact src/auth/session.ts --source local
|
|
14
22
|
npx -y snipara-companion source init .
|
|
15
23
|
```
|
package/docs/FULL_REFERENCE.md
CHANGED
|
@@ -8,6 +8,19 @@ onboarding, local Mini Snipara bridges, and command-line access around Snipara
|
|
|
8
8
|
Hosted MCP. It complements the hosted context and memory surface; it is not the
|
|
9
9
|
primary runtime for agents.
|
|
10
10
|
|
|
11
|
+
`create-snipara` remains the canonical activation engine. Editor plugins and
|
|
12
|
+
extensions should expose the right entry point, but not fork local source scan,
|
|
13
|
+
First Work Brief, memory-candidate, or Hosted MCP config semantics. After the
|
|
14
|
+
first workspace brief, use companion for the repeatable local loop:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npx -y create-snipara@latest init --client cursor --starter
|
|
18
|
+
snipara-companion session-bootstrap --include-session-context --max-context-tokens 1000
|
|
19
|
+
snipara-companion source sync --json
|
|
20
|
+
snipara-companion code impact --changed-files src/app.ts --diff-summary "next edit"
|
|
21
|
+
snipara-companion task-commit --summary "completed durable change" --files src/app.ts
|
|
22
|
+
```
|
|
23
|
+
|
|
11
24
|
In this repository, the source currently lives in `packages/cli`, and the installed executable is `snipara-companion`.
|
|
12
25
|
|
|
13
26
|
This package complements `snipara-mcp`. It does not replace it.
|