set-prompt 0.5.3 → 0.5.4
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/CHANGELOG.md +8 -0
- package/dist/index.js +11 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.5.4] - 2026-04-13
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- `SET_PROMPT_GUIDE` template: Structure section updated to include `.mcp.json`, `.app.json`, `.claude-plugin/`, `.codex-plugin/`
|
|
11
|
+
- Plugin manifest templates (`ensureClaudePluginManifest`, `ensureCodexPluginManifest`) — removed local repo path from `description` field to prevent leaking machine-specific paths into git history
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
7
15
|
## [0.5.3] - 2026-04-13
|
|
8
16
|
|
|
9
17
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -278,9 +278,15 @@ This is a shared prompt repository linked to various AI agents via \`set-prompt
|
|
|
278
278
|
\u251C\u2500\u2500 agents/ # Agent definitions (Claude Code, Cursor)
|
|
279
279
|
\u2502 \u2514\u2500\u2500 <agent-name>/
|
|
280
280
|
\u2502 \u2514\u2500\u2500 AGENT.md
|
|
281
|
-
\
|
|
282
|
-
|
|
283
|
-
|
|
281
|
+
\u251C\u2500\u2500 rules/ # Rule definitions (Cursor)
|
|
282
|
+
\u2502 \u2514\u2500\u2500 <rule-name>/
|
|
283
|
+
\u2502 \u2514\u2500\u2500 RULE.md
|
|
284
|
+
\u251C\u2500\u2500 .mcp.json # MCP server configurations
|
|
285
|
+
\u251C\u2500\u2500 .app.json # Application configurations
|
|
286
|
+
\u251C\u2500\u2500 .claude-plugin/
|
|
287
|
+
\u2502 \u2514\u2500\u2500 plugin.json # Claude Code plugin manifest
|
|
288
|
+
\u2514\u2500\u2500 .codex-plugin/
|
|
289
|
+
\u2514\u2500\u2500 plugin.json # Codex plugin manifest
|
|
284
290
|
\`\`\`
|
|
285
291
|
|
|
286
292
|
## Usage
|
|
@@ -651,7 +657,7 @@ var ensureClaudePluginManifest = (repoPath) => {
|
|
|
651
657
|
fs2.writeFileSync(jsonPath, JSON.stringify({
|
|
652
658
|
name: PLUGIN_NAME,
|
|
653
659
|
version: "1.0.0",
|
|
654
|
-
description:
|
|
660
|
+
description: "Managed by set-prompt"
|
|
655
661
|
}, null, 4), { encoding: "utf-8" });
|
|
656
662
|
};
|
|
657
663
|
var ensureCodexPluginManifest = (repoPath) => {
|
|
@@ -661,7 +667,7 @@ var ensureCodexPluginManifest = (repoPath) => {
|
|
|
661
667
|
fs2.writeFileSync(jsonPath, JSON.stringify({
|
|
662
668
|
name: PLUGIN_NAME,
|
|
663
669
|
version: "1.0.0",
|
|
664
|
-
description:
|
|
670
|
+
description: "Managed by set-prompt",
|
|
665
671
|
skills: "./skills/",
|
|
666
672
|
mcpServers: "./.mcp.json",
|
|
667
673
|
apps: "./.app.json"
|