From majestic-engineer
Presents execution options for blueprint plans: build as single task, break into tasks with backlog creation, or create epic; delegates to commands and offers build start.
How this skill is triggered — by the user, by Claude, or both
Slash command
/majestic-engineer:blueprint-executionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Present execution options after plan is written and delegate to appropriate commands.
Present execution options after plan is written and delegate to appropriate commands.
plan_path: string # e.g., docs/plans/20260114_auth.md
AskUserQuestion:
question: "Blueprint ready. How do you want to proceed?"
options:
- "Build as single task" → Step 2
- "Break into small tasks" → Step 3
- "Create as single epic" → Step 4
Execute entire plan as one task:
/majestic:build-task "{plan_path}"
End workflow.
Decompose into small tasks:
Task(majestic-engineer:plan:task-breakdown, prompt="Plan: {plan_path}")
Then ask about task creation:
AskUserQuestion:
question: "Tasks added to plan. Create in backlog?"
options:
- "Yes, create tasks" → Skill(skill: "backlog-manager") for each task
- "No, just the plan" → Step 5
After tasks created, go to Step 5.
Create single backlog item:
Skill(skill: "backlog-manager")
Update plan with task reference, go to Step 5.
AskUserQuestion:
question: "Start building?"
options:
- "Build all tasks now" → /majestic:run-blueprint "{plan_path}"
- "Build with ralph" → /majestic-ralph:ralph-loop "/majestic:run-blueprint {plan_path}"
- "Done for now" → End workflow
execution_type: "single_task" | "breakdown" | "epic"
build_started: boolean
npx claudepluginhub majesticlabs-dev/majestic-marketplace --plugin majestic-engineerExecutes a Strikethroo plan blueprint within a repository — resolves the plan, validates or auto-generates tasks, runs phases with lifecycle hooks, enforces validation gates, and archives completed plans.
Generates step-by-step construction plans for multi-session, multi-agent projects where each step is independently executable by a fresh agent. Invoke with /blueprint.
Orchestrates plan-driven builds by reading plan.json or requirements.md and dispatching workers. Use when executing /execute or running a blueprint plan.