@useorgx/wizard 0.1.6 → 0.1.8

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 CHANGED
@@ -14,18 +14,21 @@ For local development, use `pnpm dev -- --help`.
14
14
 
15
15
  ## Commands
16
16
 
17
- - `setup` configures detected automated surfaces and, when OrgX auth is available in an interactive shell, guides workspace selection or creation.
17
+ - `setup` configures detected automated surfaces and, when OrgX auth is available in an interactive shell, guides workspace selection or creation, optional onboarding extras, and optional companion plugin installs for detected Claude Code, Codex, and OpenClaw hosts. The founder preset preplans plugin installs before it writes standalone skills so plugin-backed hosts do not get duplicate standalone Claude assets in the same run.
18
18
  - `surface list` shows supported surfaces and current status.
19
19
  - `surface add <name>` patches a specific surface.
20
20
  - `surface remove <name>` removes OrgX-managed config from a specific surface.
21
21
  - `mcp add [surface]` and `mcp remove [surface]` manage Claude, Cursor, Codex, VS Code, Windsurf, and Zed MCP entries.
22
+ - `plugins list` shows companion plugin availability and install status for Claude Code, Codex, and OpenClaw.
23
+ - `plugins add [target...]` installs the managed OrgX companion plugins into Claude Code, Codex, and/or OpenClaw. Claude Code and Codex plugins carry their own OrgX skills, so they become the source of truth for those hosts.
24
+ - `plugins remove [target...]` uninstalls the managed OrgX companion plugins from Claude Code, Codex, and/or OpenClaw.
22
25
  - `doctor` verifies local config, hosted MCP reachability, an authenticated hosted MCP `get_setup_status` tool call when OrgX user auth is configured, npm registry readiness, current-workspace connectivity, local OpenClaw health, and optionally the remote setup status API. It exits non-zero when blocking connectivity issues remain.
23
26
  - `auth status` shows the resolved OrgX API key source and verifies it against `POST /api/client/sync`.
24
27
  - `auth login [--base-url <url>]` starts browser pairing against OrgX, waits for approval, saves the returned per-user key to the wizard auth store, and bootstraps OpenClaw auth if OpenClaw is detected. Use `--api-key <oxk_...>` for CI or blocked-browser fallback.
25
28
  - `auth set-key <oxk_...> [--base-url <url>]` verifies a per-user OrgX key, saves it to the wizard auth store, and bootstraps OpenClaw auth if OpenClaw is detected.
26
29
  - `auth clear` removes the wizard-local saved OrgX API key.
27
30
  - `workspace current`, `workspace list`, `workspace create <name>`, and `workspace set-default <id>` inspect and manage OrgX workspaces.
28
- - `skills add [pack...]` writes `.cursor/rules/orgx.md`, generates `.claude/skills/orgx/SKILL.md`, and installs the default OrgX Claude skill packs (`morning-briefing`, `initiative-kickoff`, `bulk-create`, `nightly-recap`) from `useorgx/skills`.
31
+ - `skills add [pack...]` writes `.cursor/rules/orgx.md`, generates `.claude/skills/orgx/SKILL.md`, and installs the default OrgX Claude skill packs (`morning-briefing`, `initiative-kickoff`, `bulk-create`, `nightly-recap`) from `useorgx/skills`. If the Claude Code companion plugin is already installed, the wizard skips those overlapping standalone Claude assets and only installs the remaining standalone pieces.
29
32
 
30
33
  ## CI Mode
31
34
 
@@ -55,6 +58,9 @@ For local development, use `pnpm dev -- --help`.
55
58
  - `wizard skills add` writes the OrgX Cursor rule file at `.cursor/rules/orgx.md`.
56
59
  - `wizard skills add` also generates a hosted OrgX Claude skill at `.claude/skills/orgx/SKILL.md`.
57
60
  - The same command installs the four starter OrgX Claude skill packs by pulling their source files from `useorgx/skills`.
61
+ - When the Claude Code companion plugin is installed, that plugin owns Claude-side OrgX skills and skill sync. In that case `wizard skills add` skips overlapping Claude assets instead of writing duplicate copies.
62
+ - The Codex companion plugin also bundles its own OrgX skills, so `wizard skills add` does not try to manage Codex skill files at all.
63
+ - Those generated rules expect artifact proof to use durable sources such as GitHub permalinks, public URLs, or absolute file paths / `file://...`, not OrgX wrapper routes like `/live/...`, `/artifacts/...`, or `/console/...`.
58
64
 
59
65
  ## Release Flow
60
66