A token-efficient agent skills kit for software engineering workflows. 13 composable skills, designed for Claude Code / Cursor / Continue / Copilot.
| Skill | Purpose | Default mode |
|---|---|---|
hi:cook |
Implement features (plan → code → test → finalize) | fast |
hi:fix |
Fix bugs (scout → diagnose → fix → verify → finalize) | quick |
hi:plan |
Multi-mode planning (fast / full / hard / parallel) | fast |
| Skill | Purpose |
|---|---|
hi:explore |
Parallel codebase explorer (multi-agent file discovery) |
hi:debug |
Systematic debugging + root cause tracing + verification gate |
hi:knows |
Evidence retrieval (Git → MCP → memory) |
hi:log |
Write session log entries to ./docs/logs/ |
hi:problem-solving |
Stuck-unsticking techniques (inversion, collision-zone, scale-game) |
| Skill | Purpose |
|---|---|
hi:scenario |
12-dimension edge case explorer before implementation |
hi:predict |
5-persona pre-analysis debate |
hi:security |
STRIDE + OWASP security audit with iterative auto-fix |
hi:sequential-thinking |
Sequential reasoning with revision / branching / hypothesis testing |
Implement feature: hi:cook (fast) → hi:plan inline → code → test → hi:log → commit
Implement complex: hi:cook (full) → hi:explore → hi:plan (full) → code → review → commit
Fix bug: hi:fix (quick) → scout → diagnose → fix → verify → commit
hi:fix (deep) → hi:explore (parallel) → hi:debug → hi:problem-solving
Pre-flight check: hi:scenario (12 dim) → hi:predict (5 personas) → ship
Security audit: hi:security (STRIDE phases 0-6) → fix mode → re-verify
# Skills are picked up automatically by Claude Code / Cursor / Continue.
# Trigger via slash command or natural language.Install on Cursor (global): copy .cursorrules + skill folders to ~/.cursor/skills/.
Install on Claude Code: copy skill folders to ~/.claude/skills/.
See USAGE_GUIDE.md for per-skill usage, inputs, and outputs.
dev-kit/
├── hi-cook/ SKILL.md + references/ + agents/
├── hi-fix/
├── hi-plan/
├── hi-explore/ (renamed from hi-ciu)
├── hi-debug/ SKILL.md + references/ + scripts/
├── hi-knows/
├── hi-log/
├── hi-problem-solving/ SKILL.md + references/ (7 techniques)
├── hi-scenario/ SKILL.md + references/
├── hi-predict/
├── hi-security/ SKILL.md + references/ + scripts/
├── hi-sequential-thinking/ SKILL.md + references/ (5 files)
├── knows/ Standalone evidence retrieval
├── .cursorrules Cursor auto-load rules
├── AGENTS.md Agent harness instructions
├── CLAUDE.md Project-level Claude instructions
├── devkit.md Workflow diagrams (mermaid) + HARD-GATEs
├── dependency.md Skill-to-skill call graph + missing skills
- HARD-GATE — non-negotiable rules per skill (e.g.
hi:fixblocks before Scout + Diagnose complete) - Inline > Spawn — only spawn sub-skills when really needed (>2 fail, scope too large)
- Mode flags — every orchestrator has
--fast/--full/--review; default = lightest - Evidence over assumption — every claim cites
file:lineorcommit:sha - Vietnamese by default — human-readable outputs (logs, plans) are Vietnamese; technical artifacts keep English
Designed for minimum token burn:
- Default modes skip heavy sub-skill spawns (~80% reduction vs naive workflow)
- Parallel subagents only when 3+ files / 2+ independent issues
- Verification gates prevent over-fixing (typecheck+lint beats full test suite when not needed)
See optimize.md for the full token-burn analysis.
- Create
your-skill/SKILL.mdwith frontmatter:name,description,argument-hint,metadata - Add
references/for supporting docs (optional) - Add
agents/openai.yamlfor Cursor / Copilot picker (optional) - Run
python scripts/sync_manifest.py(auto-regenerates MANIFEST.json)
| Doc | What's in it |
|---|---|
| devkit.md | Mermaid workflow diagrams + HARD-GATEs + cross-skill integration |
| dependency.md | Skill call graph, missing skills, external refs to fix |
MIT