{"id":35806964,"url":"https://github.com/netresearch/claude-coach-plugin","last_synced_at":"2026-03-14T17:25:39.299Z","repository":{"id":329628763,"uuid":"1118934029","full_name":"netresearch/claude-coach-plugin","owner":"netresearch","description":"Agent Skill: Self-improving learning system - detects friction, proposes improvements | Claude Code compatible","archived":false,"fork":false,"pushed_at":"2026-01-16T21:07:13.000Z","size":171,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-17T04:48:11.740Z","etag":null,"topics":["agent-skills","ai-agent","ai-assistant","automation","claude","claude-code","open-standard","self-learning","skill"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/netresearch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-18T13:49:41.000Z","updated_at":"2026-01-16T21:06:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/netresearch/claude-coach-plugin","commit_stats":null,"previous_names":["netresearch/claude-coach-skill"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/netresearch/claude-coach-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fclaude-coach-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fclaude-coach-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fclaude-coach-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fclaude-coach-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/netresearch","download_url":"https://codeload.github.com/netresearch/claude-coach-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netresearch%2Fclaude-coach-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28520446,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T22:11:28.393Z","status":"ssl_error","status_checked_at":"2026-01-17T22:11:27.841Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent-skills","ai-agent","ai-assistant","automation","claude","claude-code","open-standard","self-learning","skill"],"created_at":"2026-01-07T13:06:51.994Z","updated_at":"2026-03-14T17:25:39.292Z","avatar_url":"https://github.com/netresearch.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Coach\n\nSelf-improving learning system for Claude Code that detects friction signals and proposes rule updates.\n\n## 🔌 Plugin Type: Feature Plugin\n\nThis is a **Feature Plugin** - it provides active automation via hooks and slash commands that run during your session, unlike Skill Plugins which only provide reference knowledge.\n\n**What makes it a Feature Plugin:**\n- Hooks that detect friction signals in real-time\n- Slash commands for reviewing and approving changes\n- Session analysis and cross-repo learning\n\n\u003e Coach follows the [Agent Skills specification](https://agentskills.io) and includes a skill component (`SKILL.md`), but extends it with automation features.\n\n**Supported Platforms:**\n- ✅ Claude Code (Anthropic)\n- ✅ Other platforms supporting hooks and commands\n\n## Features\n\n- **Signal Detection**: Automatically detects user corrections, tool failures, repeated instructions, and tone escalation\n- **Skill Update Suggestions**: Detects when users supplement skills with additional guidance and proposes skill updates\n- **Outdated Tool Detection**: Identifies deprecated tools and outdated dependencies from command output\n- **LLM-Assisted Generation**: Uses Claude Haiku to generate specific, actionable learning candidates\n- **Transcript Analysis**: Analyzes full session transcripts at session end for comprehensive learning\n- **Cross-Repo Learning**: Tracks patterns across repositories and proposes promotion to global rules\n- **Proactive Scanning**: `/coach scan` checks for outdated CLI tools and project dependencies\n- **Approval Workflow**: All changes require explicit user approval\n\n## Installation\n\nInstall via Claude Code plugin marketplace:\n\n```bash\n/plugin marketplace add netresearch/claude-code-marketplace\n```\n\nThen install Coach from the plugin list. The plugin auto-configures itself on first use.\n\n## Slash Commands\n\n| Command | Description |\n|---------|-------------|\n| `/coach status` | Show system status and statistics |\n| `/coach review` | Show pending learning proposals |\n| `/coach approve \u003cid\u003e` | Approve and apply a proposal |\n| `/coach reject \u003cid\u003e` | Reject a proposal with reason |\n| `/coach edit \u003cid\u003e` | Edit a proposal before approving |\n| `/coach promote \u003cid\u003e` | Promote project rule to global |\n| `/coach scan` | Scan for outdated tools and dependencies |\n| `/coach init` | Initialize the coach system |\n\n## How It Works\n\n1. **Hooks** detect friction signals as you work:\n   - `UserPromptSubmit`: Detects corrections and repetition in user messages\n   - `PostToolUse`: Captures command failures with exit codes\n   - `Stop`: Runs full aggregation at session end\n\n2. **Signals** are stored in `~/.claude-coach/events.sqlite`\n\n3. **Candidates** are generated from patterns in signals\n\n4. **Review** candidates with `/coach review` and approve/reject\n\n5. **Rules** are added to your CLAUDE.md files\n\n## Configuration\n\nThe plugin auto-configures hooks. For manual configuration or customization, see `hooks/hooks.json`.\n\n## Stable Hook Paths\n\nCoach automatically maintains stable hook paths that survive plugin version updates. Hooks run asynchronously for improved performance.\n\n**How it works:**\n1. On first hook execution, Coach auto-installs `~/.claude-coach/bin/coach-run` launcher\n2. Settings.json hooks are automatically upgraded to use the stable launcher with `--async` mode\n3. The launcher dynamically resolves the current plugin version at runtime\n4. Async mode spawns scripts in background - hooks return immediately without blocking Claude Code\n5. Future plugin updates work seamlessly - no user action required\n\n**Manual recovery (if needed):**\nIf hooks break after an update, running `/coach init` will repair them.\n\n## License\n\nThis project uses split licensing:\n\n- **Code** (scripts, workflows, configs): [MIT](LICENSE-MIT)\n- **Content** (skill definitions, documentation, references): [CC-BY-SA-4.0](LICENSE-CC-BY-SA-4.0)\n\nSee the individual license files for full terms.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetresearch%2Fclaude-coach-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetresearch%2Fclaude-coach-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetresearch%2Fclaude-coach-plugin/lists"}