@warpgogol/forge 0.11.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.
Files changed (38) hide show
  1. package/dist/bin/cli.js +0 -0
  2. package/dist/os/core/core.module.d.ts.map +1 -1
  3. package/dist/os/core/core.module.js +123 -0
  4. package/dist/os/core/core.module.js.map +1 -1
  5. package/dist/os/core/handlers/assets-check.d.ts +19 -0
  6. package/dist/os/core/handlers/assets-check.d.ts.map +1 -0
  7. package/dist/os/core/handlers/assets-check.js +91 -0
  8. package/dist/os/core/handlers/assets-check.js.map +1 -0
  9. package/dist/os/core/handlers/assets-helpers.d.ts +28 -0
  10. package/dist/os/core/handlers/assets-helpers.d.ts.map +1 -0
  11. package/dist/os/core/handlers/assets-helpers.js +127 -0
  12. package/dist/os/core/handlers/assets-helpers.js.map +1 -0
  13. package/dist/os/core/handlers/assets-list.d.ts +9 -0
  14. package/dist/os/core/handlers/assets-list.d.ts.map +1 -0
  15. package/dist/os/core/handlers/assets-list.js +76 -0
  16. package/dist/os/core/handlers/assets-list.js.map +1 -0
  17. package/dist/os/core/handlers/determinism-check.d.ts +20 -0
  18. package/dist/os/core/handlers/determinism-check.d.ts.map +1 -0
  19. package/dist/os/core/handlers/determinism-check.js +296 -0
  20. package/dist/os/core/handlers/determinism-check.js.map +1 -0
  21. package/dist/os/core/handlers/release-prepare.d.ts +25 -0
  22. package/dist/os/core/handlers/release-prepare.d.ts.map +1 -0
  23. package/dist/os/core/handlers/release-prepare.js +226 -0
  24. package/dist/os/core/handlers/release-prepare.js.map +1 -0
  25. package/dist/os/core/handlers/release-publish.d.ts +13 -0
  26. package/dist/os/core/handlers/release-publish.d.ts.map +1 -0
  27. package/dist/os/core/handlers/release-publish.js +173 -0
  28. package/dist/os/core/handlers/release-publish.js.map +1 -0
  29. package/dist/src/profiles/profile-schema.d.ts +73 -0
  30. package/dist/src/profiles/profile-schema.d.ts.map +1 -1
  31. package/dist/src/profiles/profile-schema.js +32 -0
  32. package/dist/src/profiles/profile-schema.js.map +1 -1
  33. package/dist/src/profiles/stack-profile.d.ts +23 -0
  34. package/dist/src/profiles/stack-profile.d.ts.map +1 -1
  35. package/dist/src/profiles/stack-profile.js +6 -0
  36. package/dist/src/profiles/stack-profile.js.map +1 -1
  37. package/package.json +165 -69
  38. package/profiles/editframe-html.yaml +16 -0
package/package.json CHANGED
@@ -1,121 +1,113 @@
1
1
  {
2
2
  "name": "@warpgogol/forge",
3
- "version": "0.11.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": "./dist/src/index.js",
19
- "types": "./dist/src/index.d.ts",
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": "./dist/src/index.d.ts",
26
- "default": "./dist/src/index.js"
17
+ "types": "./src/index.ts",
18
+ "default": "./src/index.ts"
27
19
  },
28
20
  "./types": {
29
- "types": "./dist/src/types.d.ts",
30
- "default": "./dist/src/types.js"
21
+ "types": "./src/types.ts",
22
+ "default": "./src/types.ts"
31
23
  },
32
24
  "./utils": {
33
- "types": "./dist/src/utils/index.d.ts",
34
- "default": "./dist/src/utils/index.js"
25
+ "types": "./src/utils/index.ts",
26
+ "default": "./src/utils/index.ts"
35
27
  },
36
28
  "./config": {
37
- "types": "./dist/src/config/forge-config.d.ts",
38
- "default": "./dist/src/config/forge-config.js"
29
+ "types": "./src/config/forge-config.ts",
30
+ "default": "./src/config/forge-config.ts"
39
31
  },
40
32
  "./os/core": {
41
- "types": "./dist/os/core/core.module.d.ts",
42
- "default": "./dist/os/core/core.module.js"
33
+ "types": "./os/core/core.module.ts",
34
+ "default": "./os/core/core.module.ts"
43
35
  },
44
36
  "./os/compass": {
45
- "types": "./dist/os/compass/index.d.ts",
46
- "default": "./dist/os/compass/index.js"
37
+ "types": "./os/compass/index.ts",
38
+ "default": "./os/compass/index.ts"
47
39
  },
48
40
  "./os/naming": {
49
- "types": "./dist/os/naming/index.d.ts",
50
- "default": "./dist/os/naming/index.js"
41
+ "types": "./os/naming/index.ts",
42
+ "default": "./os/naming/index.ts"
51
43
  },
52
44
  "./os/naming-module": {
53
- "types": "./dist/os/naming/naming.module.d.ts",
54
- "default": "./dist/os/naming/naming.module.js"
45
+ "types": "./os/naming/naming.module.ts",
46
+ "default": "./os/naming/naming.module.ts"
55
47
  },
