Aria skill test
Open-source Claude Code Skills that replace clicking through vendor dashboards — Stripe, Cloudflare DNS, ElevenLabs, GitHub, and more. Powered by Aria Code.
npx -y skills add iansteitz1-eng/aria-skills --skill aria-skill-testAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Regression harness for the aria-skills repo. Runs every shipped skill in dry-run mode + asserts clean output (no traceback, no credential leaks, valid SKILL.md frontmatter, README.md present). Text report by default; --junit-xml flag for CI integration. Use when the user says "test the skills", "regression check", "before push", "run the test harness", or any time before opening a PR or pushing to main.
SKILL.md
1.9 KB, as published. Nobody here has run it
aria-skill-test
Regression harness. Pythonic + zero-dependency. Tests structural correctness across every skill in the repo without making any real API calls.
When to use
- Before pushing changes to the public repo
- In CI on every PR (use
--junit-xmlflag) - After running
aria-skill-templateto confirm the generated stub passes - After editing any skill script — quick sanity check
What gets checked
Per skill directory:
- SKILL.md frontmatter parses (YAML between
---markers) namefield in frontmatter matches directory namedescriptionfield is 40-600 chars- README.md exists
- Executable script found (snake_case or kebab-case .py / .sh)
- Dry-run exits 0 (clean) or 2 (needs creds with clear FATAL message)
- No Python traceback in stderr
- No credential leak patterns in output (Anthropic / Stripe / Resend / Twilio / Cloudflare / EL / AWS / GitHub PAT)
CLI
python3 aria_skill_test.py # all skills
python3 aria_skill_test.py --skill <name> # one skill
python3 aria_skill_test.py --skip <name> --skip <name> # exclude
python3 aria_skill_test.py --junit-xml results.xml # CI mode
python3 aria_skill_test.py --repo-root /path/to/repo # alternate
See also
- BUILDER_GUIDE.md — the patterns enforced
- aria-skill-template — generator paired with this harness
License
Apache 2.0