Builtin Catalog

May 29, 2026 · View on GitHub

日本語

A comprehensive catalog of all builtin workflows and personas included with TAKT.

WorkflowRecommended Use
defaultStandard development workflow. Test-first with AI antipattern review and parallel review (architecture + supervisor). plan → write_tests → implement → AI antipattern review → parallel review → complete.
default-miniMini development workflow without tests. A lightweight variant of default with write_tests removed. plan → implement → AI antipattern review → parallel review → complete.
default-highFull-spec development workflow. Test-first with team-leader implementation, AI antipattern review with arbitration, 5-parallel review, and supervision. plan → write_tests → team-leader implement → AI review → 5-parallel review → fix → supervise → complete.
frontendFrontend-specialized development workflow with React/Next.js focused reviews and knowledge injection.
backendBackend-specialized development workflow with backend, security, and QA expert reviews.
dualFrontend + backend development workflow with team-leader implementation, architecture, frontend, security, QA reviews with fix loops.

All Builtin Workflows

Organized by category.

CategoryWorkflowDescription
🚀 Quick StartdefaultStandard development workflow. Test-first with AI antipattern review and parallel review (architecture + supervisor). plan → write_tests → implement → AI antipattern review → parallel review → complete.
default-miniMini development workflow without tests. A lightweight variant of default with write_tests removed. plan → implement → AI antipattern review → parallel review → complete.
default-highFull-spec development workflow. Test-first with team-leader implementation, AI antipattern review with arbitration, 5-parallel review, and supervision. plan → write_tests → team-leader implement → AI review → 5-parallel review → fix → supervise → complete.
frontendFrontend-specialized development workflow with React/Next.js focused reviews and knowledge injection.
backendBackend-specialized development workflow with backend, security, and QA expert reviews.
dualFrontend + backend development workflow: architecture, frontend, security, QA reviews with fix loops.
⚡ Minidefault-miniMini development workflow without tests. A lightweight variant of default with write_tests removed. plan → implement → AI antipattern review → parallel review → complete.
backend-cqrs-miniMini CQRS+ES workflow: plan -> implement -> parallel review (AI antipattern + supervisor) with CQRS+ES knowledge injection.
dual-miniMini dual workflow: plan -> implement -> parallel review (AI antipattern + expert supervisor) with frontend + backend knowledge injection.
dual-cqrs-miniMini CQRS+ES dual workflow: plan -> implement -> parallel review (AI antipattern + expert supervisor) with CQRS+ES knowledge injection.
🎨 FrontendfrontendFrontend-specialized development workflow with React/Next.js focused reviews and knowledge injection.
frontend-maintenance(Experimental) Frontend workflow for modifying existing products: maintenance-scoped plan/implement/test/fix/supervise that respects current conventions and keeps changes within scope. Can be heavy-handed today — use as a starting point and tune.
⚙️ BackendbackendBackend-specialized development workflow with backend, security, and QA expert reviews.
backend-cqrsCQRS+ES-specialized backend development workflow with CQRS+ES, security, and QA expert reviews.
🔧 DualdualFrontend + backend development workflow: architecture, frontend, security, QA reviews with fix loops.
dual-cqrsFrontend + backend development workflow (CQRS+ES specialized): CQRS+ES, frontend, security, QA reviews with fix loops.
🏗️ InfrastructureterraformTerraform IaC development workflow: plan → implement → parallel review → supervisor validation → fix → complete.
🔍 Reviewreview-defaultMulti-perspective code review: auto-detects PR/branch/working diff, reviews from 5 parallel perspectives (arch/security/QA/testing/requirements), outputs consolidated results.
review-fix-defaultMulti-perspective review + fix loop (architecture, security, QA, testing, requirements — 5 parallel reviewers with iterative fixes).
review-frontendFrontend-focused review (structure, modularization, component design, security, QA).
review-fix-frontendFrontend-focused review + fix loop (structure, modularization, component design, security, QA).
review-backendBackend-focused review (structure, modularization, hexagonal architecture, security, QA).
review-fix-backendBackend-focused review + fix loop (structure, modularization, hexagonal architecture, security, QA).
review-dualFrontend + backend focused review (structure, modularization, component design, security, QA).
review-fix-dualFrontend + backend focused review + fix loop (structure, modularization, component design, security, QA).
review-dual-cqrsFrontend + CQRS+ES focused review (structure, modularization, domain model, component design, security, QA).
review-fix-dual-cqrsFrontend + CQRS+ES focused review + fix loop (structure, modularization, domain model, component design, security, QA).
review-backend-cqrsCQRS+ES focused review (structure, modularization, domain model, security, QA).
review-fix-backend-cqrsCQRS+ES focused review + fix loop (structure, modularization, domain model, security, QA).
audit-unitUnit test audit. Enumerates behaviors and coverage gaps, produces an issue-ready report without modifying code.
audit-e2eE2E audit. Enumerates user flows and coverage gaps, produces an issue-ready report without modifying code.
audit-securityFull security audit. Reads every project file for security review.
audit-architectureArchitecture audit. Enumerates modules and boundaries, produces an issue-ready report without modifying code.
audit-architecture-frontendFrontend-focused architecture audit. Enumerates UI modules and boundaries.
audit-architecture-backendBackend-focused architecture audit. Enumerates service modules and boundaries.
audit-architecture-dualFull-stack architecture audit. Enumerates frontend/backend boundaries and cross-layer wiring.
🧪 Testingunit-testUnit test focused workflow: test analysis -> test implementation -> review -> fix.
e2e-testE2E test focused workflow: E2E analysis -> E2E implementation -> review -> fix (Vitest-based E2E flow).
🎵 TAKT Developmenttakt-defaultTAKT development workflow: plan → write tests → implement → AI antipattern review → 5-parallel review → fix → supervise → complete.
takt-default-refresh-allAll-step session: refresh comparison variant of the TAKT development workflow, intended to isolate conversation carry-over effects in Codex/Claude runs.
takt-default-refresh-fastRefresh-optimized variant of the TAKT development workflow. Keeps reasoning effort and loop rules unchanged, and adds session: refresh only to context-heavy steps such as write_tests, ai-antipattern-review-1st, reviewer steps, and fix.
takt-default-team-leaderTAKT development workflow with team leader: plan → write tests → team-leader implement → AI antipattern review → 5-parallel review → fix → supervise → complete.
review-fix-takt-defaultTAKT development code review + fix loop (5 parallel reviewers: architecture, security, QA, testing, requirements — with iterative fixes).
OthersresearchResearch workflow: planner -> digger -> supervisor. Autonomously executes research without asking questions.
deep-researchDeep research workflow: plan -> dig -> analyze -> supervise. Discovery-driven investigation that follows emerging questions with multi-perspective analysis.
magiDeliberation system inspired by Evangelion. Three AI personas (MELCHIOR, BALTHASAR, CASPER) analyze and vote.

