holycodex 0.16.3 → 0.16.4-dev.73.1

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 (31) hide show
  1. package/README.md +18 -5
  2. package/dist/agent.js +128 -0
  3. package/dist/assets/plugin/plugin.json +2 -2
  4. package/dist/assets/plugin/skills/code-review/SKILL.md +15 -3
  5. package/dist/assets/plugin/skills/code-review/agents/openai.yaml +1 -1
  6. package/dist/assets/plugin/skills/commit/SKILL.md +29 -7
  7. package/dist/assets/plugin/skills/commit/agents/openai.yaml +1 -1
  8. package/dist/assets/plugin/skills/compress/SKILL.md +12 -3
  9. package/dist/assets/plugin/skills/compress/agents/openai.yaml +1 -1
  10. package/dist/assets/plugin/skills/debugging/SKILL.md +10 -5
  11. package/dist/assets/plugin/skills/debugging/agents/openai.yaml +1 -1
  12. package/dist/assets/plugin/skills/handoff/SKILL.md +13 -5
  13. package/dist/assets/plugin/skills/handoff/agents/openai.yaml +2 -2
  14. package/dist/assets/plugin/skills/operations/SKILL.md +31 -0
  15. package/dist/assets/plugin/skills/operations/agents/openai.yaml +6 -0
  16. package/dist/assets/plugin/skills/plan/SKILL.md +15 -3
  17. package/dist/assets/plugin/skills/plan/agents/openai.yaml +1 -1
  18. package/dist/assets/plugin/skills/plan-review/SKILL.md +14 -2
  19. package/dist/assets/plugin/skills/plan-review/agents/openai.yaml +1 -1
  20. package/dist/assets/plugin/skills/programming/SKILL.md +17 -6
  21. package/dist/assets/plugin/skills/programming/agents/openai.yaml +1 -1
  22. package/dist/assets/plugin/skills/refactor/SKILL.md +17 -6
  23. package/dist/assets/plugin/skills/refactor/agents/openai.yaml +1 -1
  24. package/dist/assets/plugin/skills/rules/SKILL.md +12 -3
  25. package/dist/assets/plugin/skills/rules/agents/openai.yaml +1 -1
  26. package/dist/assets/plugin/skills/stop-slop/SKILL.md +10 -2
  27. package/dist/assets/plugin/skills/stop-slop/agents/openai.yaml +1 -1
  28. package/dist/assets/plugin/skills/writing-for-agents/SKILL.md +18 -3
  29. package/dist/assets/plugin/skills/writing-for-agents/agents/openai.yaml +1 -1
  30. package/dist/index.js +87 -57
  31. package/package.json +8 -5
package/README.md CHANGED
@@ -9,15 +9,24 @@ bunx holycodex doctor
9
9
  bunx holycodex remove
10
10
  ```
11
11
 
12
- Use `--yes` when no interactive terminal is available. `--plan` selects native
13
- Root and specialist routing only. `--tier` independently selects service
14
- handling (`standard`, `fast`, or `fast-all`). The canonical plans are `go`,
15
- `plus-low`, `plus`, `plus-high`, `pro-5x`, and `pro-20x`.
12
+ Use `--yes` when no interactive terminal is available. `--profile` selects
13
+ native Root and specialist routing only. `--tier` independently selects
14
+ service handling (`standard`, `fast`, or `fast-all`). The live profiles are
15
+ `low`, `default`, and `high` (`default` is recommended). Existing serialized
16
+ `plan` state migrates to `profile`; legacy `go` state is reported as requiring
17
+ an explicit replacement. Legacy `plus-low`, `plus`, and `plus-high`
18
+ configuration migrates to `low`, `default`, and `high`; removed Pro profiles
19
+ fail with an explicit replacement requirement.
20
+
21
+ Live routing uses `gpt-6-astra` for Root/session and `gpt-5.6-luna` for every
22
+ specialist. The exact per-task effort matrix is documented in
23
+ [BEHAVIOR.md](../../docs/BEHAVIOR.md); Sol, Terra, and Go are migration-only
24
+ historical values.
16
25
 
17
26
  Frontend and Security are selected by default; Work and Computer Use are
18
27
  opt-in. Selected capabilities must install and verify or installation fails.
19
28
  Use `--json` for one validated machine-readable envelope. Human output reports
20
- the version, plan, tier, selected capabilities, and actionable warnings without
29
+ the version, profile, tier, selected capabilities, and actionable warnings without
21
30
  printing the internal installation record.
22
31
 
23
32
  The development entry point is:
@@ -28,6 +37,10 @@ mise exec -- bun packages/cli/src/index.ts install --yes
28
37
 
29
38
  Command syntax and response contracts are owned by [CLI.md](../../docs/CLI.md).
30
39
 
40
+ This package does not expose Intent or Assignment mutation. Root uses the
41
+ separate deterministic `holycodex-agent` CLI for repo-local `.holycodex/`
42
+ work state; it is non-interactive and has no TUI, prompts, or ANSI output.
43
+
31
44
  ## Contribute
32
45
 
33
46
  Use Bun through `mise`, keep changes within the assigned package seam, and run