holycodex 0.16.5 → 0.16.6-dev.84.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 +9 -6
- package/dist/agent.js +35 -35
- package/dist/assets/plugin/plugin.json +1 -1
- package/dist/assets/plugin/skills/babysit-ci/SKILL.md +33 -0
- package/dist/assets/plugin/skills/babysit-ci/agents/openai.yaml +6 -0
- package/dist/assets/plugin/skills/commit/SKILL.md +5 -17
- package/dist/assets/plugin/skills/context7-cli/SKILL.md +8 -7
- package/dist/assets/plugin/skills/operations/SKILL.md +6 -12
- package/dist/assets/plugin/skills/plan-review/SKILL.md +3 -4
- package/dist/assets/plugin/skills/testing-quality.md +3 -4
- package/dist/assets/plugin/skills/writing-instructions/SKILL-MECHANICS.md +16 -0
- package/dist/assets/plugin/skills/writing-instructions/SKILL.md +47 -0
- package/dist/assets/plugin/skills/writing-instructions/agents/openai.yaml +6 -0
- package/dist/index.js +57 -57
- package/package.json +5 -5
- package/dist/assets/plugin/skills/writing-for-agents/SKILL-MECHANICS.md +0 -9
- package/dist/assets/plugin/skills/writing-for-agents/SKILL.md +0 -35
- package/dist/assets/plugin/skills/writing-for-agents/agents/openai.yaml +0 -6
- /package/dist/assets/plugin/skills/{writing-for-agents → writing-instructions}/LICENSE +0 -0
package/README.md
CHANGED
|
@@ -19,12 +19,15 @@ an explicit replacement. Legacy `plus-low`, `plus`, and `plus-high`
|
|
|
19
19
|
configuration migrates to `low`, `default`, and `high`; removed Pro profiles
|
|
20
20
|
fail with an explicit replacement requirement.
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
Profiles select configured Root and specialist route identities and the
|
|
23
|
+
per-task effort matrix documented in [BEHAVIOR.md](../../docs/BEHAVIOR.md).
|
|
24
|
+
Every generated instruction targets GPT-6-family behavior regardless of a
|
|
25
|
+
temporary routing model ID. Historical values are migration-only.
|
|
26
|
+
The current Root route is `gpt-6-astra`; native specialist route files use the
|
|
27
|
+
configured `gpt-5.6-luna` identity. Routing identity remains separate from
|
|
28
|
+
instruction behavior.
|
|
29
|
+
|
|
30
|
+
Frontend and Security are selected by default; Computer Use is
|
|
28
31
|
opt-in. Selected capabilities must install and verify or installation fails.
|
|
29
32
|
The interactive installer accepts additional plugin IDs separated by whitespace;
|
|
30
33
|
the repeatable `--add-plugin <id>` option remains available for scripts.
|