@uzysjung/agent-harness 26.113.0 → 26.115.0
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/dist/index.js +7 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/codex/README.md +0 -1
- package/templates/codex/config.toml.template +0 -8
- package/templates/codex/hooks/README.md +0 -1
- package/templates/opencode/AGENTS.md.template +0 -1
- package/templates/rules/benchmark-parity.md +19 -2
- package/templates/settings.json +1 -12
- package/templates/skills/deep-research/SKILL.md +24 -0
- package/templates/skills/eval-harness/SKILL.md +40 -13
- package/templates/skills/northstar-roadmap/SKILL.md +6 -5
- package/templates/skills/recurrence-prevention/SKILL.md +10 -0
- package/templates/codex/hooks/hito-counter.sh +0 -7
- package/templates/hooks/hito-counter.sh +0 -26
package/dist/index.js
CHANGED
|
@@ -709,7 +709,7 @@ var cac = (name = "") => new CAC(name);
|
|
|
709
709
|
// package.json
|
|
710
710
|
var package_default = {
|
|
711
711
|
name: "@uzysjung/agent-harness",
|
|
712
|
-
version: "26.
|
|
712
|
+
version: "26.115.0",
|
|
713
713
|
description: "Curate vetted AI-coding skills & plugins by your tech stack \u2014 install only what you need, across Claude Code, Codex, OpenCode & Antigravity",
|
|
714
714
|
type: "module",
|
|
715
715
|
publishConfig: {
|
|
@@ -1310,7 +1310,7 @@ function quoteIfNeeded(name) {
|
|
|
1310
1310
|
}
|
|
1311
1311
|
|
|
1312
1312
|
// src/codex/transform.ts
|
|
1313
|
-
var HOOK_NAMES = ["session-start"
|
|
1313
|
+
var HOOK_NAMES = ["session-start"];
|
|
1314
1314
|
var ENV_VAR_RENAME = /CLAUDE_PROJECT_DIR/g;
|
|
1315
1315
|
function runCodexTransform(params) {
|
|
1316
1316
|
const { harnessRoot, projectDir, selectedInternalSkills = [] } = params;
|
|
@@ -1858,15 +1858,14 @@ var ALWAYS_HOOKS = [
|
|
|
1858
1858
|
"protect-files.sh",
|
|
1859
1859
|
"mcp-pre-exec.sh",
|
|
1860
1860
|
"spec-drift-check.sh",
|
|
1861
|
-
"checkpoint-snapshot.sh"
|
|
1862
|
-
"hito-counter.sh"
|
|
1861
|
+
"checkpoint-snapshot.sh"
|
|
1863
1862
|
];
|
|
1864
1863
|
var COMMON_SKILL_DIRS = ["north-star", "gh-issue-workflow"];
|
|
1865
|
-
var COMMON_SKILL_DIRS_ECC = ["strategic-compact"
|
|
1866
|
-
var MODIFIED_COMMON_SKILL_DIRS = ["continuous-learning-v2"];
|
|
1864
|
+
var COMMON_SKILL_DIRS_ECC = ["strategic-compact"];
|
|
1865
|
+
var MODIFIED_COMMON_SKILL_DIRS = ["continuous-learning-v2", "deep-research"];
|
|
1867
1866
|
var DEV_SKILL_DIRS = [];
|
|
1868
|
-
var DEV_SKILL_DIRS_ECC = ["
|
|
1869
|
-
var MODIFIED_DEV_SKILL_DIRS = ["verification-loop"];
|
|
1867
|
+
var DEV_SKILL_DIRS_ECC = ["agent-introspection-debugging"];
|
|
1868
|
+
var MODIFIED_DEV_SKILL_DIRS = ["verification-loop", "eval-harness"];
|
|
1870
1869
|
var MODIFIED_ECC_SKILL_DIRS = [...MODIFIED_COMMON_SKILL_DIRS, ...MODIFIED_DEV_SKILL_DIRS];
|
|
1871
1870
|
var UI_SKILL_DIRS = ["ui-visual-review"];
|
|
1872
1871
|
var UI_SKILL_DIRS_ECC = ["e2e-testing"];
|