@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.
- package/LICENSE +21 -21
- package/README.md +306 -110
- package/dist/cli.js +7 -5
- package/dist/content.d.ts +8 -0
- package/dist/content.js +5 -3
- package/dist/export.js +4 -3
- package/dist/git.d.ts +17 -6
- package/dist/git.js +9 -9
- package/dist/images.d.ts +14 -5
- package/dist/images.js +32 -8
- package/dist/model.d.ts +29 -19
- package/dist/model.js +27 -8
- package/dist/project.d.ts +1 -2
- package/dist/project.js +7 -12
- package/dist/prompts.d.ts +2 -2
- package/dist/prompts.js +24 -16
- package/dist/schema-export.js +9 -2
- package/dist/validate.js +10 -12
- package/examples/README.md +34 -14
- package/examples/backup-encryption/README.md +19 -0
- package/examples/backup-encryption/dark.png +0 -0
- package/examples/backup-encryption/dark.prompt.md +52 -0
- package/examples/backup-encryption/dimensions-edit.prompt.md +7 -0
- package/examples/backup-encryption/flat-render-requests.md +15 -0
- package/examples/backup-encryption/light.png +0 -0
- package/examples/backup-encryption/light.prompt.md +52 -0
- package/examples/backup-encryption/pair-review.md +18 -0
- package/examples/backup-encryption/scene.yaml +31 -0
- package/examples/connected-route/README.md +23 -0
- package/examples/connected-route/dark.png +0 -0
- package/examples/connected-route/dark.prompt.md +58 -0
- package/examples/connected-route/light.png +0 -0
- package/examples/connected-route/light.prompt.md +58 -0
- package/examples/connected-route/pair-review.md +22 -0
- package/examples/connected-route/render-requests.md +171 -0
- package/examples/connected-route/scene.yaml +59 -0
- package/examples/feature-briefs.yaml +96 -89
- package/examples/location-preferences/README.md +18 -0
- package/examples/location-preferences/dark.png +0 -0
- package/examples/location-preferences/dark.prompt.md +52 -0
- package/examples/location-preferences/light.png +0 -0
- package/examples/location-preferences/light.prompt.md +52 -0
- package/examples/location-preferences/pair-review.md +17 -0
- package/examples/location-preferences/scene.yaml +26 -0
- package/examples/provided-media/README.md +15 -0
- package/examples/provided-media/scene.yaml +22 -0
- package/examples/queue-action/README.md +15 -15
- package/examples/queue-action/alignment-edit.prompt.md +8 -8
- package/examples/queue-action/dark.prompt.md +58 -58
- package/examples/queue-action/light.prompt.md +58 -58
- package/examples/queue-action/pair-review.md +33 -33
- package/examples/queue-action/scene.yaml +41 -41
- package/examples/release-notes.en-US.json +56 -56
- package/examples/release-notes.ko-KR.json +56 -56
- package/examples/storage-breakdown/README.md +18 -0
- package/examples/storage-breakdown/dark.png +0 -0
- package/examples/storage-breakdown/dark.prompt.md +52 -0
- package/examples/storage-breakdown/light.png +0 -0
- package/examples/storage-breakdown/light.prompt.md +52 -0
- package/examples/storage-breakdown/pair-review.md +18 -0
- package/examples/storage-breakdown/scene.yaml +28 -0
- package/examples/tablet-reading/README.md +18 -0
- package/examples/tablet-reading/content-edit.prompt.md +7 -0
- package/examples/tablet-reading/dark.png +0 -0
- package/examples/tablet-reading/dark.prompt.md +52 -0
- package/examples/tablet-reading/light.png +0 -0
- package/examples/tablet-reading/light.prompt.md +52 -0
- package/examples/tablet-reading/pair-review.md +18 -0
- package/examples/tablet-reading/scene.yaml +29 -0
- package/kit/references/composition-recipes.md +89 -73
- package/kit/references/format.md +27 -24
- package/kit/references/media-sources.md +34 -0
- package/kit/references/theme-pairing.md +55 -53
- package/kit/references/visual-language.md +73 -69
- package/kit/references/workflow.md +90 -24
- package/kit/references/writing.md +27 -27
- package/kit/skills/releasekit-draft/SKILL.md +12 -10
- package/kit/skills/releasekit-image/SKILL.md +20 -16
- package/kit/skills/releasekit-review/SKILL.md +16 -12
- package/kit/skills/releasekit-translate/SKILL.md +14 -10
- package/package.json +54 -52
- package/schemas/bundle.schema.json +26 -1
- package/schemas/visual.schema.json +42 -0
- 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
|
-
}
|