@zythegit/agentforge 0.1.2 → 0.2.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 +36 -141
- package/dist/aforge.js +403 -358
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zythegit/agentforge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "AgentForge — manage AI coding CLI rule projections (SoT → opencode/codex/claude/pi) from one source of truth",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"dev": "tsx src/main.ts",
|
|
29
29
|
"test": "vitest run",
|
|
30
30
|
"typecheck": "tsc --noEmit",
|
|
31
|
-
"lint": "biome check .",
|
|
31
|
+
"lint": "biome check . && npm run lint:size",
|
|
32
|
+
"lint:size": "node scripts/check-file-size.mjs",
|
|
32
33
|
"format": "biome check --write .",
|
|
33
34
|
"emit-schema": "tsx src/schema/emit.ts",
|
|
34
35
|
"gen:version": "node scripts/gen-version.mjs",
|