Agent skills for work that needs more control than a single prompt: long-running execution, high-recall code review, and measurable self-improvement loops. These are not vibe-coding macros.
FAQ
stellarlinkco-skills is a Claude Code plugin with 3 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes code-review, harness, self-evolution. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
$ npx -y skills add stellarlinkco/skills --agent claude-code
Agent skills for work that needs more control than a single prompt: long-running execution, high-recall code review, and measurable self-improvement loops.
These are not vibe-coding macros. They are small operating protocols for agents: explicit state, hard gates, deterministic rollback, and proofs before claims. Use them directly, fork them, or steal the patterns.
Install the collection with the skills.sh installer:
npx skills@latest add stellarlinkco/skills
Then call the skill you need from your agent:
/harness implement prd.md; loop verify, fix, retest
For manual installs, copy the skill directory you need from skills/ into your agent's skills directory. harness also needs hook registration; see skills/harness/README.md.
AI agents fail in boring, repeatable ways. They stop too early. They review too narrowly. They make a prompt or skill better once, then lose the path that made it better. This repo turns those failure modes into protocols.
The problem: long tasks die at session boundaries. Context windows reset, partial state disappears, and the agent starts summarizing instead of finishing.
The fix: harness gives the agent a durable task ledger, append-only progress log, hook-driven stop blocking, dependency checks, leases, and recovery rules. Progress files become the context.
Use it when a task has many subtasks, must survive sleep/resume cycles, or needs automatic recovery after a failed attempt.
The problem: most agent reviews optimize for precision too early. They produce a tidy list, but miss the dangerous bug hiding in a changed contract, deleted branch, or wrapper boundary.
The fix: code-review uses a max-recall pipeline: gather the real diff, generate candidates from independent angles, verify them, run a final gap sweep, then return a capped JSON findings list.
Use it for PRs, branch diffs, local working-tree diffs, security-sensitive changes, or any review where a missed P1 costs more than an extra candidate.
The problem: βmake this betterβ is not a loop. Without a measurable oracle, each mutation is just taste with confidence.
The fix: self-evolution turns prompts, skills, documents, configs, code, and experiments into evaluate-gate loops. It supports GT case suites and scalar scoreboard metrics, keeps a ledger, and reverts mutations that do not pass.
Use it when the artifact can be measured and you want repeated improvement without guessing.
SKILL.md is the agent-facing protocol..claude-plugin/
plugin.json
AGENTS.md
assets/
stellarlink-logo.svg
README.md
skills/
code-review/
SKILL.md
harness/
hooks/
_harness_common.py
harness-claim.py
harness-renew.py
harness-sessionstart.py
harness-stop.py
harness-subagentstop.py
harness-teammateidle.py
reflect-on-stop.py
README.md
SKILL.md
self-evolution/
references/
artifact-guide.md
evaluation.md
gate.md
ground-truth.md
gt-format.md
mutation.md
scripts/
evaluate_assertions.py
results_tracker.py
structural_check.py
SKILL.mdΒ© 2026 Flowy Β· Free and open source
Built for Claude Code Β· Not affiliated with Anthropic