@girardmedia/bootspring 2.3.0 → 2.3.2
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-commands/build.md +21 -11
- package/dist/cli/index.cjs +2738 -1107
- package/dist/core.js +1 -1
- package/dist/mcp-server.js +32 -2
- package/package.json +1 -1
package/dist/core.js
CHANGED
|
@@ -1600,7 +1600,7 @@ var require_package = __commonJS({
|
|
|
1600
1600
|
"package.json"(exports2, module2) {
|
|
1601
1601
|
module2.exports = {
|
|
1602
1602
|
name: "@girardmedia/bootspring",
|
|
1603
|
-
version: "2.3.
|
|
1603
|
+
version: "2.3.2",
|
|
1604
1604
|
description: "Thin client for Bootspring cloud MCP, hosted agents, and paywalled workflow intelligence",
|
|
1605
1605
|
keywords: [
|
|
1606
1606
|
"ai",
|
package/dist/mcp-server.js
CHANGED
|
@@ -45,7 +45,7 @@ var require_package = __commonJS({
|
|
|
45
45
|
"package.json"(exports2, module2) {
|
|
46
46
|
module2.exports = {
|
|
47
47
|
name: "@girardmedia/bootspring",
|
|
48
|
-
version: "2.3.
|
|
48
|
+
version: "2.3.2",
|
|
49
49
|
description: "Thin client for Bootspring cloud MCP, hosted agents, and paywalled workflow intelligence",
|
|
50
50
|
keywords: [
|
|
51
51
|
"ai",
|
|
@@ -2148,6 +2148,33 @@ var FALLBACK_TOOLS = [
|
|
|
2148
2148
|
},
|
|
2149
2149
|
required: ["action"]
|
|
2150
2150
|
}
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
name: "bootspring_build",
|
|
2154
|
+
description: "Autonomous build system. Get tasks, mark complete, check progress. Use action=next to get next task, action=done to mark complete, action=status for progress.",
|
|
2155
|
+
inputSchema: {
|
|
2156
|
+
type: "object",
|
|
2157
|
+
properties: {
|
|
2158
|
+
action: { type: "string", enum: ["next", "current", "done", "skip", "status", "list", "init", "sync", "advance"] },
|
|
2159
|
+
reason: { type: "string" },
|
|
2160
|
+
autoDone: { type: "boolean" }
|
|
2161
|
+
},
|
|
2162
|
+
required: ["action"]
|
|
2163
|
+
}
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
name: "bootspring_seed",
|
|
2167
|
+
description: "Manage seed configuration and project scaffolding. Setup input folders, generate docs, scaffold projects.",
|
|
2168
|
+
inputSchema: {
|
|
2169
|
+
type: "object",
|
|
2170
|
+
properties: {
|
|
2171
|
+
action: { type: "string", enum: ["setup", "init", "generate", "scaffold", "status", "export"] },
|
|
2172
|
+
preset: { type: "string" },
|
|
2173
|
+
format: { type: "string", enum: ["json", "yaml"] },
|
|
2174
|
+
dryRun: { type: "boolean" }
|
|
2175
|
+
},
|
|
2176
|
+
required: ["action"]
|
|
2177
|
+
}
|
|
2151
2178
|
}
|
|
2152
2179
|
];
|
|
2153
2180
|
var FALLBACK_RESOURCES = [
|
|
@@ -2193,7 +2220,10 @@ async function resolveTools() {
|
|
|
2193
2220
|
}
|
|
2194
2221
|
try {
|
|
2195
2222
|
const response = await api.listMcpTools();
|
|
2196
|
-
|
|
2223
|
+
const apiTools = Array.isArray(response) ? response : response.tools || [];
|
|
2224
|
+
const apiNames = new Set(apiTools.map((t) => t.name));
|
|
2225
|
+
const missing = FALLBACK_TOOLS.filter((t) => !apiNames.has(t.name));
|
|
2226
|
+
return [...apiTools, ...missing];
|
|
2197
2227
|
} catch {
|
|
2198
2228
|
return FALLBACK_TOOLS;
|
|
2199
2229
|
}
|