Run takt to choose a workflow interactively.

Builtin Personas

PersonaDescription
plannerTask analysis, spec investigation, implementation planning
architect-plannerTask analysis and design planning: investigates code, resolves unknowns, creates implementation plans
coderFeature implementation, bug fixing
ai-antipattern-reviewerAI-specific antipattern review (non-existent APIs, incorrect assumptions, scope creep)
architecture-reviewerArchitecture and code quality review, spec compliance verification
frontend-reviewerFrontend (React/Next.js) code quality and best practices review
cqrs-es-reviewerCQRS+Event Sourcing architecture and implementation review
qa-reviewerTest coverage and quality assurance review
security-reviewerSecurity vulnerability assessment
conductorPhase 3 judgment specialist: reads reports/responses and outputs status tags
supervisorFinal validation, approval
dual-supervisorMulti-review integration validation and release readiness judgment
research-plannerResearch task planning and scope definition
research-analyzerResearch result interpretation and additional investigation planning
research-diggerDeep investigation and information gathering
research-supervisorResearch quality validation and completeness assessment
test-plannerTest strategy analysis and comprehensive test planning
testing-reviewerTesting-focused code review with integration test requirements analysis
requirements-reviewerRequirements specification and compliance review
terraform-coderTerraform IaC implementation
terraform-reviewerTerraform IaC review
melchiorMAGI deliberation system: MELCHIOR-1 (scientist perspective)
balthasarMAGI deliberation system: BALTHASAR-2 (mother perspective)
casperMAGI deliberation system: CASPER-3 (woman perspective)
pr-commenterPosts review findings as GitHub PR comments

Custom Personas

Create persona prompts as Markdown files in ~/.takt/personas/:

# ~/.takt/personas/my-reviewer.md

You are a code reviewer specialized in security.

## Role
- Check for security vulnerabilities
- Verify input validation
- Review authentication logic

Reference custom personas from workflow YAML via the personas section map:

personas:
  my-reviewer: ~/.takt/personas/my-reviewer.md

steps:
  - name: review
    persona: my-reviewer
    # ...

Per-persona Provider Overrides

Use persona_providers in ~/.takt/config.yaml to route specific personas to different providers without duplicating workflows. This allows you to run, for example, coding on Codex while keeping reviewers on Claude.

# ~/.takt/config.yaml
persona_providers:
  coder: codex                      # Run coder on Codex
  ai-antipattern-reviewer: claude   # Keep reviewers on Claude

This configuration applies globally to all workflows. Any step using the specified persona will be routed to the corresponding provider, regardless of which workflow is being executed.