56
48
  "./os/rfc": {
57
- "types": "./dist/os/rfc/index.d.ts",
58
- "default": "./dist/os/rfc/index.js"
49
+ "types": "./os/rfc/index.ts",
50
+ "default": "./os/rfc/index.ts"
59
51
  },
60
52
  "./os/rfc-module": {
61
- "types": "./dist/os/rfc/rfc.module.d.ts",
62
- "default": "./dist/os/rfc/rfc.module.js"
53
+ "types": "./os/rfc/rfc.module.ts",
54
+ "default": "./os/rfc/rfc.module.ts"
63
55
  },
64
56
  "./os/werkstatt": {
65
- "types": "./dist/os/werkstatt/index.d.ts",
66
- "default": "./dist/os/werkstatt/index.js"
57
+ "types": "./os/werkstatt/index.ts",
58
+ "default": "./os/werkstatt/index.ts"
67
59
  },
68
60
  "./os/workflow": {
69
- "types": "./dist/os/workflow/index.d.ts",
70
- "default": "./dist/os/workflow/index.js"
61
+ "types": "./os/workflow/index.ts",
62
+ "default": "./os/workflow/index.ts"
71
63
  },
72
64
  "./os/workflow-module": {
73
- "types": "./dist/os/workflow/workflow.module.d.ts",
74
- "default": "./dist/os/workflow/workflow.module.js"
65
+ "types": "./os/workflow/workflow.module.ts",
66
+ "default": "./os/workflow/workflow.module.ts"
75
67
  },
76
68
  "./os/spec-module": {
77
- "types": "./dist/os/spec/spec.module.d.ts",
78
- "default": "./dist/os/spec/spec.module.js"
69
+ "types": "./os/spec/spec.module.ts",
70
+ "default": "./os/spec/spec.module.ts"
79
71
  },
80
72
  "./os/adr": {
81
- "types": "./dist/os/adr/index.d.ts",
82
- "default": "./dist/os/adr/index.js"
73
+ "types": "./os/adr/index.ts",
74
+ "default": "./os/adr/index.ts"
83
75
  },
84
76
  "./os/adr-module": {
85
- "types": "./dist/os/adr/adr.module.d.ts",
86
- "default": "./dist/os/adr/adr.module.js"
77
+ "types": "./os/adr/adr.module.ts",
78
+ "default": "./os/adr/adr.module.ts"
87
79
  },
88
80
  "./os/plan": {
89
- "types": "./dist/os/plan/index.d.ts",
90
- "default": "./dist/os/plan/index.js"
81
+ "types": "./os/plan/index.ts",
82
+ "default": "./os/plan/index.ts"
91
83
  },
92
84
  "./os/plan-module": {
93
- "types": "./dist/os/plan/plan.module.d.ts",
94
- "default": "./dist/os/plan/plan.module.js"
85
+ "types": "./os/plan/plan.module.ts",
86
+ "default": "./os/plan/plan.module.ts"
95
87
  },
96
88
  "./os/audit": {
97
- "types": "./dist/os/audit/index.d.ts",
98
- "default": "./dist/os/audit/index.js"
89
+ "types": "./os/audit/index.ts",
90
+ "default": "./os/audit/index.ts"
99
91
  },
100
92
  "./os/audit-module": {
101
- "types": "./dist/os/audit/audit.module.d.ts",
102
- "default": "./dist/os/audit/audit.module.js"
93
+ "types": "./os/audit/audit.module.ts",
94
+ "default": "./os/audit/audit.module.ts"
103
95
  },
104
96
  "./os/session": {
105
- "types": "./dist/os/session/index.d.ts",
106
- "default": "./dist/os/session/index.js"
97
+ "types": "./os/session/index.ts",
98
+ "default": "./os/session/index.ts"
107
99
  },
108
100
  "./os/session-module": {
109
- "types": "./dist/os/session/session.module.d.ts",
110
- "default": "./dist/os/session/session.module.js"
101
+ "types": "./os/session/session.module.ts",
102
+ "default": "./os/session/session.module.ts"
111
103
  },
112
104
  "./os/mission": {
113
- "types": "./dist/os/mission/index.d.ts",
114
- "default": "./dist/os/mission/index.js"
105
+ "types": "./os/mission/index.ts",
106
+ "default": "./os/mission/index.ts"
115
107
  },
116
108
  "./os/mission-module": {
117
- "types": "./dist/os/mission/mission.module.d.ts",
118
- "default": "./dist/os/mission/mission.module.js"
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
- "scripts": {
149
- "build": "pnpm exec tsc -p tsconfig.json",
150
- "build:check": "pnpm exec tsc -p tsconfig.json --noEmit",
151
- "clean": "rm -rf dist",
152
- "test": "vitest run --passWithNoTests",
153
- "test:watch": "vitest"
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
+ }
@@ -32,6 +32,22 @@ artifacts:
32
32
  inputs:
33
33
  - compositions/**/*.html
34
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
35
51
  workspaceTypes:
36
52
  - id: composition
37
53
  detect: