@warpgogol/forge 0.10.0 → 0.12.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/dist/bin/cli.js +0 -0
- package/dist/os/core/core.module.d.ts.map +1 -1
- package/dist/os/core/core.module.js +129 -2
- package/dist/os/core/core.module.js.map +1 -1
- package/dist/os/core/handlers/assets-check.d.ts +19 -0
- package/dist/os/core/handlers/assets-check.d.ts.map +1 -0
- package/dist/os/core/handlers/assets-check.js +91 -0
- package/dist/os/core/handlers/assets-check.js.map +1 -0
- package/dist/os/core/handlers/assets-helpers.d.ts +28 -0
- package/dist/os/core/handlers/assets-helpers.d.ts.map +1 -0
- package/dist/os/core/handlers/assets-helpers.js +127 -0
- package/dist/os/core/handlers/assets-helpers.js.map +1 -0
- package/dist/os/core/handlers/assets-list.d.ts +9 -0
- package/dist/os/core/handlers/assets-list.d.ts.map +1 -0
- package/dist/os/core/handlers/assets-list.js +76 -0
- package/dist/os/core/handlers/assets-list.js.map +1 -0
- package/dist/os/core/handlers/determinism-check.d.ts +20 -0
- package/dist/os/core/handlers/determinism-check.d.ts.map +1 -0
- package/dist/os/core/handlers/determinism-check.js +296 -0
- package/dist/os/core/handlers/determinism-check.js.map +1 -0
- package/dist/os/core/handlers/release-prepare.d.ts +25 -0
- package/dist/os/core/handlers/release-prepare.d.ts.map +1 -0
- package/dist/os/core/handlers/release-prepare.js +226 -0
- package/dist/os/core/handlers/release-prepare.js.map +1 -0
- package/dist/os/core/handlers/release-publish.d.ts +13 -0
- package/dist/os/core/handlers/release-publish.d.ts.map +1 -0
- package/dist/os/core/handlers/release-publish.js +173 -0
- package/dist/os/core/handlers/release-publish.js.map +1 -0
- package/dist/os/core/handlers/validate.d.ts +11 -0
- package/dist/os/core/handlers/validate.d.ts.map +1 -1
- package/dist/os/core/handlers/validate.js +100 -12
- package/dist/os/core/handlers/validate.js.map +1 -1
- package/dist/src/onboarding/doctor.d.ts.map +1 -1
- package/dist/src/onboarding/doctor.js +10 -2
- package/dist/src/onboarding/doctor.js.map +1 -1
- package/dist/src/onboarding/nested-agents-generate.d.ts +2 -0
- package/dist/src/onboarding/nested-agents-generate.d.ts.map +1 -1
- package/dist/src/onboarding/nested-agents-generate.js +1 -1
- package/dist/src/onboarding/nested-agents-generate.js.map +1 -1
- package/dist/src/profiles/profile-schema.d.ts +85 -0
- package/dist/src/profiles/profile-schema.d.ts.map +1 -1
- package/dist/src/profiles/profile-schema.js +34 -0
- package/dist/src/profiles/profile-schema.js.map +1 -1
- package/dist/src/profiles/stack-profile.d.ts +28 -0
- package/dist/src/profiles/stack-profile.d.ts.map +1 -1
- package/dist/src/profiles/stack-profile.js +6 -0
- package/dist/src/profiles/stack-profile.js.map +1 -1
- package/package.json +165 -69
- package/profiles/editframe-html.yaml +18 -3
package/package.json
CHANGED
|
@@ -1,121 +1,113 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warpgogol/forge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "Framework for documenting and implementing ideas — RFC/ADR governance, skills, and project bootstrapping.",
|
|
8
|
-
"keywords": [
|
|
9
|
-
"rfc",
|
|
10
|
-
"adr",
|
|
11
|
-
"governance",
|
|
12
|
-
"skills",
|
|
13
|
-
"ai-agent",
|
|
14
|
-
"documentation",
|
|
15
|
-
"framework"
|
|
16
|
-
],
|
|
8
|
+
"keywords": ["rfc", "adr", "governance", "skills", "ai-agent", "documentation", "framework"],
|
|
17
9
|
"homepage": "https://warpgogol.com",
|
|
18
|
-
"main": "./
|
|
19
|
-
"types": "./
|
|
10
|
+
"main": "./src/index.ts",
|
|
11
|
+
"types": "./src/index.ts",
|
|
20
12
|
"bin": {
|
|
21
13
|
"forge": "./bin/cli.js"
|
|
22
14
|
},
|
|
23
15
|
"exports": {
|
|
24
16
|
".": {
|
|
25
|
-
"types": "./
|
|
26
|
-
"default": "./
|
|
17
|
+
"types": "./src/index.ts",
|
|
18
|
+
"default": "./src/index.ts"
|
|
27
19
|
},
|
|
28
20
|
"./types": {
|
|
29
|
-
"types": "./
|
|
30
|
-
"default": "./
|
|
21
|
+
"types": "./src/types.ts",
|
|
22
|
+
"default": "./src/types.ts"
|
|
31
23
|
},
|
|
32
24
|
"./utils": {
|
|
33
|
-
"types": "./
|
|
34
|
-
"default": "./
|
|
25
|
+
"types": "./src/utils/index.ts",
|
|
26
|
+
"default": "./src/utils/index.ts"
|
|
35
27
|
},
|
|
36
28
|
"./config": {
|
|
37
|
-
"types": "./
|
|
38
|
-
"default": "./
|
|
29
|
+
"types": "./src/config/forge-config.ts",
|
|
30
|
+
"default": "./src/config/forge-config.ts"
|
|
39
31
|
},
|
|
40
32
|
"./os/core": {
|
|
41
|
-
"types": "./
|
|
42
|
-
"default": "./
|
|
33
|
+
"types": "./os/core/core.module.ts",
|
|
34
|
+
"default": "./os/core/core.module.ts"
|
|
43
35
|
},
|
|
44
36
|
"./os/compass": {
|
|
45
|
-
"types": "./
|
|
46
|
-
"default": "./
|
|
37
|
+
"types": "./os/compass/index.ts",
|
|
38
|
+
"default": "./os/compass/index.ts"
|
|
47
39
|
},
|
|
48
40
|
"./os/naming": {
|
|
49
|
-
"types": "./
|
|
50
|
-
"default": "./
|
|
41
|
+
"types": "./os/naming/index.ts",
|
|
42
|
+
"default": "./os/naming/index.ts"
|
|
51
43
|
},
|
|
52
44
|
"./os/naming-module": {
|
|
53
|
-
"types": "./
|
|
54
|
-
"default": "./
|
|
45
|
+
"types": "./os/naming/naming.module.ts",
|
|
46
|
+
"default": "./os/naming/naming.module.ts"
|
|
55
47
|
},
|
|
56
48
|
"./os/rfc": {
|
|
57
|
-
"types": "./
|
|
58
|
-
"default": "./
|
|
49
|
+
"types": "./os/rfc/index.ts",
|
|
50
|
+
"default": "./os/rfc/index.ts"
|
|
59
51
|
},
|
|
60
52
|
"./os/rfc-module": {
|
|
61
|
-
"types": "./
|
|
62
|
-
"default": "./
|
|
53
|
+
"types": "./os/rfc/rfc.module.ts",
|
|
54
|
+
"default": "./os/rfc/rfc.module.ts"
|
|
63
55
|
},
|
|
64
56
|
"./os/werkstatt": {
|
|
65
|
-
"types": "./
|
|
66
|
-
"default": "./
|
|
57
|
+
"types": "./os/werkstatt/index.ts",
|
|
58
|
+
"default": "./os/werkstatt/index.ts"
|
|
67
59
|
},
|
|
68
60
|
"./os/workflow": {
|
|
69
|
-
"types": "./
|
|
70
|
-
"default": "./
|
|
61
|
+
"types": "./os/workflow/index.ts",
|
|
62
|
+
"default": "./os/workflow/index.ts"
|
|
71
63
|
},
|
|
72
64
|
"./os/workflow-module": {
|
|
73
|
-
"types": "./
|
|
74
|
-
"default": "./
|
|
65
|
+
"types": "./os/workflow/workflow.module.ts",
|
|
66
|
+
"default": "./os/workflow/workflow.module.ts"
|
|
75
67
|
},
|
|
76
68
|
"./os/spec-module": {
|
|
77
|
-
"types": "./
|
|
78
|
-
"default": "./
|
|
69
|
+
"types": "./os/spec/spec.module.ts",
|
|
70
|
+
"default": "./os/spec/spec.module.ts"
|
|
79
71
|
},
|
|
80
72
|
"./os/adr": {
|
|
81
|
-
"types": "./
|
|
82
|
-
"default": "./
|
|
73
|
+
"types": "./os/adr/index.ts",
|
|
74
|
+
"default": "./os/adr/index.ts"
|
|
83
75
|
},
|
|
84
76
|
"./os/adr-module": {
|
|
85
|
-
"types": "./
|
|
86
|
-
"default": "./
|
|
77
|
+
"types": "./os/adr/adr.module.ts",
|
|
78
|
+
"default": "./os/adr/adr.module.ts"
|
|
87
79
|
},
|
|
88
80
|
"./os/plan": {
|
|
89
|
-
"types": "./
|
|
90
|
-
"default": "./
|
|
81
|
+
"types": "./os/plan/index.ts",
|
|
82
|
+
"default": "./os/plan/index.ts"
|
|
91
83
|
},
|
|
92
84
|
"./os/plan-module": {
|
|
93
|
-
"types": "./
|
|
94
|
-
"default": "./
|
|
85
|
+
"types": "./os/plan/plan.module.ts",
|
|
86
|
+
"default": "./os/plan/plan.module.ts"
|
|
95
87
|
},
|
|
96
88
|
"./os/audit": {
|
|
97
|
-
"types": "./
|
|
98
|
-
"default": "./
|
|
89
|
+
"types": "./os/audit/index.ts",
|
|
90
|
+
"default": "./os/audit/index.ts"
|
|
99
91
|
},
|
|
100
92
|
"./os/audit-module": {
|
|
101
|
-
"types": "./
|
|
102
|
-
"default": "./
|
|
93
|
+
"types": "./os/audit/audit.module.ts",
|
|
94
|
+
"default": "./os/audit/audit.module.ts"
|
|
103
95
|
},
|
|
104
96
|
"./os/session": {
|
|
105
|
-
"types": "./
|
|
106
|
-
"default": "./
|
|
97
|
+
"types": "./os/session/index.ts",
|
|
98
|
+
"default": "./os/session/index.ts"
|
|
107
99
|
},
|
|
108
100
|
"./os/session-module": {
|
|
109
|
-
"types": "./
|
|
110
|
-
"default": "./
|
|
101
|
+
"types": "./os/session/session.module.ts",
|
|
102
|
+
"default": "./os/session/session.module.ts"
|
|
111
103
|
},
|
|
112
104
|
"./os/mission": {
|
|
113
|
-
"types": "./
|
|
114
|
-
"default": "./
|
|
105
|
+
"types": "./os/mission/index.ts",
|
|
106
|
+
"default": "./os/mission/index.ts"
|
|
115
107
|
},
|
|
116
108
|
"./os/mission-module": {
|
|
117
|
-
"types": "./
|
|
118
|
-
"default": "./
|
|
109
|
+
"types": "./os/mission/mission.module.ts",
|
|
110
|
+
"default": "./os/mission/mission.module.ts"
|
|
119
111
|
}
|
|
120
112
|
},
|
|
121
113
|
"files": [
|
|
@@ -129,7 +121,18 @@
|
|
|
129
121
|
"README.md",
|
|
130
122
|
"LICENSE"
|
|
131
123
|
],
|
|
124
|
+
"scripts": {
|
|
125
|
+
"build": "pnpm exec tsc -p tsconfig.json",
|
|
126
|
+
"build:check": "pnpm exec tsc -p tsconfig.json --noEmit",
|
|
127
|
+
"clean": "rm -rf dist",
|
|
128
|
+
"prepublishOnly": "pnpm run clean && pnpm run build && node scripts/publish-check.mjs",
|
|
129
|
+
"test": "vitest run --passWithNoTests",
|
|
130
|
+
"test:watch": "vitest"
|
|
131
|
+
},
|
|
132
132
|
"dependencies": {
|
|
133
|
+
"@aws-sdk/client-s3": "^3.700.0",
|
|
134
|
+
"@warpgogol/fingerprint": "workspace:*",
|
|
135
|
+
"@warpgogol/share": "workspace:*",
|
|
133
136
|
"yaml": "^2.9.0",
|
|
134
137
|
"zod": "^4.4.3"
|
|
135
138
|
},
|
|
@@ -143,13 +146,106 @@
|
|
|
143
146
|
"node": ">=18.0.0"
|
|
144
147
|
},
|
|
145
148
|
"publishConfig": {
|
|
146
|
-
"access": "public"
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
149
|
+
"access": "public",
|
|
150
|
+
"main": "./dist/src/index.js",
|
|
151
|
+
"types": "./dist/src/index.d.ts",
|
|
152
|
+
"exports": {
|
|
153
|
+
".": {
|
|
154
|
+
"types": "./dist/src/index.d.ts",
|
|
155
|
+
"default": "./dist/src/index.js"
|
|
156
|
+
},
|
|
157
|
+
"./types": {
|
|
158
|
+
"types": "./dist/src/types.d.ts",
|
|
159
|
+
"default": "./dist/src/types.js"
|
|
160
|
+
},
|
|
161
|
+
"./utils": {
|
|
162
|
+
"types": "./dist/src/utils/index.d.ts",
|
|
163
|
+
"default": "./dist/src/utils/index.js"
|
|
164
|
+
},
|
|
165
|
+
"./config": {
|
|
166
|
+
"types": "./dist/src/config/forge-config.d.ts",
|
|
167
|
+
"default": "./dist/src/config/forge-config.js"
|
|
168
|
+
},
|
|
169
|
+
"./os/core": {
|
|
170
|
+
"types": "./dist/os/core/core.module.d.ts",
|
|
171
|
+
"default": "./dist/os/core/core.module.js"
|
|
172
|
+
},
|
|
173
|
+
"./os/compass": {
|
|
174
|
+
"types": "./dist/os/compass/index.d.ts",
|
|
175
|
+
"default": "./dist/os/compass/index.js"
|
|
176
|
+
},
|
|
177
|
+
"./os/naming": {
|
|
178
|
+
"types": "./dist/os/naming/index.d.ts",
|
|
179
|
+
"default": "./dist/os/naming/index.js"
|
|
180
|
+
},
|
|
181
|
+
"./os/naming-module": {
|
|
182
|
+
"types": "./dist/os/naming/naming.module.d.ts",
|
|
183
|
+
"default": "./dist/os/naming/naming.module.js"
|
|
184
|
+
},
|
|
185
|
+
"./os/rfc": {
|
|
186
|
+
"types": "./dist/os/rfc/index.d.ts",
|
|
187
|
+
"default": "./dist/os/rfc/index.js"
|
|
188
|
+
},
|
|
189
|
+
"./os/rfc-module": {
|
|
190
|
+
"types": "./dist/os/rfc/rfc.module.d.ts",
|
|
191
|
+
"default": "./dist/os/rfc/rfc.module.js"
|
|
192
|
+
},
|
|
193
|
+
"./os/werkstatt": {
|
|
194
|
+
"types": "./dist/os/werkstatt/index.d.ts",
|
|
195
|
+
"default": "./dist/os/werkstatt/index.js"
|
|
196
|
+
},
|
|
197
|
+
"./os/workflow": {
|
|
198
|
+
"types": "./dist/os/workflow/index.d.ts",
|
|
199
|
+
"default": "./dist/os/workflow/index.js"
|
|
200
|
+
},
|
|
201
|
+
"./os/workflow-module": {
|
|
202
|
+
"types": "./dist/os/workflow/workflow.module.d.ts",
|
|
203
|
+
"default": "./dist/os/workflow/workflow.module.js"
|
|
204
|
+
},
|
|
205
|
+
"./os/spec-module": {
|
|
206
|
+
"types": "./dist/os/spec/spec.module.d.ts",
|
|
207
|
+
"default": "./dist/os/spec/spec.module.js"
|
|
208
|
+
},
|
|
209
|
+
"./os/adr": {
|
|
210
|
+
"types": "./dist/os/adr/index.d.ts",
|
|
211
|
+
"default": "./dist/os/adr/index.js"
|
|
212
|
+
},
|
|
213
|
+
"./os/adr-module": {
|
|
214
|
+
"types": "./dist/os/adr/adr.module.d.ts",
|
|
215
|
+
"default": "./dist/os/adr/adr.module.js"
|
|
216
|
+
},
|
|
217
|
+
"./os/plan": {
|
|
218
|
+
"types": "./dist/os/plan/index.d.ts",
|
|
219
|
+
"default": "./dist/os/plan/index.js"
|
|
220
|
+
},
|
|
221
|
+
"./os/plan-module": {
|
|
222
|
+
"types": "./dist/os/plan/plan.module.d.ts",
|
|
223
|
+
"default": "./dist/os/plan/plan.module.js"
|
|
224
|
+
},
|
|
225
|
+
"./os/audit": {
|
|
226
|
+
"types": "./dist/os/audit/index.d.ts",
|
|
227
|
+
"default": "./dist/os/audit/index.js"
|
|
228
|
+
},
|
|
229
|
+
"./os/audit-module": {
|
|
230
|
+
"types": "./dist/os/audit/audit.module.d.ts",
|
|
231
|
+
"default": "./dist/os/audit/audit.module.js"
|
|
232
|
+
},
|
|
233
|
+
"./os/session": {
|
|
234
|
+
"types": "./dist/os/session/index.d.ts",
|
|
235
|
+
"default": "./dist/os/session/index.js"
|
|
236
|
+
},
|
|
237
|
+
"./os/session-module": {
|
|
238
|
+
"types": "./dist/os/session/session.module.d.ts",
|
|
239
|
+
"default": "./dist/os/session/session.module.js"
|
|
240
|
+
},
|
|
241
|
+
"./os/mission": {
|
|
242
|
+
"types": "./dist/os/mission/index.d.ts",
|
|
243
|
+
"default": "./dist/os/mission/index.js"
|
|
244
|
+
},
|
|
245
|
+
"./os/mission-module": {
|
|
246
|
+
"types": "./dist/os/mission/mission.module.d.ts",
|
|
247
|
+
"default": "./dist/os/mission/mission.module.js"
|
|
248
|
+
}
|
|
249
|
+
}
|
|
154
250
|
}
|
|
155
|
-
}
|
|
251
|
+
}
|
|
@@ -30,9 +30,24 @@ artifacts:
|
|
|
30
30
|
determinism:
|
|
31
31
|
hashable: true
|
|
32
32
|
inputs:
|
|
33
|
-
-
|
|
34
|
-
- assets
|
|
35
|
-
|
|
33
|
+
- compositions/**/*.html
|
|
34
|
+
- assets/**
|
|
35
|
+
assets:
|
|
36
|
+
dir: assets
|
|
37
|
+
types:
|
|
38
|
+
- id: video
|
|
39
|
+
extensions: [.mp4, .webm]
|
|
40
|
+
referencePattern: 'src="([^"]+\.(?:mp4|webm))"'
|
|
41
|
+
- id: audio
|
|
42
|
+
extensions: [.mp3, .wav]
|
|
43
|
+
referencePattern: 'src="([^"]+\.(?:mp3|wav))"'
|
|
44
|
+
- id: image
|
|
45
|
+
extensions: [.png, .jpg, .jpeg, .webp, .svg]
|
|
46
|
+
referencePattern: 'src="([^"]+\.(?:png|jpe?g|webp|svg))"'
|
|
47
|
+
release:
|
|
48
|
+
target: local
|
|
49
|
+
outputDir: release
|
|
50
|
+
manifestName: release-manifest.json
|
|
36
51
|
workspaceTypes:
|
|
37
52
|
- id: composition
|
|
38
53
|
detect:
|