@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hegemonart/get-design-done",
3
- "version": "1.59.6",
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
- * docs/codex-plugin-field-test.md).
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; see docs/cursor-marketplace-field-test.md';
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 per docs/cursor-marketplace-field-test.md';
147
+ + '; re-submit at cursor.com/marketplace/publish';
148
148
  default:
149
149
  return '';
150
150
  }