agentfold 0.1.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/LICENSE +21 -0
- package/README.md +197 -0
- package/agentfold.mjs +1115 -0
- package/lib/compose-layers.mjs +23 -0
- package/lib/diff.mjs +47 -0
- package/lib/load-profile.mjs +112 -0
- package/lib/manifest.mjs +66 -0
- package/lib/pipeline-steps.mjs +853 -0
- package/lib/scope.mjs +158 -0
- package/lib/util.mjs +348 -0
- package/lib/validate.mjs +209 -0
- package/package.json +42 -0
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentfold",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Layered generator for AI agent configuration — define guidance once, compose by profile, output for multiple agent ecosystems.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/franciscohernandez/agentfold.git"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"ai",
|
|
13
|
+
"agent",
|
|
14
|
+
"copilot",
|
|
15
|
+
"codex",
|
|
16
|
+
"cursor",
|
|
17
|
+
"claude",
|
|
18
|
+
"configuration",
|
|
19
|
+
"generator",
|
|
20
|
+
"cli"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"lint": "node agentfold.mjs lint",
|
|
24
|
+
"build": "node agentfold.mjs build",
|
|
25
|
+
"diff": "node agentfold.mjs diff",
|
|
26
|
+
"apply": "node agentfold.mjs apply",
|
|
27
|
+
"check": "npm run lint && npm run diff",
|
|
28
|
+
"sync": "npm run lint && npm run build && npm run apply -- --prune"
|
|
29
|
+
},
|
|
30
|
+
"bin": {
|
|
31
|
+
"agentfold": "agentfold.mjs"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"agentfold.mjs",
|
|
35
|
+
"lib/",
|
|
36
|
+
"README.md",
|
|
37
|
+
"LICENSE"
|
|
38
|
+
],
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=18"
|
|
41
|
+
}
|
|
42
|
+
}
|