okstra 0.3.0 → 0.5.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/bin/okstra CHANGED
@@ -7,25 +7,42 @@ const COMMANDS = new Map([
7
7
  ["ensure-installed", () => import("../src/install.mjs").then((m) => m.runEnsureInstalled)],
8
8
  ["uninstall", () => import("../src/uninstall.mjs").then((m) => m.runUninstall)],
9
9
  ["doctor", () => import("../src/doctor.mjs").then((m) => m.run)],
10
+ ["setup", () => import("../src/setup.mjs").then((m) => m.run)],
11
+ ["check-project", () => import("../src/check-project.mjs").then((m) => m.run)],
10
12
  ]);
11
13
 
12
- const USAGE = `okstra-cliruntime installer and path resolver for okstra skills
14
+ const USAGE = `okstra — multi-agent cross-verification orchestrator for Claude Code
15
+
16
+ This CLI is the installer/admin tool. Day-to-day usage happens inside a
17
+ Claude Code session via slash commands (/okstra-setup, /okstra-run, ...).
18
+
19
+ Quick start (CLI):
20
+ 1. npx -y okstra@latest install # one-time, this machine
21
+ 2. cd <your project>
22
+ 3. npx -y okstra@latest setup --project-id <id> # one-time, this project
23
+ 4. open a Claude Code session and run /okstra-run # start a task
24
+
25
+ Inside a Claude Code session you can replace step 3 with /okstra-setup —
26
+ both write the same <PROJECT_ROOT>/.project-docs/okstra/project.json.
13
27
 
14
28
  Usage:
15
29
  okstra <command> [options]
16
30
 
17
- Commands:
18
- install Install okstra runtime into ~/.okstra
31
+ Admin commands:
32
+ install Install runtime to ~/.okstra and skills to ~/.claude/skills
19
33
  ensure-installed Verify install is fresh; reinstall if stale (idempotent)
20
- uninstall Remove installed runtime (user data preserved by default)
21
- paths Print runtime paths (agents/pythonpath/bin/home/version)
34
+ uninstall Remove runtime + skills (user data preserved by default)
35
+ setup Register the current project (.project-docs/okstra/project.json)
22
36
  doctor Diagnostic check of the installed runtime
37
+ check-project Verify the current project has been registered with setup
38
+ paths Print runtime paths (workspace/agents/pythonpath/bin/home/version)
23
39
 
24
40
  Global options:
25
- --version Print okstra-cli version and exit
41
+ --version Print okstra version and exit
26
42
  --help Print this help
27
43
 
28
44
  Run 'okstra <command> --help' for command-specific options.
45
+ Docs: https://github.com/Devonshin/okstra#readme
29
46
  `;
30
47
 
31
48
  async function main(argv) {