|
|
5 dni temu | |
|---|---|---|
| .. | ||
| README.md | 5 dni temu | |
This folder contains the Test Architect (TEA) workflows converted to skill-driven step-file architecture for strict LLM compliance. Each workflow is tri-modal (create, edit, validate) and uses small, ordered step files routed from SKILL.md instead of a single monolithic instruction file.
<workflow>/
├── SKILL.md # Canonical entrypoint and mode routing
├── customize.toml # Workflow customization surface
├── workflow-plan.md # Design reference for step order and intent
├── workflow.yaml # Installer metadata
├── instructions.md # Short entrypoint / summary
├── checklist.md # Validation criteria for outputs
├── steps-c/ # Create mode steps
├── steps-e/ # Edit mode steps
├── steps-v/ # Validate mode steps
├── templates/ # Output templates (if applicable)
└── validation-report-*.md # Validator outputs (latest run)
step-01-*.md is the init step (no menus unless explicitly required).step-01b-*.md is a continuation/resume step if the workflow is continuable.step-0X-*.md are sequential create-mode steps.steps-v/step-01-validate.md is the validate mode entrypoint.steps-e/step-01-assess.md is the edit mode entrypoint.validation-report-*.md in its folder.docs/explanation/step-file-architecture.mddocs/explanation/subagent-architecture.mdSKILL.md is the canonical entrypoint. instructions.md is a short summary for quick context.customize.toml defines activation hooks, persistent facts, and the optional on_complete hook.{test_artifacts} or {project-root} variables.