Files
claude-archeflow-plugin/templates/bundles/backend-feature/domain.yaml
Christian Nennemann 52d9d8dd05 feat: add 4 template bundles (writing, backend, security, quick-fix)
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
2026-04-03 12:14:14 +02:00

67 lines
1.4 KiB
YAML

# Domain: Code
# Standard code domain — software development with ArcheFlow defaults.
# No concept remapping needed (code is the default domain).
name: code
description: "Software development — applications, libraries, infrastructure"
concepts:
implementation: "code changes"
tests: "automated tests"
files_changed: "files changed"
test_coverage: "test coverage %"
code_review: "code review"
build: "build/compile"
deploy: "deploy"
refactor: "refactor"
bug: "bug"
feature: "feature"
PR: "pull request"
metrics:
- files_changed
- lines_added
- lines_removed
- tests_added
- tests_passing
- coverage_delta
review_focus:
guardian:
- security_vulnerabilities
- breaking_changes
- dependency_risks
- error_handling
sage:
- code_quality
- test_coverage
- documentation
- pattern_consistency
skeptic:
- design_assumptions
- scalability
- alternative_approaches
- edge_cases
trickster:
- malformed_input
- concurrency_races
- error_path_exploitation
- dependency_failures
context:
always:
- "README.md"
- ".archeflow/config.yaml"
plan_phase:
- "relevant source files (Explorer identifies)"
- "existing tests for affected area"
do_phase:
- "Creator's proposal"
- "test fixtures and helpers"
check_phase:
- "git diff from Maker"
- "proposal risk section"
# Code domain uses default archetype model assignments
model_overrides: {}