@madebywild/agent-harness-framework 1.3.0 → 1.3.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
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @madebywild/agent-harness-framework
|
|
2
2
|
|
|
3
|
-
CLI and engine for [Agent Harness](https://github.com/madebywild/agent-harness) — unified AI agent configuration management for Claude Code, GitHub Copilot, and OpenAI Codex.
|
|
3
|
+
CLI and engine for [Agent Harness](https://github.com/madebywild/agent-harness) — unified AI agent configuration management for Claude Code, GitHub Copilot, and OpenAI Codex. The Shadcn for agent harnesses.
|
|
4
4
|
|
|
5
|
-
Agent Harness manages agent configurations (system prompts, skills, MCP servers, subagents, and lifecycle hooks) from a single source of truth in a `.harness/` directory and generates provider-specific outputs for each enabled provider.
|
|
5
|
+
Agent Harness manages agent configurations (system prompts, skills, MCP servers, subagents, and lifecycle hooks) from a single source of truth in a `.harness/` directory and generates provider-specific outputs for each enabled provider. Like [shadcn/ui](https://ui.shadcn.com/) does for UI components, entities can be pulled from external git registries as full, editable source code — no opaque library imports, complete transparency and ownership.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -91,7 +91,7 @@ npx harness provider disable <provider> # Disable a provider
|
|
|
91
91
|
|
|
92
92
|
### Registry management
|
|
93
93
|
|
|
94
|
-
Registries are shared collections of entities that can be
|
|
94
|
+
Registries are shared collections of entities that can be pulled into any workspace via git — like Shadcn, entities are copied as full source code into your project, not installed as opaque dependencies.
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
97
|
npx harness registry list # List configured registries
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delegated-init.d.ts","sourceRoot":"","sources":["../src/delegated-init.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAErE,eAAO,MAAM,wBAAwB,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"delegated-init.d.ts","sourceRoot":"","sources":["../src/delegated-init.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAErE,eAAO,MAAM,wBAAwB,aAAa,CAAC;AAmBnD,wBAAgB,6BAA6B,IAAI,MAAM,CAwBtD;AAED,wBAAgB,sBAAsB,IAAI,MAAM,CAS/C;AAED,UAAU,kBAAkB;IAC1B,IAAI,CAAC,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,GAAG,IAAI,CAAC;IAC7D,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,EAAE,MAAM,EAAE,MAAM,CAAC,OAAO,GAAG,IAAI,KAAK,IAAI,GAAG,IAAI,CAAC;CACnG;AAED,KAAK,SAAS,GAAG,CACf,OAAO,EAAE,MAAM,EACf,IAAI,EAAE,SAAS,MAAM,EAAE,EACvB,OAAO,EAAE;IACP,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,KAAK,EAAE,SAAS,CAAC;CAClB,KACE,kBAAkB,CAAC;AAExB,wBAAgB,mBAAmB,CACjC,KAAK,EAAE;IACL,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,QAAQ,EAAE,UAAU,CAAC;CACtB,EACD,SAAS,GAAE,SAA0E,GACpF,OAAO,CAAC,IAAI,CAAC,CAsBf"}
|
package/dist/delegated-init.js
CHANGED
|
@@ -3,13 +3,17 @@ export const DELEGATED_INIT_PRESET_ID = "delegate";
|
|
|
3
3
|
/**
|
|
4
4
|
* Provider-specific CLI invocation details.
|
|
5
5
|
*
|
|
6
|
-
*
|
|
7
|
-
* -
|
|
8
|
-
*
|
|
6
|
+
* Each provider needs both a non-interactive flag AND a permission-bypass flag,
|
|
7
|
+
* because print/exec modes still enforce tool-use permissions by default — the
|
|
8
|
+
* agent sees what to do but cannot actually write files or run commands.
|
|
9
|
+
*
|
|
10
|
+
* - claude: `claude -p --dangerously-skip-permissions <task>`
|
|
11
|
+
* - codex: `codex exec --full-auto <task>`
|
|
12
|
+
* - copilot: `copilot -p <task>` (no known permission flag yet)
|
|
9
13
|
*/
|
|
10
14
|
const DELEGATED_INIT_COMMANDS = {
|
|
11
|
-
claude: { binary: "claude", buildArgs: (task) => ["-p", task] },
|
|
12
|
-
codex: { binary: "codex", buildArgs: (task) => ["exec", task] },
|
|
15
|
+
claude: { binary: "claude", buildArgs: (task) => ["-p", "--dangerously-skip-permissions", task] },
|
|
16
|
+
codex: { binary: "codex", buildArgs: (task) => ["exec", "--full-auto", task] },
|
|
13
17
|
copilot: { binary: "copilot", buildArgs: (task) => ["-p", task] },
|
|
14
18
|
};
|
|
15
19
|
export function buildDelegatedBootstrapPrompt() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delegated-init.js","sourceRoot":"","sources":["../src/delegated-init.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAG3C,MAAM,CAAC,MAAM,wBAAwB,GAAG,UAAU,CAAC;AAEnD
|
|
1
|
+
{"version":3,"file":"delegated-init.js","sourceRoot":"","sources":["../src/delegated-init.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAG3C,MAAM,CAAC,MAAM,wBAAwB,GAAG,UAAU,CAAC;AAEnD;;;;;;;;;;GAUG;AACH,MAAM,uBAAuB,GAAkF;IAC7G,MAAM,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,gCAAgC,EAAE,IAAI,CAAC,EAAE;IACjG,KAAK,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,aAAa,EAAE,IAAI,CAAC,EAAE;IAC9E,OAAO,EAAE,EAAE,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE;CAClE,CAAC;AAEF,MAAM,UAAU,6BAA6B;IAC3C,OAAO;;;;;;;;;;;;;;;;;;;;;;CAsBR,CAAC;AACF,CAAC;AAED,MAAM,UAAU,sBAAsB;IACpC,OAAO;;;;;;;uGAO8F,CAAC;AACxG,CAAC;AAiBD,MAAM,UAAU,mBAAmB,CACjC,KAIC,EACD,YAAuB,CAAC,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,GAAG,IAAI,CAAC,EAAE,OAAO,CAAC;IAErF,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG,uBAAuB,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;IACtE,MAAM,KAAK,GAAG,SAAS,CAAC,MAAM,EAAE,SAAS,CAAC,sBAAsB,EAAE,CAAC,EAAE;QACnE,GAAG,EAAE,KAAK,CAAC,GAAG;QACd,GAAG,EAAE,KAAK,CAAC,GAAG;QACd,KAAK,EAAE,SAAS;KACjB,CAAC,CAAC;IAEH,OAAO,IAAI,OAAO,CAAO,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QAC3C,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,KAAK,EAAE,EAAE;YAC5B,MAAM,CAAC,IAAI,KAAK,CAAC,2CAA2C,MAAM,MAAM,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;QAC5F,CAAC,CAAC,CAAC;QACH,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE;YAClC,IAAI,IAAI,KAAK,CAAC,EAAE,CAAC;gBACf,OAAO,EAAE,CAAC;gBACV,OAAO;YACT,CAAC;YAED,MAAM,MAAM,GAAG,MAAM,CAAC,CAAC,CAAC,UAAU,MAAM,EAAE,CAAC,CAAC,CAAC,aAAa,IAAI,IAAI,SAAS,EAAE,CAAC;YAC9E,MAAM,CAAC,IAAI,KAAK,CAAC,0BAA0B,MAAM,iBAAiB,MAAM,EAAE,CAAC,CAAC,CAAC;QAC/E,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@madebywild/agent-harness-framework",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"gray-matter": "^4.0.3",
|
|
44
44
|
"ora": "^9.3.0",
|
|
45
45
|
"yaml": "^2.8.2",
|
|
46
|
-
"@madebywild/agent-harness-manifest": "1.3.
|
|
46
|
+
"@madebywild/agent-harness-manifest": "1.3.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/node": "^25.5.0",
|