@girardmedia/bootspring 3.0.0 → 3.2.0
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/assets/claude-commands/build.md +2 -0
- package/dist/cli/index.js +691 -144
- package/dist/core/index.d.ts +1 -1
- package/dist/core.js +10 -8
- package/dist/mcp-server.js +409 -65
- package/package.json +1 -1
- package/scripts/postinstall.cjs +7 -1
package/package.json
CHANGED
package/scripts/postinstall.cjs
CHANGED
|
@@ -33,7 +33,13 @@ function resolveCommandsSource() {
|
|
|
33
33
|
|
|
34
34
|
const COMMANDS_SOURCE = resolveCommandsSource();
|
|
35
35
|
|
|
36
|
-
const BOOTSPRING_SKILL_CONTENT =
|
|
36
|
+
const BOOTSPRING_SKILL_CONTENT = `---
|
|
37
|
+
name: bootspring
|
|
38
|
+
description: Bootspring MCP Operating Skill
|
|
39
|
+
version: 1.0.0
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
# Bootspring MCP Operating Skill
|
|
37
43
|
|
|
38
44
|
Use Bootspring MCP tools as the primary workflow for any project with Bootspring configured.
|
|
39
45
|
These tools work via MCP protocol with any assistant: Claude Code, Codex, Gemini CLI, or others.
|