@hustle-together/api-dev-tools 3.0.0 → 3.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 +71 -0
- package/bin/cli.js +184 -14
- package/demo/audio/generate-all-narrations.js +124 -59
- package/demo/audio/generate-narration.js +120 -56
- package/demo/audio/narration-adam-timing.json +3086 -2077
- package/demo/audio/narration-adam.mp3 +0 -0
- package/demo/audio/narration-creature-timing.json +3094 -2085
- package/demo/audio/narration-creature.mp3 +0 -0
- package/demo/audio/narration-gaming-timing.json +3091 -2082
- package/demo/audio/narration-gaming.mp3 +0 -0
- package/demo/audio/narration-hope-timing.json +3072 -2063
- package/demo/audio/narration-hope.mp3 +0 -0
- package/demo/audio/narration-mark-timing.json +3090 -2081
- package/demo/audio/narration-mark.mp3 +0 -0
- package/demo/audio/voices-manifest.json +16 -16
- package/demo/workflow-demo.html +1528 -411
- package/hooks/api-workflow-check.py +2 -0
- package/hooks/enforce-deep-research.py +180 -0
- package/hooks/enforce-disambiguation.py +149 -0
- package/hooks/enforce-documentation.py +187 -0
- package/hooks/enforce-environment.py +249 -0
- package/hooks/enforce-interview.py +64 -1
- package/hooks/enforce-refactor.py +187 -0
- package/hooks/enforce-research.py +93 -46
- package/hooks/enforce-schema.py +186 -0
- package/hooks/enforce-scope.py +156 -0
- package/hooks/enforce-tdd-red.py +246 -0
- package/hooks/enforce-verify.py +186 -0
- package/hooks/verify-after-green.py +136 -6
- package/package.json +2 -1
- package/scripts/collect-test-results.ts +404 -0
- package/scripts/extract-parameters.ts +483 -0
- package/scripts/generate-test-manifest.ts +520 -0
- package/templates/CLAUDE-SECTION.md +84 -0
- package/templates/api-dev-state.json +45 -5
- package/templates/api-test/page.tsx +315 -0
- package/templates/api-test/test-structure/route.ts +269 -0
- package/templates/settings.json +36 -0
|
Binary file
|
|
@@ -1,50 +1,50 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2025-12-
|
|
2
|
+
"generated": "2025-12-09T04:43:32.000Z",
|
|
3
3
|
"voices": [
|
|
4
4
|
{
|
|
5
5
|
"voice": "Adam",
|
|
6
6
|
"name": "adam",
|
|
7
7
|
"audioFile": "narration-adam.mp3",
|
|
8
8
|
"timingFile": "narration-adam-timing.json",
|
|
9
|
-
"duration":
|
|
10
|
-
"wordCount":
|
|
11
|
-
"audioSize":
|
|
9
|
+
"duration": 507.543,
|
|
10
|
+
"wordCount": 875,
|
|
11
|
+
"audioSize": 8121409
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
14
|
"voice": "Mark",
|
|
15
15
|
"name": "mark",
|
|
16
16
|
"audioFile": "narration-mark.mp3",
|
|
17
17
|
"timingFile": "narration-mark-timing.json",
|
|
18
|
-
"duration":
|
|
19
|
-
"wordCount":
|
|
20
|
-
"audioSize":
|
|
18
|
+
"duration": 440.671,
|
|
19
|
+
"wordCount": 875,
|
|
20
|
+
"audioSize": 7051434
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
23
|
"voice": "Hope",
|
|
24
24
|
"name": "hope",
|
|
25
25
|
"audioFile": "narration-hope.mp3",
|
|
26
26
|
"timingFile": "narration-hope-timing.json",
|
|
27
|
-
"duration":
|
|
28
|
-
"wordCount":
|
|
29
|
-
"audioSize":
|
|
27
|
+
"duration": 407.181,
|
|
28
|
+
"wordCount": 875,
|
|
29
|
+
"audioSize": 6515610
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
32
|
"voice": "Creature",
|
|
33
33
|
"name": "creature",
|
|
34
34
|
"audioFile": "narration-creature.mp3",
|
|
35
35
|
"timingFile": "narration-creature-timing.json",
|
|
36
|
-
"duration":
|
|
37
|
-
"wordCount":
|
|
38
|
-
"audioSize":
|
|
36
|
+
"duration": 620.62,
|
|
37
|
+
"wordCount": 875,
|
|
38
|
+
"audioSize": 9930755
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"voice": "Gaming",
|
|
42
42
|
"name": "gaming",
|
|
43
43
|
"audioFile": "narration-gaming.mp3",
|
|
44
44
|
"timingFile": "narration-gaming-timing.json",
|
|
45
|
-
"duration":
|
|
46
|
-
"wordCount":
|
|
47
|
-
"audioSize":
|
|
45
|
+
"duration": 845.811,
|
|
46
|
+
"wordCount": 875,
|
|
47
|
+
"audioSize": 13533563
|
|
48
48
|
}
|
|
49
49
|
]
|
|
50
50
|
}
|