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-generategit 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-generate)<a href="https://agentmods.dev/skills/gigayaya/daa-master/daa-generate"><img src="https://agentmods.dev/badge/skills/gigayaya/daa-master/daa-generate.svg" alt="Measured on agentmods" 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.00029 | $0.00921 |
| Opus 5 | $0.00015 | $0.00461 |
| Sonnet 5 | $0.00006 | $0.00184 |
| Haiku 4.5 | $0.00003 | $0.00092 |
Grade A, and why
daa-generate 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 7d 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 — 117 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DAA Code Generator
REQUIRED BACKGROUND: You MUST understand daa:daa-core before using this skill.
Overview
When generating E2E test automation code, follow the Declarative Action Architecture strictly. Every piece of code you write belongs to exactly ONE of the three layers, and must follow that layer's rules.
Generation Process
digraph generation {
rankdir=TB;
"Identify target layer" [shape=box];
"Read layer-specific rules" [shape=box];
"Generate code" [shape=box];
"Run pre-output checklist" [shape=diamond];
"Output code" [shape=doublecircle];
"Fix violations" [shape=box];
"Identify target layer" -> "Read layer-specific rules";
"Read layer-specific rules" -> "Generate code";
"Generate code" -> "Run pre-output checklist";
"Run pre-output checklist" -> "Output code" [label="all pass"];
"Run pre-output checklist" -> "Fix violations" [label="violation found"];
"Fix violations" -> "Run pre-output checklist";
}
Quick Rules Per Layer
Test Layer
- ZERO logic: No
if,for,while,try/catch - ZERO assertions: All verification is inside Action methods
- ZERO direct calls: No HTTP requests, no WebDriver, no database
- Test methods call ONLY Action Layer methods
- Test class inherits from or composes the Action Layer
// Test Layer — pure declarative
test_guest_checkout_journey():
navigate_to_home_and_verify_title()
search_for_product_and_verify_results_not_empty("MacBook Air")
add_first_result_to_cart_and_verify_toast()
navigate_to_cart_and_verify_page()
click_checkout_and_verify_login_prompt()
→ Full generation rules: test-layer.md
Action Layer
- Every method MUST self-verify (built-in assertion)
- Delegates system interaction to Physical Layer — no direct calls
- Atomic Actions (Level 1): single operation + verify
- Composite Actions (Level 2): orchestrate multiple Atomics
- Use semantic long names:
verb_object_and_verify_outcome
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.
- 7d ago First seen · 117 lines · 29 tokens per session scan A 86ec36070a75
daa-generate is a skill published in the GitHub repository gigayaya/DAA-Master (1 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 29 tokens to every session and 921 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
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…
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.
test-strategy-document
Create a production-ready Testing Strategy and QA Execution Plan. Covers testing levels (unit, integration, E2E, performance), mocking boundaries, test environment matrix, code coverage thresholds, and automated CI pipeline runsheets. Use when establishing a QA framework for a new system or feature set.
xcode-testing-workflow
Guide Swift Testing, XCTest, XCUITest, XCUIAutomation-oriented mechanics, code coverage, xctestplan matrices, accessibility-verification follow-through, test filtering, retries, diagnostics, and test-specific fallback work in existing Xcode-managed projects and workspaces. Use when Xcode-aware execution is needed and…
evaluating-as-user
Evaluates software quality from an end user's perspective. Use when emulating a real user to assess a running web app, CLI tool, or API.
test-selection
Use this skill when someone describes a specific code path, feature, or bug and asks what kind of test to write for it — or when an audit or strategy engagement surfaces a testing gap and needs a recommendation for where to start. Trigger on "what test should I write for this", "unit or integration test for X", "our…