Ready-to-use project templates with team, workflow, domain, and config: - writing-short-story: fiction 5-15k words, custom archetypes, sonnet for prose - backend-feature: standard PDCA, full team, haiku for reviews - security-review: thorough 3-cycle, all reviewers incl. trickster - quick-fix: minimal 1-cycle, creator+maker+guardian only
20 lines
692 B
YAML
20 lines
692 B
YAML
# Bundle: security-review
|
|
# Thorough security-focused code review with all reviewers including Trickster.
|
|
# 3 PDCA cycles for maximum coverage. Higher budget to account for deeper analysis.
|
|
|
|
name: security-review
|
|
description: "Security-focused code review — full team with Trickster, 3 thorough cycles"
|
|
version: "1.0.0"
|
|
domain: code
|
|
includes:
|
|
team: team.yaml
|
|
workflow: workflow.yaml
|
|
domain: domain.yaml
|
|
config: config.yaml
|
|
archetypes: []
|
|
requires: []
|
|
variables:
|
|
max_cycles: 3 # Thorough: 3 cycles for deep security coverage
|
|
target_paths: "" # Specific paths to review (empty = entire diff)
|
|
threat_model: "" # Path to threat model doc if available
|