Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add gigayaya/DAA-Master --skill daa-reviewgit clone --depth 1 https://github.com/gigayaya/DAA-MasterWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/gigayaya/daa-master/daa-review)<a href="https://agentmods.dev/skills/gigayaya/daa-master/daa-review"><img src="https://agentmods.dev/badge/skills/gigayaya/daa-master/daa-review/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/gigayaya/daa-master/daa-review"><img src="https://agentmods.dev/badge/skills/gigayaya/daa-master/daa-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00026 | $0.00847 |
| Opus 5 | $0.00013 | $0.00424 |
| Sonnet 5 | $0.00005 | $0.00169 |
| Haiku 4.5 | $0.00003 | $0.00085 |
Grade A, and why
daa-review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DAA Code Reviewer
REQUIRED BACKGROUND: You MUST understand daa:daa-core before using this skill.
Overview
Review automation test code against DAA principles. Classify each violation by severity and provide actionable fix suggestions.
Review Process
digraph review {
rankdir=TB;
"Read the code" [shape=box];
"Classify into layers" [shape=box];
"Check Test Layer rules" [shape=box];
"Check Action Layer rules" [shape=box];
"Check Physical Layer rules" [shape=box];
"Check cross-layer boundaries" [shape=box];
"Assign severity" [shape=box];
"Report findings" [shape=doublecircle];
"Read the code" -> "Classify into layers";
"Classify into layers" -> "Check Test Layer rules";
"Check Test Layer rules" -> "Check Action Layer rules";
"Check Action Layer rules" -> "Check Physical Layer rules";
"Check Physical Layer rules" -> "Check cross-layer boundaries";
"Check cross-layer boundaries" -> "Assign severity";
"Assign severity" -> "Report findings";
}
Quick Review Checklist (Top 10)
Run through these checks in order. Stop and flag immediately on any CRITICAL finding.
Test Layer
- [CRITICAL] Does any test method contain
if,for,while, ortry/catch? - [CRITICAL] Does any test method make direct API/UI/DB calls (bypassing Action Layer)?
- [WARNING] Does any test method contain
assertstatements (should be in Action Layer)?
Action Layer
- [CRITICAL] Does any action method lack self-verification (no assertion after operation)?
- [CRITICAL] Does any action method call the underlying library directly (bypassing Physical Layer)?
- [WARNING] Are there Composite Actions that call Physical Layer directly instead of composing Atomics?
- [WARNING] Do action names follow the
verb_object_and_verify_outcomepattern?
Physical Layer
- [CRITICAL] Does the Physical Layer contain any assertions or business logic?
- [WARNING] Does any Physical Layer method perform multiple operations instead of one?
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 88 lines · 26 tokens per session scan A 55d1ef9d05e6
daa-review is a skill published in the GitHub repository gigayaya/DAA-Master (1 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 26 tokens to every session and 847 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
test-review
A review checklist for newly written or changed automated tests using TypeScript and Playwright. Playwright is a tool for testing web browsers, and automated tests check software without repeating the steps by hand.
codex-loop
Fix Elixir/Phoenix code until Codex CLI review comes back clean — bounded review, fix, verify loop before opening a PR. Use when codex is installed and you want an external cross-model critic on your changes before pushing.
codex-ab
Run an A/B codex review experiment — holistic codex review vs 3 focused dimension passes (security, ecto, liveview) on the branch diff, classify findings, report a panel-value verdict. Use when the branch is fresh, before any codex review runs.
run-smoke-tests
Inspect an unfamiliar repository, interpret a broad Markdown user journey at runtime, operate the real product through its supported web, API, CLI, desktop, or mobile surface, and produce an auditable pass, fail, or blocked judgment with screenshots, logs, recordings, and a step timeline when available. Use when asked…
spike-consumer-adversarial
OI-3 spike harness — heavy consumer, ADVERSARIAL arm. Worst-case early-exit test: the mid-workflow Skill call has no continuation guardrail and the guidance skill ends with a final-sounding anchor. Use only when explicitly invoked by the spike harness with a TRIALID and data path.
implement
Implement a ticket or feature with proportional planning, test first behavior changes, independent review when available, and verification through the real affected surface.