@doidor/agentrig 0.7.0 → 0.8.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/README.md +2 -1
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/doidor/agentrig/actions/workflows/ci.yml)
|
|
4
4
|
[](https://github.com/doidor/agentrig/actions/workflows/release.yml)
|
|
5
|
+
[](https://doidor.github.io/agentrig)
|
|
5
6
|
[](https://www.npmjs.com/package/@doidor/agentrig)
|
|
6
7
|
[](https://nodejs.org)
|
|
7
8
|
[](LICENSE)
|
|
8
9
|
|
|
9
|
-
**An agentic meta-harness — a harness of harnesses.**
|
|
10
|
+
**An agentic meta-harness — a harness of harnesses.** [Read the docs →](https://doidor.github.io/agentrig)
|
|
10
11
|
|
|
11
12
|
AgentRig is a lightweight CLI that installs a **best-practice agent harness** into any repository and
|
|
12
13
|
then **projects it into every agent's native format** — so *any* agent benefits without lock-in,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doidor/agentrig",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "AgentRig — an agentic meta-harness. A CLI that investigates a repository and installs (and evaluates) a best-practice agent harness.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -37,7 +37,11 @@
|
|
|
37
37
|
"selftest": "node dist/cli.js eval --static . || true",
|
|
38
38
|
"changeset": "changeset",
|
|
39
39
|
"version-packages": "changeset version",
|
|
40
|
-
"release": "changeset publish"
|
|
40
|
+
"release": "changeset publish",
|
|
41
|
+
"docs:sync": "node scripts/sync-principles-to-docs.mjs",
|
|
42
|
+
"docs:dev": "npm run docs:sync && markbook dev",
|
|
43
|
+
"docs:build": "npm run docs:sync && markbook build",
|
|
44
|
+
"docs:preview": "markbook preview"
|
|
41
45
|
},
|
|
42
46
|
"keywords": [
|
|
43
47
|
"agent",
|
|
@@ -64,6 +68,8 @@
|
|
|
64
68
|
"devDependencies": {
|
|
65
69
|
"@changesets/changelog-github": "^0.7.0",
|
|
66
70
|
"@changesets/cli": "^2.31.0",
|
|
71
|
+
"@doidor/markbook": "^0.1.2",
|
|
72
|
+
"@doidor/markbook-core": "^0.1.2",
|
|
67
73
|
"@types/node": "^22.0.0",
|
|
68
74
|
"typescript": "^5.6.0"
|
|
69
75
|
}
|