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