ai-engineeringlisted
Install: claude install-skill mthines/agent-skills
# AI Engineering
Prescriptive guidance for building and reviewing LLM/AI applications.
Thirteen orthogonal concerns — load only the rules the current task
needs.
> **This `SKILL.md` is a thin index.** Detailed rules live in
> `rules/*.md` and load on demand.
> Curated source URLs live in `references/primary-sources.md`.
> Date-flagged changes since 2024 live in `references/recent-changes.md`.
> Literal scaffolding lives in `templates/`.
---
## Mode Detection
Parse `$ARGUMENTS` (first token) and detect the mode:
| Mode | Default | Trigger |
| ---------- | ------- | ----------------------------------------------------------------------------- |
| `guide` | **yes** | Default. Open question ("how should I …", "what's the best way to …"). |
| `review` | | `$0 == "review"`, or a file/path is supplied as `$ARGUMENTS`. |
| `design` | | `$0 == "design"`, or "scaffold a prompt / system prompt / eval". |
State the detected mode and the area(s) in scope before continuing:
```
Mode: review
Areas: prompt-writing, system-prompt-design
Targets: src/agents/triage.ts (system prompt at L24-78)
```
---
## Area Routing
Map the user's request to one or more rule files.
Load **only** the rules listed for the matched area(s).
| Area | Rule file | Load when