@knowsuchagency/fulcrum 4.5.2 → 4.5.3
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/bin/fulcrum.js +5 -5
- package/package.json +1 -1
- package/server/index.js +2 -2
package/bin/fulcrum.js
CHANGED
|
@@ -45277,7 +45277,7 @@ var registerCopierTools = (server, client) => {
|
|
|
45277
45277
|
templateSource: exports_external.string().describe("Template source: a repository ID, local path, or git URL"),
|
|
45278
45278
|
outputPath: exports_external.string().describe("Absolute path where the new project will be created"),
|
|
45279
45279
|
projectName: exports_external.string().describe("Name for the new project"),
|
|
45280
|
-
answers: exports_external.record(exports_external.unknown()).describe("Answers to the template questions (from get_template_questions)"),
|
|
45280
|
+
answers: exports_external.record(exports_external.string(), exports_external.unknown()).describe("Answers to the template questions (from get_template_questions)"),
|
|
45281
45281
|
trust: exports_external.optional(exports_external.boolean()).describe("Trust template for unsafe features like tasks and migrations (default: true)"),
|
|
45282
45282
|
existingProjectId: exports_external.optional(exports_external.string()).describe("Link to an existing project instead of creating a new one")
|
|
45283
45283
|
}, async ({ templateSource, outputPath, projectName, answers, trust, existingProjectId }) => {
|
|
@@ -46828,7 +46828,7 @@ async function runMcpServer(urlOverride, portOverride) {
|
|
|
46828
46828
|
const client = new FulcrumClient(urlOverride, portOverride);
|
|
46829
46829
|
const server = new McpServer({
|
|
46830
46830
|
name: "fulcrum",
|
|
46831
|
-
version: "4.5.
|
|
46831
|
+
version: "4.5.3"
|
|
46832
46832
|
});
|
|
46833
46833
|
registerTools(server, client);
|
|
46834
46834
|
const transport = new StdioServerTransport;
|
|
@@ -49177,7 +49177,7 @@ var marketplace_default = `{
|
|
|
49177
49177
|
"name": "fulcrum",
|
|
49178
49178
|
"source": "./",
|
|
49179
49179
|
"description": "Task orchestration for Claude Code",
|
|
49180
|
-
"version": "4.5.
|
|
49180
|
+
"version": "4.5.3",
|
|
49181
49181
|
"skills": [
|
|
49182
49182
|
"./skills/fulcrum"
|
|
49183
49183
|
],
|
|
@@ -49200,7 +49200,7 @@ var marketplace_default = `{
|
|
|
49200
49200
|
var plugin_default = `{
|
|
49201
49201
|
"name": "fulcrum",
|
|
49202
49202
|
"description": "Fulcrum task orchestration for Claude Code",
|
|
49203
|
-
"version": "4.5.
|
|
49203
|
+
"version": "4.5.3",
|
|
49204
49204
|
"author": {
|
|
49205
49205
|
"name": "Fulcrum"
|
|
49206
49206
|
},
|
|
@@ -50306,7 +50306,7 @@ function compareVersions(v1, v2) {
|
|
|
50306
50306
|
var package_default = {
|
|
50307
50307
|
name: "@knowsuchagency/fulcrum",
|
|
50308
50308
|
private: true,
|
|
50309
|
-
version: "4.5.
|
|
50309
|
+
version: "4.5.3",
|
|
50310
50310
|
description: "Harness Attention. Orchestrate Agents. Ship.",
|
|
50311
50311
|
license: "PolyForm-Perimeter-1.0.0",
|
|
50312
50312
|
type: "module",
|
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -1257559,7 +1257559,7 @@ var registerCopierTools = (server2, client3) => {
|
|
|
1257559
1257559
|
templateSource: exports_external.string().describe("Template source: a repository ID, local path, or git URL"),
|
|
1257560
1257560
|
outputPath: exports_external.string().describe("Absolute path where the new project will be created"),
|
|
1257561
1257561
|
projectName: exports_external.string().describe("Name for the new project"),
|
|
1257562
|
-
answers: exports_external.record(exports_external.unknown()).describe("Answers to the template questions (from get_template_questions)"),
|
|
1257562
|
+
answers: exports_external.record(exports_external.string(), exports_external.unknown()).describe("Answers to the template questions (from get_template_questions)"),
|
|
1257563
1257563
|
trust: exports_external.optional(exports_external.boolean()).describe("Trust template for unsafe features like tasks and migrations (default: true)"),
|
|
1257564
1257564
|
existingProjectId: exports_external.optional(exports_external.string()).describe("Link to an existing project instead of creating a new one")
|
|
1257565
1257565
|
}, async ({ templateSource, outputPath, projectName, answers, trust, existingProjectId }) => {
|
|
@@ -1259903,7 +1259903,7 @@ mcpRoutes.all("/", async (c2) => {
|
|
|
1259903
1259903
|
});
|
|
1259904
1259904
|
const server2 = new McpServer({
|
|
1259905
1259905
|
name: "fulcrum",
|
|
1259906
|
-
version: "4.5.
|
|
1259906
|
+
version: "4.5.3"
|
|
1259907
1259907
|
});
|
|
1259908
1259908
|
const client3 = new FulcrumClient(`http://localhost:${port}`);
|
|
1259909
1259909
|
registerTools(server2, client3);
|