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/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "holycodex",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.4-dev.77.1",
|
|
4
4
|
"bin": {
|
|
5
|
-
"holycodex": "./dist/index.js"
|
|
5
|
+
"holycodex": "./dist/index.js",
|
|
6
|
+
"holycodex-agent": "./dist/agent.js"
|
|
6
7
|
},
|
|
7
8
|
"files": ["dist", "README.md"],
|
|
8
9
|
"type": "module",
|
|
@@ -10,7 +11,9 @@
|
|
|
10
11
|
".": "./dist/index.js"
|
|
11
12
|
},
|
|
12
13
|
"dependencies": {
|
|
13
|
-
"
|
|
14
|
+
"@opentui/core": "~0.5.10",
|
|
15
|
+
"@toon-format/toon": "^4.1.1",
|
|
16
|
+
"effect": "^3.22.1"
|
|
14
17
|
},
|
|
15
18
|
"repository": {
|
|
16
19
|
"type": "git",
|
|
@@ -21,7 +24,7 @@
|
|
|
21
24
|
},
|
|
22
25
|
"release": {
|
|
23
26
|
"schemaVersion": "holycodex-release-v1",
|
|
24
|
-
"channel": "
|
|
25
|
-
"sourceSha": "
|
|
27
|
+
"channel": "dev",
|
|
28
|
+
"sourceSha": "76da3434ec546f9eb722243bc9f508adea1ff88d"
|
|
26
29
|
}
|
|
27
30
|
}
|