code-yeongyu/my-claude-code-harness — Summary
my-claude-code-harness is a personal Claude Code configuration by Korean developer yeongyu (GitHub: code-yeongyu), a minimal but philosophically opinionated harness for orchestrating multi-agent Claude Code workflows. It has 13 stars, no license, and was last updated 2025-11-28. The developer explicitly states: "I'm confident this setup will become deprecated and outdated in less than 3 months" — acknowledging it as a point-in-time personal setup, not a maintained product.
The harness consists of: 3 agents (orchestrator-style executor, librarian, plan-reviewer), 5 slash commands (/planner, /execute, /commit, /create-pr, /read-pr), 3 skills (git-committer, pr-context-retrieval, pr-creator), and 3 hook event types (UserPromptSubmit, PostToolUse, Stop). The PostToolUse hook runs extensive Python static analysis on every file modification: ruff lint, type checking, import-in-function detection, comment style enforcement, TypedDict detection, language guide injection, and conftest.py injection.
The workflow is: /planner → ai-todolist.md → [optional plan-reviewer loop] → /execute → orchestrator agent → executor agents (Haiku model, one-at-a-time). The executor agent prompt uses aggressive, profane language to enforce atomic task execution — the developer explicitly treats this as "attention weight engineering."
Differs from seeds: Most similar to taskmaster-ai (plan → execute pipeline) and bmad-method (multi-agent persona system), but uniquely combines aggressive attention-weight prompt engineering, comprehensive Python static analysis hooks, and explicit single-task-at-a-time enforcement via profanity. No seed uses hooks for static analysis. The profane executor prompt is the single most unusual feature in the entire batch.