agentsclimarketplace

Meow

Skill ai-meow/felix-skills/skills/meow

Pick up a GitHub issue (or a standalone task) in an isolated git worktree and implement it TDD, red-green-refactor, driven by the Definition of Done from the spec. Use when the user says meow, wants to take a ticket, implement an issue, or start coding a planned feature.From its SKILL.md

Install
npx -y skills add ai-meow/felix-skills --skill meow

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

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

SKILL.md

1.8 KB, 429 tokens by cl100k_base, as published. Nobody here has run it

meow 🐱

Take the ticket. Test first. Ship. Read ../no-slop.md first.

Pick

  • With an issue number: gh issue view <n> β€” the DoD checklist in the body is the contract.
  • Without: list meow:ready issues (gh issue list --label "meow:ready") and let the user pick, or accept a standalone task (then extract a 2–5 line DoD from the conversation before writing any code).

Isolate

One ticket = one worktree = one branch:

git worktree add ../<repo>-meow-<n> -b meow/<n>-<kebab-title>
cd ../<repo>-meow-<n>

Install deps if the lockfile demands it. Never work on a shared branch.

TDD loop

For each DoD line, in order:

  1. Red β€” write the smallest failing test that encodes the DoD line. Run it, confirm it fails for the right reason.
  2. Green β€” write the minimum code to pass. Resist generalizing.
  3. Refactor β€” only with all tests green, only within touched files.
  4. Commit: meow(#<n>): <DoD line, abridged>.

Rules:

  • Test the behavior through the module interface, not the internals.
  • A DoD line you can't test is a spec bug β€” stop and flag it, don't fake a test.
  • No code without a red test first. No TODO comments β€” either do it or open an issue.
  • Full suite must pass before moving to the next DoD line.

Ship

When every DoD box is checked:

gh pr create --fill --body "Closes #<n>" 

Tick the DoD boxes in the issue. Offer to clean the worktree (git worktree remove) after merge β€” don't do it unasked.

End by outputting the PR URL. Nothing else.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.