@hustle-together/api-dev-tools 3.0.0 → 3.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.
Files changed (37) hide show
  1. package/README.md +71 -0
  2. package/bin/cli.js +184 -14
  3. package/demo/audio/generate-all-narrations.js +124 -59
  4. package/demo/audio/generate-narration.js +120 -56
  5. package/demo/audio/narration-adam-timing.json +3086 -2077
  6. package/demo/audio/narration-adam.mp3 +0 -0
  7. package/demo/audio/narration-creature-timing.json +3094 -2085
  8. package/demo/audio/narration-creature.mp3 +0 -0
  9. package/demo/audio/narration-gaming-timing.json +3091 -2082
  10. package/demo/audio/narration-gaming.mp3 +0 -0
  11. package/demo/audio/narration-hope-timing.json +3072 -2063
  12. package/demo/audio/narration-hope.mp3 +0 -0
  13. package/demo/audio/narration-mark-timing.json +3090 -2081
  14. package/demo/audio/narration-mark.mp3 +0 -0
  15. package/demo/audio/voices-manifest.json +16 -16
  16. package/demo/workflow-demo.html +1528 -411
  17. package/hooks/api-workflow-check.py +2 -0
  18. package/hooks/enforce-deep-research.py +180 -0
  19. package/hooks/enforce-disambiguation.py +149 -0
  20. package/hooks/enforce-documentation.py +187 -0
  21. package/hooks/enforce-environment.py +249 -0
  22. package/hooks/enforce-refactor.py +187 -0
  23. package/hooks/enforce-research.py +93 -46
  24. package/hooks/enforce-schema.py +186 -0
  25. package/hooks/enforce-scope.py +156 -0
  26. package/hooks/enforce-tdd-red.py +246 -0
  27. package/hooks/enforce-verify.py +186 -0
  28. package/hooks/verify-after-green.py +136 -6
  29. package/package.json +2 -1
  30. package/scripts/collect-test-results.ts +404 -0
  31. package/scripts/extract-parameters.ts +483 -0
  32. package/scripts/generate-test-manifest.ts +520 -0
  33. package/templates/CLAUDE-SECTION.md +84 -0
  34. package/templates/api-dev-state.json +45 -5
  35. package/templates/api-test/page.tsx +315 -0
  36. package/templates/api-test/test-structure/route.ts +269 -0
  37. package/templates/settings.json +36 -0
Binary file
@@ -1,50 +1,50 @@
1
1
  {
2
- "generated": "2025-12-08T07:05:05.916Z",
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": 370.777,
10
- "wordCount": 694,
11
- "audioSize": 5932975
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": 338.688,
19
- "wordCount": 694,
20
- "audioSize": 5419721
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": 305.202,
28
- "wordCount": 694,
29
- "audioSize": 4883898
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": 466.627,
37
- "wordCount": 694,
38
- "audioSize": 7466885
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": 644.121,
46
- "wordCount": 694,
47
- "audioSize": 10306500
45
+ "duration": 845.811,
46
+ "wordCount": 875,
47
+ "audioSize": 13533563
48
48
  }
49
49
  ]
50
50
  }