promptgraph-mcp 2.9.41 → 2.9.42
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/marketplace.js +2 -1
- package/package.json +1 -1
package/marketplace.js
CHANGED
|
@@ -590,7 +590,8 @@ export async function publishBundle(bundleDef) {
|
|
|
590
590
|
try { fs.unlinkSync(tmpFile); } catch {}
|
|
591
591
|
|
|
592
592
|
if (gh.no_gh) {
|
|
593
|
-
const
|
|
593
|
+
const compactJson = JSON.stringify(def);
|
|
594
|
+
const issueUrl = `${REGISTRY_ISSUES}?title=Bundle%3A+${encodeURIComponent(def.name)}&body=${encodeURIComponent('Bundle definition:\n\n```json\n' + compactJson + '\n```')}`;
|
|
594
595
|
const actionNote = def.repo_url ? `\n\nNote: Your repo will be validated by CI (GitHub Actions) after submission.\nRun locally: node validate-repo-action.js ${def.repo_url}` : '';
|
|
595
596
|
return {
|
|
596
597
|
success: true,
|