@0dai-dev/cli 3.10.0 → 4.0.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.
- package/README.md +4 -2
- package/bin/0dai.js +96 -2153
- package/lib/commands/audit.js +129 -0
- package/lib/commands/auth.js +241 -0
- package/lib/commands/detect.js +31 -0
- package/lib/commands/doctor.js +194 -0
- package/lib/commands/experience.js +65 -0
- package/lib/commands/feedback.js +92 -0
- package/lib/commands/graph.js +171 -0
- package/lib/commands/init.js +282 -0
- package/lib/commands/metrics.js +145 -0
- package/lib/commands/models.js +57 -0
- package/lib/commands/portfolio.js +96 -0
- package/lib/commands/reflect.js +211 -0
- package/lib/commands/report.js +29 -0
- package/lib/commands/run.js +77 -0
- package/lib/commands/session.js +61 -0
- package/lib/commands/status.js +69 -0
- package/lib/commands/swarm.js +161 -0
- package/lib/commands/update.js +69 -0
- package/lib/commands/validate.js +71 -0
- package/lib/commands/watch.js +118 -0
- package/lib/onboarding.js +171 -0
- package/lib/shared.js +283 -0
- package/lib/utils/auth.js +142 -0
- package/lib/utils/constants.js +76 -0
- package/lib/utils/identity.js +147 -0
- package/lib/utils/plan.js +73 -0
- package/lib/wizard.js +311 -0
- package/package.json +5 -1
- package/scripts/postinstall.js +29 -0
package/README.md
CHANGED
|
@@ -12,6 +12,8 @@ npm install -g @0dai-dev/cli
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
cd your-project
|
|
15
|
+
0dai auth login
|
|
16
|
+
0dai activate free
|
|
15
17
|
0dai init # detect stack, generate ai/ layer + native configs
|
|
16
18
|
0dai sync # update after changes
|
|
17
19
|
0dai detect # show detected stack
|
|
@@ -21,7 +23,7 @@ cd your-project
|
|
|
21
23
|
|
|
22
24
|
## What it does
|
|
23
25
|
|
|
24
|
-
`0dai init`
|
|
26
|
+
`0dai init` and `0dai sync` are activation-first. They authenticate the user, require a free activation license, bind the project, then send only allowlisted project metadata (file names + package/build manifests) to the API and generate:
|
|
25
27
|
|
|
26
28
|
- `ai/` — manifests, personas, skills, playbooks, delegation policy
|
|
27
29
|
- `.claude/` — settings, agents, hooks, rules
|
|
@@ -30,7 +32,7 @@ cd your-project
|
|
|
30
32
|
- `.aider/` — config, agents
|
|
31
33
|
- `AGENTS.md`, `.mcp.json`
|
|
32
34
|
|
|
33
|
-
Your source code is never sent. Only file names and package manifests.
|
|
35
|
+
Your source code is never sent. Only file names and package/build manifests.
|
|
34
36
|
|
|
35
37
|
## Links
|
|
36
38
|
|