holycodex 0.16.4-dev.78.1 → 0.16.4
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 +0 -5
- package/dist/agent.js +38 -54
- package/dist/assets/plugin/plugin.json +1 -1
- package/dist/assets/plugin/skills/code-review/SKILL.md +24 -5
- package/dist/assets/plugin/skills/code-review/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/commit/SKILL.md +12 -6
- package/dist/assets/plugin/skills/commit/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/compress/SKILL.md +15 -4
- package/dist/assets/plugin/skills/compress/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/context7-cli/SKILL.md +10 -4
- package/dist/assets/plugin/skills/context7-cli/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/debugging/SKILL.md +23 -4
- package/dist/assets/plugin/skills/debugging/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/handoff/SKILL.md +13 -4
- package/dist/assets/plugin/skills/handoff/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/operations/SKILL.md +27 -7
- package/dist/assets/plugin/skills/operations/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/plan/SKILL.md +21 -6
- package/dist/assets/plugin/skills/plan/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/plan-review/SKILL.md +19 -5
- package/dist/assets/plugin/skills/plan-review/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/programming/SKILL.md +18 -4
- package/dist/assets/plugin/skills/programming/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/refactor/SKILL.md +18 -4
- package/dist/assets/plugin/skills/refactor/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/rules/SKILL.md +15 -4
- package/dist/assets/plugin/skills/rules/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/stop-slop/SKILL.md +42 -5
- package/dist/assets/plugin/skills/stop-slop/agents/openai.yaml +1 -1
- package/dist/assets/plugin/skills/testing-quality.md +26 -10
- package/dist/assets/plugin/skills/writing-for-agents/SKILL-MECHANICS.md +16 -6
- package/dist/assets/plugin/skills/writing-for-agents/SKILL.md +55 -29
- package/dist/assets/plugin/skills/writing-for-agents/agents/openai.yaml +1 -1
- package/dist/index.js +53 -69
- package/package.json +3 -3
- package/dist/assets/plugin/skills/grill-me/SKILL.md +0 -21
- package/dist/assets/plugin/skills/grill-me/agents/openai.yaml +0 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "holycodex",
|
|
3
|
-
"version": "0.16.4
|
|
3
|
+
"version": "0.16.4",
|
|
4
4
|
"bin": {
|
|
5
5
|
"holycodex": "./dist/index.js",
|
|
6
6
|
"holycodex-agent": "./dist/agent.js"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"release": {
|
|
26
26
|
"schemaVersion": "holycodex-release-v1",
|
|
27
|
-
"channel": "
|
|
28
|
-
"sourceSha": "
|
|
27
|
+
"channel": "stable",
|
|
28
|
+
"sourceSha": "70a8c08aebbe20869cf968719cb806f873492fff"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: grill-me
|
|
3
|
-
description: Use when an unspecified choice has multiple reasonable outcomes that could materially change the work.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Grill me
|
|
7
|
-
|
|
8
|
-
Use this skill only for a material unresolved choice involving architecture,
|
|
9
|
-
behavior, UX, compatibility, dependencies, cost, security, external effects,
|
|
10
|
-
or another meaningful user-visible result. Infer obvious safe defaults and
|
|
11
|
-
continue without questioning routine omissions.
|
|
12
|
-
|
|
13
|
-
Before asking, finish authorized discovery and reversible preparation that can
|
|
14
|
-
narrow the choice without deciding it. Ask only for the earliest unresolved
|
|
15
|
-
choice required by the next executable phase. After the answer, continue the
|
|
16
|
-
discovery and ask the next dependent question only if it remains material.
|
|
17
|
-
Avoid questionnaires about later phases whose relevance may change.
|
|
18
|
-
|
|
19
|
-
Persist the answer through the current Intent or Plan state model. Return to
|
|
20
|
-
Root with the selected decision, its scope, and the evidence or dependency it
|
|
21
|
-
unblocked; use `needs_root_input` when the choice remains unresolved.
|