All Skills
AID ships 111 skill directories across four skill groups (Support, Knowledge Base Maintenance, Definition, Execution), with the Definition group subdivided into 18 verb families derived from the shortcut catalog. Each card below links to that skill’s detail page.
Note: This page is the roster, and it files skills per FR-5’s Placement rules.
aid-triageis Support here and Definition in the curated roster that the methodology’s skill inventory publishes. Where they disagree about grouping, this page is authoritative. How the shortcut skills themselves work — the shared engine and its INTAKE → APPROVAL-HALT sequence — is at Reference → Shortcut engine.
Support
Section titled “Support”Skills for configuring AID and managing tickets and connectors. Start here if you’re not sure which skill to use.
aid-triage— Suggest which AID entry point fits the work you are describing.aid-config— View or update AID pipeline settings.aid-set-connector— Add or update one entry in the connector catalog.aid-unset-connector— Remove one entry from the connector catalog.aid-read-ticket— Read one ticket from the project’s issue tracker and show its fields.aid-create-ticket— File one new ticket in the project’s issue tracker.aid-update-ticket— Change exactly one part of an existing ticket in the project’s issue tracker.
Knowledge Base Maintenance
Section titled “Knowledge Base Maintenance”Skills for discovering, querying, summarising, mapping, and maintaining the project Knowledge Base.
aid-discover— Populate the Knowledge Base from a codebase that already exists.aid-summarize— Generate kb.html, a single-file visual tour of the Knowledge Base.aid-housekeep— Sweep the project back into a consistent state after work has landed.aid-update-kb— Apply one targeted, human-confirmed change to the Knowledge Base.aid-ask— Answer a question about this project, with citations.
Definition
Section titled “Definition”The full AID pipeline plus every shortcut skill, grouped by verb family.
The full path — the five phases, in order:
aid-describe— Gather requirements through an adaptive interview and write them to REQUIREMENTS.md.aid-define— Decompose approved requirements into discrete feature folders, each with its own SPEC.md stub.aid-specify— Turn one feature into a technical specification, collaboratively.aid-plan— Sequence feature SPECs into deliverables — each one a functional MVP that builds on the previous.aid-detail— Break deliverables into small, dependency-driven, typed tasks — each one a reviewable unit.
aid-fix— Diagnose and correct a defect, regression, incident, or vulnerability.
create
Section titled “create”aid-create— Create a new internal code artifact (module, interface, type) from scratch.aid-create-api— Create an API endpoint / middleware (contract, handler, validation).aid-create-ui— Create a UI component or page.aid-create-theme— Create a visual theme or style-token set.aid-create-cli— Create a CLI command.aid-create-data-model— Create a new data model/entity with its schema migration.aid-create-data-pipeline— Create a data pipeline (source, transform, sink, schedule).aid-create-messaging— Create a message/event schema and its emission.aid-create-integration— Create an external-service integration (client/adapter).aid-create-job— Create a scheduled or background job.aid-create-config— Create a new configuration option or feature flag.aid-create-infra— Provision a new infrastructure resource.aid-create-roadmap— Realize a ready roadmap seed into.aid/knowledge/roadmap.md— frontmatter, preamble, ## Contents index (including the forward ## MVP entry), and the three…aid-create-backlog— Realize a ready backlog seed into.aid/knowledge/backlog.md— frontmatter, preamble, ## Contents index, ## Next Release, ## Prioritized, and ## Gotchas.aid-create-mvp— Realize a ready MVP seed into roadmap.md’s ## MVP section only — the first shippable slice: what it includes, why the line falls there, what was cut, and…aid-create-architecture— Realize a ready architecture seed from.aid/design/architecture.mdinto the project’s build-and-shape (C1) Knowledge Base document — components and their…aid-create-stack— Realize a ready stack seed from.aid/design/stack.mdinto the project’s technology (C0) Knowledge Base document — languages, runtimes, frameworks, package…aid-create-testing-strategy— Realize a ready testing-strategy seed from.aid/design/testing-strategy.mdinto the project’s quality (C6) documents — the test landscape (levels,…aid-create-cicd— Realize a ready CI/CD seed from.aid/design/cicd.mdinto the project’s shipping (C8) Knowledge Base document — the pipeline stages and their order, the…aid-create-test— Author new tests (unit/integration/e2e); each test traces to an acceptance criterion; framework inferred from the KB.aid-create-document— Create a document in one pass, working out both its format and its structure from what you ask for — a how-to, a reference page, an ADR, an architecture…aid-create-diagram— Create a diagram in one pass, choosing the diagram type that fits the subject — flowchart, sequence, entity-relationship, C4, state, and so on, in Mermaid…aid-create-dashboard— Build a durable dashboard / BI view, from its source through the visualization to how it is published and refreshed.
update
Section titled “update”aid-update-roadmap— Revise roadmap.md’s direction entries outside the ## MVP section — add, revise or supersede direction entries, and move an entry between horizon sections…aid-update-mvp— Revise roadmap.md’s ## MVP section only — the first shippable slice: its contents, the line reasoning, what was cut, and its Status field (including the…aid-update-backlog— Revise backlog.md — re-prioritize items, add new items, and promote accepted tech-debt.md rows into backlog.md (deleted from tech-debt.md in the same run).aid-update— Update an existing internal code artifact’s behavior under new acceptance criteria.aid-update-api— Update an existing API endpoint / middleware’s contract or behavior.aid-update-ui— Update an existing UI component or page.aid-update-theme— Update an existing visual theme or style-token set.aid-update-cli— Update an existing CLI command.aid-update-data-model— Update an existing data model/entity’s schema, with forward+rollback migration.aid-update-data-pipeline— Update an existing data pipeline’s source, transform, sink, or schedule.aid-update-messaging— Update an existing message/event schema or its emission.aid-update-integration— Update an existing external-service integration.aid-update-job— Update an existing scheduled or background job.aid-update-config— Update an existing configuration option or feature flag.aid-update-infra— Update an existing infrastructure resource.aid-update-architecture— Revise the project’s build-and-shape (C1) Knowledge Base document — components and their responsibilities, boundaries, interactions, and the invariants a…aid-update-stack— Revise the project’s technology (C0) Knowledge Base document — languages, runtimes, frameworks, package managers, and build and test tooling with their…aid-update-testing-strategy— Revise the project’s quality (C6) documents — the test landscape (levels, coverage expectations, CI lane mapping, known gaps) and the gate policy (what…aid-update-cicd— Revise the project’s shipping (C8) Knowledge Base document — pipeline stages and their order, triggers, environments and promotion, and the release flow —…aid-update-test— Update or extend existing tests.aid-update-document— Revise or extend a document that already exists, in one pass.aid-update-dashboard— Update an existing dashboard / BI view (source, visualization, or refresh cadence).
refactor
Section titled “refactor”aid-refactor— Restructure or optimize code without changing behavior (rename, restructure, or improve performance).
remove
Section titled “remove”aid-remove— Remove or delete a code artifact, endpoint, dependency, feature, or dead code; update dependents, tests, and docs.
deprecate
Section titled “deprecate”aid-deprecate— Deprecate an existing artifact/API: mark deprecated, add warnings and a migration path, without deleting yet.
migrate
Section titled “migrate”aid-migrate— Migrate data, a dependency, framework, or platform, with a rollback plan (non-schema; schema migrations use create/update-data-model).
aid-test— Run a test suite or verification and consolidate the results into findings, in one pass.aid-test-security— Run a security verification and consolidate the findings — SAST, DAST, fuzzing, or a dependency audit.aid-test-performance— Run a performance verification against a threshold or SLO — a benchmark, a load test, or a stress test — and report measured against target.aid-test-data-quality— Run data-quality checks against thresholds and report — schema, freshness, completeness, uniqueness.
experiment
Section titled “experiment”aid-experiment— Design, run, and analyze a controlled experiment or A/B test.
prototype
Section titled “prototype”aid-prototype— Build a throwaway, low-fidelity model to test whether a direction actually works, before anyone commits to building it properly.aid-prototype-ui— Build a throwaway, low-fidelity UI wireframe and interaction flow to test whether a UX direction actually works.
design
Section titled “design”aid-design— Produce a design artifact you intend to keep — a UX or interaction flow, a component or interface design, with accessibility notes — meant to inform the…aid-design-roadmap— Develop the project’s committed direction as a DESIGN SEED in.aid/design/roadmap.md— what is committed vs.aid-design-mvp— Draw the MVP line as a DESIGN SEED in.aid/design/mvp.md— what is in the first shippable slice, what defers, and the reason for each cut.aid-design-backlog— Develop the defined-and-prioritized item set as a DESIGN SEED in.aid/design/backlog.md— item definitions, done-conditions, priorities, and which…aid-design-api— Develop an API design as a DESIGN SEED in.aid/design/api.md— the resource shape, the request/response contract, and the error model.aid-design-ui— Develop a UI design as a DESIGN SEED in.aid/design/ui.md— the screen/flow structure, the interaction model, and accessibility notes.aid-design-theme— Develop a visual theme design as a DESIGN SEED in.aid/design/theme.md— the style-token set (color, type, spacing), its light/dark variants, and how…aid-design-cli— Develop a CLI design as a DESIGN SEED in.aid/design/cli.md— the command and subcommand shape, its arguments and flags, and its output and error…aid-design-data-model— Develop a data-model design as a DESIGN SEED in.aid/design/data-model.md— its entities, their relationships, and the migration impact of introducing…aid-design-data-pipeline— Develop a data-pipeline design as a DESIGN SEED in.aid/design/data-pipeline.md— the source, the transform, the sink, and the schedule.aid-design-messaging— Develop a messaging design as a DESIGN SEED in.aid/design/messaging.md— the message/event schema, its channel, and its emission points.aid-design-integration— Develop an external-service integration design as a DESIGN SEED in.aid/design/integration.md— the external service, the client/adapter surface, and the…aid-design-job— Develop a scheduled or background job design as a DESIGN SEED in.aid/design/job.md— the trigger, the work it performs, and its idempotency and failure…aid-design-config— Develop a configuration-option or feature-flag design as a DESIGN SEED in.aid/design/config.md— the option or flag, its default and scope, and how it is…aid-design-infra— Develop an infrastructure-resource design as a DESIGN SEED in.aid/design/infra.md— the resource, its configuration, and its provisioning and teardown.aid-design-test— Develop a test design as a DESIGN SEED in.aid/design/test.md— the units under test, the cases, and the framework and fixtures.aid-design-document— Develop a document design as a DESIGN SEED in.aid/design/document.md— the document’s kind and structure, its audience, and its placement.aid-design-dashboard— Develop a dashboard / BI-view design as a DESIGN SEED in.aid/design/dashboard.md— the data source, the visualizations, and the refresh cadence.aid-design-architecture— Develop the system’s shape as a DESIGN SEED in.aid/design/architecture.md— components, boundaries, interactions, invariants, and what is deliberately…aid-design-stack— Develop the technology choice as a DESIGN SEED in.aid/design/stack.md— languages, runtimes, frameworks, and build and test tooling with versions, plus…aid-design-testing-strategy— Develop the testing policy as a DESIGN SEED in.aid/design/testing-strategy.md— test levels, coverage expectations, which gates block a merge, and who…aid-design-cicd— Develop the delivery pipeline as a DESIGN SEED in.aid/design/cicd.md— stages, triggers, environments, promotion, and release flow.
brainstorm
Section titled “brainstorm”aid-brainstorm— Diverge on a problem not yet formed into an answerable question, then converge it to a DESIGN SEED in.aid/design/<slug>.md— exploration, framings, and…
document
Section titled “document”aid-document— Write a general document in one pass — a Diataxis how-to, reference page or explanation, or a status or progress report.aid-document-decision— Write an ADR in one pass — an architecture decision record: the context, the decision itself, the alternatives considered, and the consequences.aid-document-architecture— Write an architecture write-up in one pass — a system’s components, boundaries, and interactions, as C4 or arc42 views with Mermaid diagrams.aid-document-guideline— Write a guideline in one pass — an advisory recommended practice, stating the principle, its rationale, and do/don’t examples.aid-document-standard— Write a standard in one pass — a mandatory rule, stating the rule, its scope, how compliance is enforced, and the exceptions.aid-document-runbook— Write a runbook in one pass — an operational procedure, from trigger through diagnostic and remediation to escalation.aid-document-tutorial— Write a tutorial in one pass — a learning-oriented walkthrough, from prerequisites through worked steps to the outcome.aid-document-changelog— Write a changelog in one pass — release notes grouped as Added, Changed, Fixed, Removed and Security.
report
Section titled “report”aid-report— Analyse data or usage and return a verified insight report in one pass — exploratory analysis, metrics, or an A/B result.
review
Section titled “review”aid-review— Review an existing artifact against criteria and return findings and recommendations in one pass — code, a diff, a design, a pull request, a ticket, a…
research
Section titled “research”aid-research— Investigate an open technical question and return a verified answer in one pass — evaluating options, or running an isolated feasibility spike if you…
deploy
Section titled “deploy”aid-deploy— Package completed deliveries into a release.
monitor
Section titled “monitor”aid-monitor— Watch production, classify what you find, and route it to whoever should act.
Execution
Section titled “Execution”Skills for executing detailed tasks, each through a graded adversarial review loop.
aid-execute— Carry out one planned task and review the result.