원클릭으로
awa-usage
Understand awa, its CLI, and configuration. Use this when asked about awa itself, how to use it, or how to configure it.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Understand awa, its CLI, and configuration. Use this when asked about awa itself, how to use it, or how to configure it.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Double-check the last work, whether it be a plan, design, or implementation, ensuring all aspects have been fully considered. Use when user wants to check work, or mentions "double check".
Align source with target. Use this when asked to align, check, or verify alignment between artifacts.
Create or update ARCHITECTURE.md. Use this when asked to create, update or modify the project architecture.
Brainstorm ideas, explore solutions, and evaluate options. Use this when asked to brainstorm, explore ideas, or analyze trade-offs.
Run traceability and schema checks, then fix any errors. Use this when asked to check, validate, or fix traceability and schema issues.
Implement code and tests based on architecture, requirements, and design (or a set of tasks). Use this when asked to implement features, write code, or create tests.
| name | awa-usage |
| description | Understand awa, its CLI, and configuration. Use this when asked about awa itself, how to use it, or how to configure it. |
awa is a CLI tool and structured development workflow for AI-assisted coding. It generates agent configuration files from templates and defines a spec-driven development process with full traceability from requirements through code and tests.
Key concepts:
.github/agents/, .claude/, etc.) with conditional output via feature flags@awa-impl, @awa-test, @awa-component) link source code and tests back to requirements and designawa check verifies that all markers resolve to spec IDs and that spec files conform to YAML schemas.awa/ DirectoryAll spec artifacts live in .awa/:
.awa/
├── .agent/
│ ├── awa.core.md # Core system prompt (always read first)
│ └── schemas/
│ ├── ARCHITECTURE.schema.yaml
│ ├── FEAT.schema.yaml
│ ├── EXAMPLE.schema.yaml
│ ├── REQ.schema.yaml
│ ├── DESIGN.schema.yaml
│ ├── API.schema.yaml
│ ├── TASK.schema.yaml
│ ├── PLAN.schema.yaml
│ ├── DEPRECATED.schema.yaml
│ ├── ALIGN_REPORT.schema.yaml
│ └── README.schema.yaml
├── specs/
│ ├── ARCHITECTURE.md # System overview
│ ├── FEAT-{CODE}-*.md # Feature context and motivation
│ ├── EXAMPLE-{CODE}-*-{nnn}.md # Usage examples per feature
│ ├── REQ-{CODE}-*.md # Requirements (EARS format)
│ ├── DESIGN-{CODE}-*.md # Design and components
│ ├── API-{CODE}-*.tsp # TypeSpec API definitions
│ └── deprecated/
│ └── DEPRECATED.md # Tombstone file for retired spec IDs
├── tasks/
│ └── TASK-{CODE}-*-{nnn}.md # Implementation steps
├── plans/
│ └── PLAN-{nnn}-*.md # Ad-hoc plans
├── align/
│ └── ALIGN-{x}-WITH-{y}-{nnn}.md # Alignment reports
└── rules/
└── *.md # Project-specific rules
ARCHITECTURE → FEAT → REQUIREMENTS → DESIGN → TASKS → CODE & TESTS → DOCUMENTATION
| Stage | Artifact | Purpose |
|---|---|---|
| Architecture | ARCHITECTURE.md | System overview, components, constraints |
| Feature | FEAT-{CODE}-*.md | Context, motivation, scenarios |
| Requirements | REQ-{CODE}-*.md | What must be built (EARS/INCOSE format) |
| Design | DESIGN-{CODE}-*.md | How it gets built — components, interfaces, properties |
| Tasks | TASK-{CODE}-*-{nnn}.md | Step-by-step implementation work items |
| Code & Tests | Source files | Implementation with traceability markers |
| Documentation | README.md, docs/ | User-facing docs |
| (lateral) | EXAMPLE-{CODE}-*-{nnn}.md | Concrete usage examples for a feature |
| (lateral) | API-{CODE}-*.tsp | TypeSpec API definitions |
| (lateral) | PLAN-{nnn}-*.md | Ad-hoc plans for vibe coding |
| (lateral) | ALIGN-{x}-WITH-{y}-{nnn}.md | Alignment reports comparing artifacts |
| (lateral) | deprecated/DEPRECATED.md | Tombstone for retired spec IDs |
The workflow is flexible. Start top-down (architecture → code), bottom-up (code → extract requirements), or lateral (docs, refactors, ad-hoc plans). Lateral artifacts can be produced at any stage.
IDs and markers create explicit links between artifacts:
REQ-{CODE}-*.md
└── {CODE}-{n}: Requirement title
└── {CODE}-{n}_AC-{m}: Acceptance criterion
│
▼
DESIGN-{CODE}-*.md
└── {CODE}-ComponentName
├── IMPLEMENTS: {CODE}-{n}_AC-{m}
└── {CODE}_P-{n}: Correctness property
│
▼
Source code
└── // @awa-component: {CODE}-ComponentName
└── // @awa-impl: {CODE}-{n}_AC-{m}
│
▼
Tests
├── // @awa-test: {CODE}_P-{n} ← verifies property
└── // @awa-test: {CODE}-{n}_AC-{m} ← verifies AC
ID formats:
{CODE}-{n} — requirement (e.g. DIFF-1){CODE}-{n}.{p} — subrequirement (e.g. DIFF-1.1){CODE}-{n}[.{p}]_AC-{m} — acceptance criterion (e.g. DIFF-1_AC-1){CODE}_P-{n} — correctness property (e.g. DIFF_P-2)awa may be installed locally. Detect the package manager and use the appropriate exec command:
npm/npx: npx awa <command>
yarn: yarn exec awa <command>
pnpm: pnpm exec awa <command>
bun: bunx awa <command>
Generate configuration files from templates. init is a top-level convenience command equivalent to awa template generate.
| Option | Description |
|---|---|
[output] | Output directory (positional, optional if set in config) |
-t, --template <source> | Template source — local path or Git repo |
-f, --features <flag...> | Feature flags (repeatable) |
--preset <name...> | Preset names to enable (repeatable) |
--remove-features <flag...> | Feature flags to remove (repeatable) |
--force | Overwrite existing files without prompting |
--dry-run | Preview changes without modifying files |
--delete | Enable deletion of files listed in template |
-c, --config <path> | Path to configuration file |
--refresh | Force re-fetch of cached Git templates |
--all-targets | Process all named targets from config |
--target <name> | Process a specific named target |
--overlay <path...> | Overlay directory paths (repeatable) |
--json | Output results as JSON (implies --dry-run) |
--summary | Compact one-line counts summary |
Compare generated template output against an existing target directory. Exit code 0 = match, 1 = differences.
| Option | Description |
|---|---|
[target] | Target directory (positional, optional if set in config) |
-t, --template <source> | Template source — local path or Git repo |
-f, --features <flag...> | Feature flags (repeatable) |
--preset <name...> | Preset names to enable (repeatable) |
--remove-features <flag...> | Feature flags to remove (repeatable) |
-c, --config <path> | Path to configuration file |
--refresh | Force re-fetch of cached Git templates |
--list-unknown | Include files in target not present in templates |
--all-targets | Process all named targets from config |
--target <name> | Process a specific named target |
-w, --watch | Watch template directory and re-diff on change |
--overlay <path...> | Overlay directory paths (repeatable) |
--json | Output results as JSON |
--summary | Compact one-line counts summary |
Check traceability chain integrity and spec schema conformance. Exit code 0 = clean, 1 = errors.
| Option | Description |
|---|---|
-c, --config <path> | Path to configuration file |
--spec-ignore <pattern...> | Glob patterns to exclude from spec file scanning (repeatable, appends to config) |
--code-ignore <pattern...> | Glob patterns to exclude from code file scanning (repeatable, appends to config) |
--json | Output results as JSON |
--summary | Compact one-line counts summary |
--allow-warnings | Allow warnings without failing |
--spec-only | Run only spec-level checks; skip code-to-spec traceability |
--no-fix | Skip auto-regeneration of Requirements Traceability sections and Feature Codes table |
--deprecated | Surface warnings for code markers and cross-references targeting deprecated IDs |
Before running checks, awa check auto-regenerates Requirements Traceability sections in DESIGN and TASK files, and the Feature Codes table in ARCHITECTURE.md. Use --no-fix to skip this.
Checks performed: orphaned markers, uncovered ACs, broken cross-refs, invalid ID format, orphaned specs, schema validation. Config-only options: schema-dir, schema-enabled, ignore-markers, id-pattern, cross-ref-patterns, extra-spec-globs, extra-spec-ignore.
Navigate the traceability chain and assemble context from specs, code, and tests. Use this to gather focused context before implementing, refactoring, or reviewing.
awa trace [ids...] [options]
| Option | Description |
|---|---|
[ids...] | Traceability ID(s) to trace (e.g. FEAT-1, FEAT-1_AC-2, FEAT_P-3) |
--all | Trace all known IDs in the project |
--scope <code> | Limit results to a feature code (e.g. --scope FEAT) |
--file <path> | Resolve IDs from a source file's markers — useful to understand a file's spec connections before changing it |
--task <path> | Resolve IDs from a task file |
--content | Output actual file sections instead of locations |
--list | Output file paths only |
--direction <dir> | Traversal direction: both (default), forward, reverse |
--depth <n> | Maximum traversal depth |
--no-code | Exclude source code (spec-only context) |
--no-tests | Exclude test files |
--json | Output results as JSON |
--summary | Compact one-line counts summary |
--max-tokens <n> | Cap content output size (implies --content) |
-A/-B/-C <n> | Lines of context after/before/both around a code marker (--content only) |
-c, --config <path> | Path to configuration file |
Renumber traceability IDs to match document order, closing gaps in numbering sequences. Exit code 0 = no changes, 1 = changes applied/previewed.
| Option | Description |
|---|---|
[code] | Feature code to renumber (e.g. DIFF, TRC) |
--all | Renumber all feature codes |
--dry-run | Preview changes without modifying files |
--json | Output results as JSON |
--expand-unambiguous-ids | Expand unambiguous malformed ID shorthand before renumbering |
-c, --config <path> | Path to configuration file |
Scans all REQ and DESIGN spec files for the given feature code, builds a globally sequential renumber map that closes gaps (e.g. 1, 3, 5 → 1, 2, 3), and propagates all ID changes across every spec file type (ARCHITECTURE.md, FEAT, EXAMPLE, REQ, DESIGN, API, TASK, PLAN, ALIGN), source code, and tests. Detects and reports malformed IDs.
When --expand-unambiguous-ids is set, unambiguous malformed patterns are expanded before renumbering: slash ranges (ARC-36_AC-8/9 → ARC-36_AC-8, ARC-36_AC-9) and dot-dot AC ranges (ARC-18_AC-14..16 → ARC-18_AC-14, ARC-18_AC-15, ARC-18_AC-16). Ambiguous patterns (letter suffixes, full-ID ranges, trailing periods) remain as warnings only.
Recode traceability IDs from one feature code to another. Rewrites all IDs, renames spec files, and updates headings. Exit code 0 = no changes, 1 = changes applied/previewed.
| Option | Description |
|---|---|
<source> | Source feature code to recode from |
<target> | Target feature code to recode into |
--dry-run | Preview changes without modifying files |
--json | Output results as JSON |
--renumber | Renumber target code after recode |
-c, --config <path> | Path to configuration file |
Builds an offset map across all source REQ and DESIGN files so source IDs don't collide with existing target IDs. Use awa spec merge if target spec files already exist.
Merge one feature code into another — combines recode, content merge, and cleanup. Exit code 0 = no changes, 1 = changes applied/previewed.
| Option | Description |
|---|---|
<source> | Source feature code to merge from |
<target> | Target feature code to merge into |
--dry-run | Preview changes without modifying files |
--json | Output results as JSON |
--renumber | Renumber target code after merge |
-c, --config <path> | Path to configuration file |
Pipeline: recode source IDs past target's highest → rename/move spec files → warn about stale source refs → optionally renumber. Use merge when both codes have existing spec files; use recode for a pure rename.
List all feature codes with requirement counts and scope summaries. Exit code 0 = success.
| Option | Description |
|---|---|
--json | Output results as JSON |
--summary | Compact one-line counts summary |
-c, --config <path> | Path to configuration file |
Run template test fixtures. Exit code 0 = all pass, 1 = failures.
| Option | Description |
|---|---|
-t, --template <source> | Template source — local path or Git repo |
-c, --config <path> | Path to configuration file |
--update-snapshots | Update stored snapshots with current output |
--refresh | Force re-fetch of cached Git templates |
--overlay <path...> | Overlay directory paths (repeatable) |
--json | Output results as JSON |
--summary | Compact one-line counts summary |
Discovers *.toml fixtures in _tests/, renders per fixture, verifies expected files, compares against snapshots.
Discover feature flags available in a template.
| Option | Description |
|---|---|
-t, --template <source> | Template source — local path or Git repo |
-c, --config <path> | Path to configuration file |
--refresh | Force re-fetch of cached Git templates |
--overlay <path...> | Overlay directory paths (repeatable) |
--json | Output results as JSON |
--summary | Compact one-line counts summary |
-v, --version — display version. -h, --help — display help.
.awa.tomlCreate .awa.toml in the project root. CLI arguments always override config values.
# Root options
output = ".github/agents"
template = "owner/repo"
features = ["copilot", "claude"]
overlay = ["./overlays/company", "./overlays/project"]
refresh = false
delete = false
# Named presets — expand into feature flags
[presets]
full = ["copilot", "claude", "cursor", "windsurf", "kilocode", "opencode", "gemini", "roo", "qwen", "codex", "agy", "agents-md"]
lite = ["copilot", "claude"]
# Per-agent targets — generate different configs in one command
[targets.claude]
output = "."
features = ["claude", "architect", "code"]
[targets.copilot]
output = "."
features = ["copilot", "code", "vibe"]
# Traceability check configuration
[check]
spec-globs = [".awa/specs/**/*.md"]
code-globs = ["src/**/*.{ts,js,tsx,jsx}"]
markers = ["@awa-impl", "@awa-test", "@awa-component"]
spec-ignore = []
code-ignore = ["node_modules/**", "dist/**", "vendor/**", "target/**", "build/**", "out/**", ".awa/**"]
extra-spec-globs = [".awa/**/*"] # additional spec globs for schema validation
extra-spec-ignore = [".awa/.agent/**"] # patterns to exclude from extra spec scanning
ignore-markers = []
id-pattern = "..." # regex for valid traceability IDs
cross-ref-patterns = ["IMPLEMENTS:", "VALIDATES:"]
format = "text"
schema-dir = ".awa/.agent/schemas"
schema-enabled = true
allow-warnings = false
spec-only = false
# Update check configuration
[update-check]
enabled = true # set to false to disable update checks
interval = 86400 # seconds between checks (default: 1 day)
Target fields: output, template, features, preset, remove-features. Boolean flags (force, dry-run, delete, refresh) apply globally. Target features replace root features entirely.
Feature resolution order: start with --features, expand --preset (append, deduplicate), remove --remove-features.
Multi-target usage:
awa template generate --all-targets # process all targets
awa template generate --target claude # process one target
awa template diff --all-targets # diff all targets
Templates can be a local path or a Git repository:
./templates/awaowner/repohttps://github.com/owner/repogit@github.com:owner/repoowner/repo/path/to/templatesowner/repo#branch, owner/repo#v1.0.0Git templates are cached in ~/.cache/awa/templates/. Use --refresh to re-fetch.
| Command | 0 | 1 | 2 |
|---|---|---|---|
awa init / awa template generate | Success | — | Internal error |
awa template diff | All files match | Differences found | Internal error |
awa check | All checks pass | Errors found | Internal error |
awa template test | All fixtures pass | Failures found | Internal error |
awa template features | Success | Error | — |
awa trace | Chain found | ID not found / no context | Internal error |
awa spec renumber | No changes needed | Changes applied/previewed | Internal error |
awa spec recode | No changes needed | Changes applied/previewed | Error / stale refs |
awa spec merge | No changes needed | Changes applied/previewed | Error / stale refs |
awa spec codes | Success | — | Internal error |