holycodex 0.16.4-dev.73.1 → 0.16.4-dev.78.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 +5 -0
- package/dist/agent.js +54 -38
- package/dist/assets/plugin/plugin.json +1 -1
- package/dist/assets/plugin/skills/code-review/SKILL.md +5 -24
- package/dist/assets/plugin/skills/code-review/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/commit/SKILL.md +6 -12
- package/dist/assets/plugin/skills/commit/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/compress/SKILL.md +4 -15
- 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 -23
- 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 +4 -13
- package/dist/assets/plugin/skills/handoff/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/operations/SKILL.md +7 -27
- package/dist/assets/plugin/skills/operations/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/plan/SKILL.md +6 -21
- package/dist/assets/plugin/skills/plan/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/plan-review/SKILL.md +5 -19
- package/dist/assets/plugin/skills/plan-review/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/programming/SKILL.md +4 -18
- package/dist/assets/plugin/skills/programming/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/refactor/SKILL.md +4 -18
- package/dist/assets/plugin/skills/refactor/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/rules/SKILL.md +4 -15
- package/dist/assets/plugin/skills/rules/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/stop-slop/SKILL.md +5 -42
- 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 -55
- package/dist/assets/plugin/skills/writing-for-agents/agents/openai.yaml +1 -1
- package/dist/index.js +69 -53
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@ 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
13
|
Use `--yes` when no interactive terminal is available. `--profile` selects
|
|
@@ -25,6 +26,10 @@ historical values.
|
|
|
25
26
|
|
|
26
27
|
Frontend and Security are selected by default; Work and Computer Use are
|
|
27
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.
|
|
28
33
|
Use `--json` for one validated machine-readable envelope. Human output reports
|
|
29
34
|
the version, profile, tier, selected capabilities, and actionable warnings without
|
|
30
35
|
printing the internal installation record.
|