Plugin Claude Code
Plugin marketplace listing 1 plugin: ideate.
Plugin Claude Code
Plugin marketplace listing 1 plugin: ideate.
Plugin Claude Code
ideate — a composable process framework for Claude Code: an append-only process record, a dependency-ordered work board, and gated steering, with skills, agents, hooks, and CLIs that drive an autopilot loop from idea to verified work.
MCP server Claude CodeCodexCursor +2
MCP server "ideate" as configured in ideate-ai/ideate. Launched with sh ${CLAUDE_PLUGIN_ROOT}/bin/ideate-mcp.
Agent
Surveys an existing codebase (analyze mode) or designs a new system (design mode). Returns a structured design brief as prose. Read-only — it never writes artifacts, edits code, or calls board/record tools; the invoking skill records what it returns.
Agent
Reviews a code change for correctness, security, and quality. Returns severity-classified findings. Read-only — no MCP tools; reads board/record evidence via the ideate CLIs; the invoking skill records the findings it accepts.
Agent
Breaks a goal or design into a set of independently-executable work items with explicit dependency and containment edges. Returns a structured item list as JSON; the invoking skill creates the board items. Read-only.
Agent
Keeps the steering store (guiding principles, constraints, policies) coherent — spotting contradictions, redundancy, and drift, and proposing precise amendments. Returns proposed steering changes; the invoking skill applies them via steeringput.
Agent
Finds what is missing rather than what is wrong — unhandled cases, absent tests, unaddressed requirements, second consumers of a changed interface. Returns gap findings. Read-only; the invoking skill records them.
Agent
Composes a concise, recall-shaped narrative of what happened in a cycle or session — decisions, findings, what was built, what's next. Returns the prose; the invoking skill appends it to the process record.
Agent
Stands in for the user during unattended autopilot runs — makes the judgment call an Andon escalation would otherwise interrupt a human for, within the project's stated principles and appetite. Returns a decision with rationale; autopilot records it.
Agent
Investigates an open question by reading code, docs, and the web, and returns concise sourced findings with a recommendation. Read-only — returns notes; the invoking skill decides what to record.
Agent
Checks whether completed work actually satisfies its spec, the guiding principles, and the policies in steering. Returns adherence findings. Read-only; the invoking skill records them.
Agent
Implements exactly one board work item to completion — writes code, runs tests, verifies. The only agent with edit tools. Returns a completion report; the invoking skill owns the claim/complete board transitions.
Hook
Runs when a session starts on startup, resume and clear, executing session-start.mjs. From ideate-ai/ideate.
Hook
Runs when a subagent starts, executing subagent-start.mjs. From ideate-ai/ideate.
Hook
Runs when a session ends, executing session-end.mjs. From ideate-ai/ideate.
Hook
Runs before the context is compacted, executing pre-compact.mjs. From ideate-ai/ideate.
Hook
Runs when a subagent finishes, executing subagent-stop.mjs. From ideate-ai/ideate.
Hook
Runs after a tool call finishes for Bash tool calls, executing commit-boundary.mjs. From ideate-ai/ideate.
Hook
Runs when a task is marked completed, executing task-completed.mjs. From ideate-ai/ideate.
Skill Claude CodeCodex
Autonomous SDLC loop that runs execute → review → refine over the work board until the project converges — zero open claimable work and no unresolved critical/significant findings — or a cycle/appetite limit is hit. Unattended: Andon escalations go to a proxy-human agent instead of stopping for the user.
Skill Claude CodeCodex
Execute the work board produced by init/refine. Claims claimable items under lease-fenced discipline, delegates each to a worker subagent, runs incremental review, handles findings by severity, and flags unresolvable issues to the user via an Andon stop. Builds work; does not design or re-plan.
Skill Claude CodeCodex
Set up an ideate project. Creates the workspace, enables the steering store, captures the project's intent and guiding principles, and — for an existing codebase — surveys the current architecture. It lays the foundation; it does NOT create work items. Decomposing ideas into work is refine's job.
Skill Claude CodeCodex
Decompose an idea into actionable work. The first working step after init and the recurring planning engine: takes a described goal, change, or set of review findings, analyzes it against the existing code and steering, and produces board work items with dependency and containment edges. Plans work; execute builds it.