daa-core

daa-core is a skill for Claude Code from gigayaya/DAA-Master. It costs 31 tokens per session (1,208 once invoked), scanned A, original, Apache-2.0.

A three-layer design for end-to-end tests, which test a complete user journey through an application. Tests describe what should happen, actions verify each result, and a separate layer performs the browser or system interaction.

In plain words
What is it for?
Use it when designing or reviewing end-to-end automation so tests remain plain descriptions, actions include their own checks, and low-level interactions stay isolated.
Why use it?
It keeps test intent separate from implementation details, making tests easier to read and maintain. Built-in verification also helps avoid tests that report success without proving the result.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the DAA-Master plugin — 5 skills shipped together

Good fit Use it when designing or reviewing end-to-end automation so tests remain plain descriptions, actions include their own checks, and low-level interactions stay isolated.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gigayaya/daa-master/daa-core
Install

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.

Any agent
npx skills add gigayaya/DAA-Master --skill daa-core
Clone the repo
git clone --depth 1 https://github.com/gigayaya/DAA-Master

Made for: Claude Code.

Or install DAA-Master, the plugin that ships this one along with the rest of its 5 skills.

Wrote 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.

agentmods badge for daa-core

README.md
[![agentmods](https://agentmods.dev/badge/skills/gigayaya/daa-master/daa-core.svg)](https://agentmods.dev/skills/gigayaya/daa-master/daa-core)
Your own site
<a href="https://agentmods.dev/skills/gigayaya/daa-master/daa-core"><img src="https://agentmods.dev/badge/skills/gigayaya/daa-master/daa-core.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,208 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.01208
Opus 5 $0.00015 $0.00604
Sonnet 5 $0.00006 $0.00242
Haiku 4.5 $0.00003 $0.00121

Measured 6d ago against content hash 78a965fc29d4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

daa-core 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 6d 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.

plugins/DAA-Master/skills/daa-core/SKILL.md · 117 lines

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.

Declarative Action Architecture (DAA) — Core Principles

What is DAA

DAA is a strict three-layer separation pattern for E2E automation testing. It enforces that tests are declarative, actions are self-verifying, and physical interactions are pure execution — eliminating false positives and maximizing maintainability.

The Three Layers

Layer 1: Test Layer (The "What")

The Test Layer is 100% declarative. It describes WHAT the user is doing, not HOW.

Iron Rules:

  • ZERO logic: No if, no for, no while, no try/catch
  • ZERO direct system calls: No raw HTTP requests, no WebDriver calls, no database queries
  • ZERO assertions: All verification lives in the Action Layer
  • Tests read like plain-English documentation — a Product Manager should understand them
// GOOD — Pure declarative
test_user_checkout_journey():
    navigate_to_home_and_verify_title()
    search_for_product_and_verify_results_not_empty("iPhone 15")
    add_first_result_to_cart_and_verify_toast()

// BAD — Logic leaked into test
test_user_checkout_journey():
    page.goto(URL)
    if page.title() != "Home":
        raise Error("Wrong page")
    page.fill("#search", "iPhone 15")
    page.click("#submit")
    results = page.query_all(".result")
    assert len(results) > 0

Layer 2: Action Layer (The "How" + Verification)

This is the heart of DAA. It translates declarative test steps into execution + verification.

Iron Rules:

  1. Self-Verification Mandate: Every action method MUST verify its own success. You never just "click button"; you "click button and verify modal opens." This eliminates false positives.
  2. No Direct System Access: Delegates all system interaction to the Physical Layer.
  3. Compose, Don't Repeat: Build complex workflows by composing smaller actions.
Action Hierarchy
Level Type Description Example
Level 1 Atomic Action Single operation + self-verify create_user_and_verify()
Level 2 Composite Action Business workflow = multiple Atomics perform_device_upgrade()

Read the full file on GitHub · 117 lines

Files

What ships with it

2 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.

Changes

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.

  1. 6d ago First seen · 117 lines · 31 tokens per session scan A 78a965fc29d4

Subscribe to this mod's changes

daa-core is a skill published in the GitHub repository gigayaya/DAA-Master (1 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 31 tokens to every session and 1,208 once invoked, about $0.0002 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.

Related

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…

tamdogood/builder-essential-skills · 122 tokens

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.

akovalion/paranoid-qa · 119 tokens

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.

fattain-naime/engineering-docs · 62 tokens

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…

gaelic-ghost/socket · 81 tokens

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.

isvlasov/rageatc-oss · 35 tokens

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…

EmanueleMinotto/minottobot · 108 tokens