v0.1.0 — first public release
starks is a task-launcher skill for Claude Code & Codex: it grills the requirements, optionally cross-reviews the plan across models (Claude↔Codex), then runs the work with PM-mode parallel sub-agents — without making simple jobs pay for heavy process.
Highlights
- Task tiering — trivial / light / full, so simple work stays fast and only real complexity triggers the full flow.
- Cross-model review (you choose) — at sign-off, optionally send the plan to the other engine for a critical second pass. Never automatic, never silently skipped.
- PM-mode parallel sub-agents — independent slices fan out; tightly-coupled work stays sequential instead of being force-split.
- Two-stage review — spec compliance, then code quality.
- Verification gate — no "done / passing" claim without freshly-run evidence.
- Optional memory layer — project summaries to a knowledge base (e.g. Obsidian); skipped if unconfigured.
- Dual-platform — one `SKILL.md`, symlinked into both Claude Code and Codex.
- Anti-recursion guard — answers once as a cross-reviewer instead of re-entering its own flow.
Install
```bash
git clone https://github.com/uniStark/starks_skill.git
cd starks_skill && bash scripts/install.sh
```
See the README for configuration and the design notes for rationale.