@iodes/releasekit 0.1.0 → 0.1.2

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 (84) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +306 -110
  3. package/dist/cli.js +7 -5
  4. package/dist/content.d.ts +8 -0
  5. package/dist/content.js +5 -3
  6. package/dist/export.js +4 -3
  7. package/dist/git.d.ts +17 -6
  8. package/dist/git.js +9 -9
  9. package/dist/images.d.ts +14 -5
  10. package/dist/images.js +32 -8
  11. package/dist/model.d.ts +29 -19
  12. package/dist/model.js +27 -8
  13. package/dist/project.d.ts +1 -2
  14. package/dist/project.js +7 -12
  15. package/dist/prompts.d.ts +2 -2
  16. package/dist/prompts.js +24 -16
  17. package/dist/schema-export.js +9 -2
  18. package/dist/validate.js +10 -12
  19. package/examples/README.md +34 -14
  20. package/examples/backup-encryption/README.md +19 -0
  21. package/examples/backup-encryption/dark.png +0 -0
  22. package/examples/backup-encryption/dark.prompt.md +52 -0
  23. package/examples/backup-encryption/dimensions-edit.prompt.md +7 -0
  24. package/examples/backup-encryption/flat-render-requests.md +15 -0
  25. package/examples/backup-encryption/light.png +0 -0
  26. package/examples/backup-encryption/light.prompt.md +52 -0
  27. package/examples/backup-encryption/pair-review.md +18 -0
  28. package/examples/backup-encryption/scene.yaml +31 -0
  29. package/examples/connected-route/README.md +23 -0
  30. package/examples/connected-route/dark.png +0 -0
  31. package/examples/connected-route/dark.prompt.md +58 -0
  32. package/examples/connected-route/light.png +0 -0
  33. package/examples/connected-route/light.prompt.md +58 -0
  34. package/examples/connected-route/pair-review.md +22 -0
  35. package/examples/connected-route/render-requests.md +171 -0
  36. package/examples/connected-route/scene.yaml +59 -0
  37. package/examples/feature-briefs.yaml +96 -89
  38. package/examples/location-preferences/README.md +18 -0
  39. package/examples/location-preferences/dark.png +0 -0
  40. package/examples/location-preferences/dark.prompt.md +52 -0
  41. package/examples/location-preferences/light.png +0 -0
  42. package/examples/location-preferences/light.prompt.md +52 -0
  43. package/examples/location-preferences/pair-review.md +17 -0
  44. package/examples/location-preferences/scene.yaml +26 -0
  45. package/examples/provided-media/README.md +15 -0
  46. package/examples/provided-media/scene.yaml +22 -0
  47. package/examples/queue-action/README.md +15 -15
  48. package/examples/queue-action/alignment-edit.prompt.md +8 -8
  49. package/examples/queue-action/dark.prompt.md +58 -58
  50. package/examples/queue-action/light.prompt.md +58 -58
  51. package/examples/queue-action/pair-review.md +33 -33
  52. package/examples/queue-action/scene.yaml +41 -41
  53. package/examples/release-notes.en-US.json +56 -56
  54. package/examples/release-notes.ko-KR.json +56 -56
  55. package/examples/storage-breakdown/README.md +18 -0
  56. package/examples/storage-breakdown/dark.png +0 -0
  57. package/examples/storage-breakdown/dark.prompt.md +52 -0
  58. package/examples/storage-breakdown/light.png +0 -0
  59. package/examples/storage-breakdown/light.prompt.md +52 -0
  60. package/examples/storage-breakdown/pair-review.md +18 -0
  61. package/examples/storage-breakdown/scene.yaml +28 -0
  62. package/examples/tablet-reading/README.md +18 -0
  63. package/examples/tablet-reading/content-edit.prompt.md +7 -0
  64. package/examples/tablet-reading/dark.png +0 -0
  65. package/examples/tablet-reading/dark.prompt.md +52 -0
  66. package/examples/tablet-reading/light.png +0 -0
  67. package/examples/tablet-reading/light.prompt.md +52 -0
  68. package/examples/tablet-reading/pair-review.md +18 -0
  69. package/examples/tablet-reading/scene.yaml +29 -0
  70. package/kit/references/composition-recipes.md +89 -73
  71. package/kit/references/format.md +27 -24
  72. package/kit/references/media-sources.md +34 -0
  73. package/kit/references/theme-pairing.md +55 -53
  74. package/kit/references/visual-language.md +73 -69
  75. package/kit/references/workflow.md +90 -24
  76. package/kit/references/writing.md +27 -27
  77. package/kit/skills/releasekit-draft/SKILL.md +12 -10
  78. package/kit/skills/releasekit-image/SKILL.md +20 -16
  79. package/kit/skills/releasekit-review/SKILL.md +16 -12
  80. package/kit/skills/releasekit-translate/SKILL.md +14 -10
  81. package/package.json +54 -52
  82. package/schemas/bundle.schema.json +26 -1
  83. package/schemas/visual.schema.json +42 -0
  84. package/schemas/evidence.schema.json +0 -96
@@ -1,96 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "type": "object",
4
- "properties": {
5
- "schemaVersion": {
6
- "type": "number",
7
- "const": 1
8
- },
9
- "source": {
10
- "type": "object",
11
- "properties": {
12
- "fromRef": {
13
- "type": [
14
- "string",
15
- "null"
16
- ]
17
- },
18
- "fromSha": {
19
- "anyOf": [
20
- {
21
- "type": "string",
22
- "pattern": "^(?:[a-f0-9]{40}|[a-f0-9]{64})$"
23
- },
24
- {
25
- "type": "null"
26
- }
27
- ]
28
- },
29
- "toRef": {
30
- "type": "string"
31
- },
32
- "toSha": {
33
- "type": "string",
34
- "pattern": "^(?:[a-f0-9]{40}|[a-f0-9]{64})$"
35
- }
36
- },
37
- "required": [
38
- "fromRef",
39
- "fromSha",
40
- "toRef",
41
- "toSha"
42
- ],
43
- "additionalProperties": false
44
- },
45
- "commits": {
46
- "type": "array",
47
- "items": {
48
- "type": "object",
49
- "properties": {
50
- "sha": {
51
- "type": "string",
52
- "pattern": "^(?:[a-f0-9]{40}|[a-f0-9]{64})$"
53
- },
54
- "subject": {
55
- "type": "string"
56
- }
57
- },
58
- "required": [
59
- "sha",
60
- "subject"
61
- ],
62
- "additionalProperties": false
63
- }
64
- },
65
- "files": {
66
- "type": "array",
67
- "items": {
68
- "type": "object",
69
- "properties": {
70
- "status": {
71
- "type": "string"
72
- },
73
- "path": {
74
- "type": "string"
75
- },
76
- "oldPath": {
77
- "type": "string"
78
- }
79
- },
80
- "required": [
81
- "status",
82
- "path"
83
- ],
84
- "additionalProperties": false
85
- }
86
- }
87
- },
88
- "required": [
89
- "schemaVersion",
90
- "source",
91
- "commits",
92
- "files"
93
- ],
94
- "additionalProperties": false,
95
- "$id": "urn:releasekit:evidence:1"
96
- }