diff --git a/src/modules/bmb/workflows-legacy/edit-module/instructions.md b/src/modules/bmb/workflows-legacy/edit-module/instructions.md index a6f20aab..364daf39 100644 --- a/src/modules/bmb/workflows-legacy/edit-module/instructions.md +++ b/src/modules/bmb/workflows-legacy/edit-module/instructions.md @@ -18,7 +18,6 @@ - Load README.md - List all agents in agents/ directory - List all workflows in workflows/ directory -- Check for installer files (if in src/modules/) - Identify any custom structure or patterns diff --git a/src/modules/bmb/workflows/create-agent/steps/step-01-brainstorm.md b/src/modules/bmb/workflows/create-agent/steps/step-01-brainstorm.md index 7a48db09..909876a6 100644 --- a/src/modules/bmb/workflows/create-agent/steps/step-01-brainstorm.md +++ b/src/modules/bmb/workflows/create-agent/steps/step-01-brainstorm.md @@ -90,7 +90,7 @@ Wait for clear user response (yes/no or y/n). - Load brainstorming workflow: `{brainstormWorkflow}` - Pass context data: `{brainstormContext}` -- Execute brainstorming session +- Execute brainstorming session scoped specifically to brainstorming a new agent. - Capture all brainstorming output for next step - Return to this step after brainstorming completes diff --git a/src/modules/bmb/workflows/create-agent/workflow.md b/src/modules/bmb/workflows/create-agent/workflow.md index 7501c796..0e133dd0 100644 --- a/src/modules/bmb/workflows/create-agent/workflow.md +++ b/src/modules/bmb/workflows/create-agent/workflow.md @@ -51,32 +51,8 @@ This uses **step-file architecture** for disciplined execution: Load and read full config from `{project-root}/_bmad/bmb/config.yaml`: -- `project_name`, `output_folder`, `user_name`, `communication_language`, `document_output_language` +- `project_name`, `user_name`, `bmad_memory`, `communication_language`, `document_output_language`, `bmb_creations_output_folder` ### 2. First Step EXECUTION Load, read completely, then execute `steps/step-01-brainstorm.md` to begin the workflow. - ---- - -## PATH DEFINITIONS - -# Technical documentation for agent building - -agent_compilation: "{project-root}/\_bmad/bmb/docs/agents/agent-compilation.md" -understanding_agent_types: "{project-root}/\_bmad/bmb/docs/agents/understanding-agent-types.md" -simple_agent_architecture: "{project-root}/\_bmad/bmb/docs/agents/simple-agent-architecture.md" -expert_agent_architecture: "{project-root}/\_bmad/bmb/docs/agents/expert-agent-architecture.md" -module_agent_architecture: "{project-root}/\_bmad/bmb/docs/agents/module-agent-architecture.md" -agent_menu_patterns: "{project-root}/\_bmad/bmb/docs/agents/agent-menu-patterns.md" - -# Data and templates - -communication_presets: "{workflow_path}/data/communication-presets.csv" -brainstorm_context: "{workflow_path}/data/brainstorm-context.md" - -# Reference examples - -simple_agent_examples: "{project-root}/bmb/reference/agents/simple-examples/" -expert_agent_examples: "{project-root}/bmb/reference/agents/expert-examples/" -module_agent_examples: "{project-root}/bmb/reference/agents/module-examples/"