IntelliPlan

createPlanningConfig

Generate a customizable JSON configuration file for planning processes, defining steps, instructions, prompts, and order to streamline project execution with the IntelliPlan server.

Instructions

Creates a JSON configuration file for the planEpic tool, allowing customization of planning steps and process

Input Schema

NameRequiredDescriptionDefault
configIdNoID of the configuration being built
currentStepYesCurrent step in the configuration building process
partialConfigNoPartial configuration built so far
stepsCompletedNoIDs of steps that have been completed

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "configId": { "description": "ID of the configuration being built", "type": "string" }, "currentStep": { "description": "Current step in the configuration building process", "minimum": 0, "type": "integer" }, "partialConfig": { "additionalProperties": false, "description": "Partial configuration built so far", "properties": { "defaultMaxDepth": { "minimum": 1, "type": "integer" }, "description": { "type": "string" }, "includeTestStrategy": { "type": "boolean" }, "name": { "type": "string" }, "outputPath": { "description": "FULL path where the config should be saved (e.g., '/path/to/config/myconfig.json')", "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "description": { "description": "Description of what this step accomplishes", "type": "string" }, "id": { "description": "Unique identifier for this step", "type": "string" }, "instructions": { "description": "Instructions for this planning step", "items": { "type": "string" }, "type": "array" }, "name": { "description": "Display name for this step", "type": "string" }, "nextStepPrompt": { "description": "Prompt for moving to the next step", "type": "string" }, "order": { "description": "Order in the planning sequence (0-based)", "minimum": 0, "type": "integer" }, "requiresPreviousStepData": { "description": "Whether this step requires data from previous steps", "type": "boolean" }, "thinkingPrompts": { "description": "Thinking prompts to aid reflection", "items": { "type": "string" }, "type": "array" } }, "required": [ "id", "name", "description", "order", "instructions", "thinkingPrompts", "nextStepPrompt", "requiresPreviousStepData" ], "type": "object" }, "type": "array" } }, "type": "object" }, "stepsCompleted": { "description": "IDs of steps that have been completed", "items": { "type": "string" }, "type": "array" } }, "required": [ "currentStep" ], "type": "object" }

You must be authenticated.

Other Tools from IntelliPlan

Related Tools

ID: v53917zvgp