https://github.com/juacker/clai-skills
https://github.com/juacker/clai-skills
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/juacker/clai-skills
- Owner: juacker
- Created: 2026-06-01T20:11:19.000Z (24 days ago)
- Default Branch: main
- Last Pushed: 2026-06-05T18:21:46.000Z (20 days ago)
- Last Synced: 2026-06-05T20:11:34.996Z (20 days ago)
- Size: 13.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CLAI Skills
Curated, read-only skills for CLAI users.
Each skill lives in its own directory and exposes a `SKILL.md` file with
frontmatter metadata plus concise task guidance. CLAI discovers these folders
directly from the repository checkout.
Skills should stay architecture agnostic: they describe task knowledge and
workflow discipline, not a specific runtime topology.
## Catalog
| Skill | Use when |
|-------|----------|
| [code-review-checklist](code-review-checklist/SKILL.md) | Reviewing code changes across correctness, security, concurrency, performance, and tests. |
| [delegation](delegation/SKILL.md) | Splitting separable work across collaborators, tools, or review passes. |
| [iterative-review](iterative-review/SKILL.md) | Shipping code: require independent review, fix validated findings, repeat until clear. |
| [self-reflection](self-reflection/SKILL.md) | Finishing non-trivial work: THINK, WRITE, REFLECT, REVISE before handing off. |
| [unbiased-second-opinion](unbiased-second-opinion/SKILL.md) | Reviewing or validating someone else's theory: treat prior framing as untrusted. |
| [work-ledger](work-ledger/SKILL.md) | Substantial multi-run work that needs durable scope, plan, state, and validation records. |
The review skills compose: `code-review-checklist` defines what a single
review pass checks, `unbiased-second-opinion` governs reviewing work framed
by someone else, and `iterative-review` wraps either in a fix-and-re-review
loop before shipping.