@vivary/create 0.1.1 → 0.2.0

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 +20 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,18 +2,29 @@
2
2
 
3
3
  **The `create-t3-app` for agent-native workspaces.** Scaffold a complete Vivary
4
4
  workspace — typed knowledge graph (tropo), agent OS (strato), and starter graph — in
5
- one command.
5
+ one command. Generated modules use `modules/<id>/index.md` routers so agents load
6
+ context progressively.
6
7
 
7
8
  ```bash
8
9
  npm create @vivary my-workspace -- --preset coding
10
+ npm create @vivary my-codebase -- --preset coding --active-context cocoindex-code
9
11
  # or
10
12
  npx @vivary/create my-workspace --preset coding
13
+
14
+ # Agent-mode (no prompts, machine-readable output):
15
+ npx @vivary/create init . --preset coding --auto --size large --yes --json
16
+
17
+ # Reconfigure storage on an existing workspace:
18
+ npx @vivary/create wizard my-workspace --auto --storage embedded --yes --json
11
19
  ```
12
20
 
13
21
  Presets: `coding` · `second-brain` · `writing`.
14
22
 
15
23
  A bare `npm create @vivary <name>` maps to the `init` subcommand; you can also pass
16
- `init` / `doctor` explicitly (e.g. `npm create @vivary doctor my-workspace`).
24
+ `init` / `doctor` / `wizard` explicitly (e.g. `npm create @vivary doctor my-workspace`).
25
+
26
+ On a terminal that supports input, `init` runs a short wizard to pick a storage tier.
27
+ Skip it with `--no-wizard`, or use `--auto` for fully non-interactive agent use.
17
28
 
18
29
  ## How it works
19
30
 
@@ -22,8 +33,13 @@ This package is a thin launcher: it runs the Python `create-vivary` scaffolder v
22
33
  scaffolder stays one source of truth in Python while you get a Node-native entry
23
34
  point. **Python 3.11+ and uv (or pipx) must be installed.**
24
35
 
25
- Prefer Python directly? The Python CLI takes the explicit subcommand:
26
- `uvx create-vivary init my-workspace --preset coding` or `pip install create-vivary`.
36
+ Prefer Python directly? `uvx create-vivary my-workspace --preset coding` a bare
37
+ target defaults to `init` there too (the PyPI `create-vivary` is versioned in lockstep
38
+ with this launcher) — or `pip install create-vivary`.
39
+
40
+ For coding workspaces, `--active-context cocoindex-code` scaffolds optional
41
+ CocoIndex-code guidance and ignored sidecar state. It does not auto-install, index, or
42
+ enable MCP; the generated docs give the approved `ccc init` / `ccc index` path.
27
43
 
28
44
  ## License
29
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vivary/create",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "Scaffold a complete Vivary agent workspace — the create-t3-app for agent-native workspaces. Runs the Python create-vivary via uv/pipx.",
5
5
  "bin": {
6
6
  "create-vivary": "index.js"