@madebywild/agent-harness-framework 0.9.1 → 0.9.2
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 +26 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# @madebywild/agent-harness-framework
|
|
2
|
+
|
|
3
|
+
CLI and engine for [Agent Harness](https://github.com/madebywild/agent-harness) — unified AI agent configuration management for Codex, Claude, and Copilot.
|
|
4
|
+
|
|
5
|
+
Agent Harness manages AI agent configurations (prompts, skills, MCP server configs, and subagents) from a single source of truth in the `.harness/` directory, generating provider-specific outputs for OpenAI Codex, Anthropic Claude Code, and GitHub Copilot.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pnpm add @madebywild/agent-harness-framework
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## CLI
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
harness init # Initialize harness in a project
|
|
17
|
+
harness add prompt # Add a system prompt
|
|
18
|
+
harness add skill # Add a skill
|
|
19
|
+
harness apply # Generate provider outputs
|
|
20
|
+
harness watch # Watch for changes and regenerate
|
|
21
|
+
harness doctor # Check configuration health
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@madebywild/agent-harness-framework",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"gray-matter": "^4.0.3",
|
|
29
29
|
"ora": "^9.3.0",
|
|
30
30
|
"yaml": "^2.8.2",
|
|
31
|
-
"@madebywild/agent-harness-manifest": "0.9.
|
|
31
|
+
"@madebywild/agent-harness-manifest": "0.9.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/node": "^25.5.0",
|