@hegemonart/get-design-done 1.59.6 → 1.59.7
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +22 -0
- package/README.md +4 -13
- package/docs/i18n/README.de.md +210 -527
- package/docs/i18n/README.fr.md +201 -518
- package/docs/i18n/README.it.md +209 -526
- package/docs/i18n/README.ja.md +207 -524
- package/docs/i18n/README.ko.md +208 -525
- package/docs/i18n/README.zh-CN.md +213 -551
- package/package.json +1 -1
- package/scripts/lib/install/doctor-codex-plugin.cjs +1 -1
- package/scripts/lib/install/doctor-cursor-marketplace.cjs +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hegemonart/get-design-done",
|
|
3
|
-
"version": "1.59.
|
|
3
|
+
"version": "1.59.7",
|
|
4
4
|
"description": "A design-quality pipeline for AI coding agents: brief, explore, plan, design, and verify UI work against your design system.",
|
|
5
5
|
"author": "Hegemon",
|
|
6
6
|
"homepage": "https://github.com/hegemonart/get-design-done",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
* path is COMPUTED (pure string composition via `os.homedir()`), NOT
|
|
21
21
|
* verified. The maintainer verifies the cache after running the field-
|
|
22
22
|
* test command on a Codex-installed machine (see
|
|
23
|
-
*
|
|
23
|
+
* the maintainer field-test notes).
|
|
24
24
|
*
|
|
25
25
|
* Phase 28.8 D-14: the `.claude-plugin/marketplace.json` catalog file is
|
|
26
26
|
* reused from Claude Code's marketplace per Codex's legacy-compatible
|
|
@@ -137,14 +137,14 @@ function readJsonFileSafe(filePath) {
|
|
|
137
137
|
function buildGuidance(r) {
|
|
138
138
|
switch (r.state) {
|
|
139
139
|
case MARKETPLACE_STATES.NOT_SUBMITTED:
|
|
140
|
-
return 'submit publisher application at cursor.com/marketplace/publish
|
|
140
|
+
return 'submit publisher application at cursor.com/marketplace/publish';
|
|
141
141
|
case MARKETPLACE_STATES.SUBMITTED_PENDING:
|
|
142
142
|
return 'await Cursor team review approval; no published SLA per D-16';
|
|
143
143
|
case MARKETPLACE_STATES.APPROVED_PUBLISHED:
|
|
144
144
|
return 'plugin is live at ' + (r.marketplaceUrl || '<marketplace-url>');
|
|
145
145
|
case MARKETPLACE_STATES.REJECTED:
|
|
146
146
|
return 'address rejection reason: ' + (r.rejectionReason || '<unspecified>')
|
|
147
|
-
+ '; re-submit
|
|
147
|
+
+ '; re-submit at cursor.com/marketplace/publish';
|
|
148
148
|
default:
|
|
149
149
|
return '';
|
|
150
150
|
}
|