Templates

Starting points you can copy, paste and ship.

1 skill

What a skill is

A skill is a folder of instructions an AI agent loads on demand. It holds a SKILL.md file, plus optional references/, assets/ and scripts/ folders.

The description in the YAML frontmatter is what decides whether the agent reaches for the skill at all, so it matters as much as the body. Where a prompt shapes one request, a skill stays in place and applies to every request that matches it.

Security & Audit

1

Skills that check work rather than produce it.

Solidity Audit

Expert

A full smart contract audit pipeline, ordered by what actually finds bugs rather than what is quickest to run.

When to use it

auditing or reviewing a Solidity contract or .sol filechecking a DeFi protocol, token, staking pool, vault or factoryrunning Slither or Mythrilasking whether a contract is safewanting a security report

What it does

  1. 01Environment setup
  2. 02Compile and size check
  3. 03Static analysis and lint
  4. 04Symbolic execution
  5. 05Foundry test suite
  6. 06Coverage and mutation testing
  7. 07Manual review
  8. 08Economic review
  9. 09HTML report

What's in the folder

  • references/environment.mdToolchain blockers: blocked compiler CDN, dependency conflicts, per-tool solc paths, running long jobs detached
  • references/invariant-testing.mdHandler design, ghost variables, and detecting invariants that pass vacuously
  • references/manual-review.mdThe manual review checklist
  • references/report-structure.mdHow the HTML report is organised
  • assets/HostileTokens.solToken mocks reproducing USDT, USDC, PAXG, rebasing, false-returning, zero-decimal and reentrant behaviour
  • assets/foundry.tomlFoundry configuration
  • assets/report.cssReport styling
  • scripts/setup_toolchain.shInstalls the whole toolchain

This is an expert skill. It assumes Foundry, Slither, Mythril and a Solidity toolchain, and it reviews contracts for defects — it does not write exploit code.