By mew-ton
One-person AI-driven development framework. Automates the cycle from idea to GitHub Issue, task decomposition, implementation, and review. Supports github-only or linear+github tracker profiles.
Breaks a GitHub Issue into Subtasks with type (develop or design-ui) and story points. Proposes the breakdown for confirmation, then registers each Subtask via the active tracker profile's operation skill.
Designs a Subtask of type design-ui in Figma with tokens, components, and state flows. Transitions the Subtask to In Review on completion.
Implements a develop work unit — either a Subtask or a no-Subtask Issue (per soloscrum-define-branch-commit's case-split). Creates a branch, writes code and tests, generates a PR, and transitions the target to In Review.
Recommends the next action based on backlog and active-work state — continues in-progress work, suggests review, starts the next subtask, or prompts to refine a new idea.
Structures an idea into a GitHub Issue. Runs a backlog janitor first (closes stale Issues whose closing PR has merged), then checks size, suggests splitting when too large, determines priority and SP, and creates the Issue after confirmation.
Design agent. Validates feature design, plans subtask decomposition, assigns task types. Use during /validate and /breakdown commands.
Development agent. Decomposes Issues into Subtasks via the active tracker profile (during /breakdown), and implements code / creates PRs / transitions state for the /develop target (Subtask or no-Subtask Issue per soloscrum-define-branch-commit). Use during /breakdown and /develop commands.
Product Owner agent. Structures ideas into GitHub Issues, evaluates size, determines priority and SP. Use during /refine command.
Review agent. Reviews PR code quality, verifies DoD with layered AC check (Subtask PR vs Issue-without-Subtasks vs parent Issue intent-level sign-off per soloscrum-define-dod), makes Pass/Fail verdict. Use during /review command.
UI agent. Creates Figma components, applies design tokens, maintains UI pattern consistency. Use during /design-ui command.
Structures an idea into a GitHub Issue with Background, Goal, AC, and Out of Scope. Checks issue size, suggests splitting if over threshold, and determines priority and story points. Profile-agnostic.
Reference: which agent or command creates, transitions, and verifies each soloscrum concept (Issue, Subtask, SP, type, priority, state, branch, PR, etc.). Tracker-profile-independent — use together with soloscrum-define-tracker-profile.
Reference: branch naming ({type}/{issue-id}-{slug}, where issue-id is the Subtask or no-Subtask Issue), Conventional Commits, and parent Issue close convention (per-Subtask PRs close only the Subtask; parent closes via /refine janitor). Repo-specific strategy in .claude/rules/branch.md takes precedence.
Reference: standard code review pipeline (CodeRabbit + multi-agent review) and the per-finding decision rules. Severity and confidence scores are inputs to a per-item decision, NOT auto-skip filters. Every CodeRabbit finding is surfaced and judged individually; only agent-generated findings have an additional confidence pre-filter to suppress hallucinations.
Reference: criteria for validating feature design across scope clarity (Goal and AC alignment), dependency identification, and technical feasibility against the project stack.
Uses power tools
Uses Bash, Write, or Edit tools
No model invocation
Executes directly as bash, bypassing the AI model
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
This plugin requires configuration values that are prompted when the plugin is enabled. Sensitive values are stored in your system keychain.
tracker_profileWhere SP, dependencies, and state are stored. Use 'github-only' (default) for repos restricted to GitHub Issues, or 'linear+github' for repos with Linear native sync configured.
${user_config.tracker_profile}一人用AI駆動開発基盤。Claude Plugin として配布する。
ドキュメントサイト: https://mew-ton.github.io/soloscrum/
GitHub Issues を中心に据え、必要に応じて Linear を併用しながら、個人開発のタスク管理・実装・レビューを自律的に回す。
個人開発者が「アイデア → Issue → タスク分解 → 実装 → レビュー」のループを Claude Plugin(skill / subagent / command)によって自律的に回せるようにする。
.claude/rules/ に分離するsoloscrum- プレフィクス)soloscrum はリポジトリごとに2種類の tracker profile を切り替えられる:
| Profile | 用途 |
|---|---|
github-only | デフォルト。GitHub Issues のみ使うリポジトリ向け |
linear+github | Linear MCP と GitHub→Linear ネイティブ同期が有効なリポジトリ向け |
profile によって変わるのは「subtask / SP / state / dependencies の保管場所と API」だけで、概念モデル・ライフサイクル・各エージェントの責務は共通。
.claude/rules/tracker.md の frontmatter profile: (リポジトリ単位の上書き)tracker_profile (ユーザーデフォルト)github-only詳細は skills/soloscrum-define-tracker-profile/SKILL.md を参照。
アイデア
│
▼
/refine Issue構造化・粒度チェック・優先度・SP
│
▼
/validate 機能設計の妥当性・スコープ・依存関係の検証
│
▼
/breakdown subtask分解・タイプ付与(develop / design-ui)
│
├─── type: develop ───────────────────────┐
│ ▼
│ /develop
│ コード実装・PR生成・State遷移
│
└─── type: design-ui ─────────────────────┐
▼
/design-ui
Figma制作・トークン・パターン構築・State遷移
│
▼
/review 品質・DoD照合・SubtaskをDoneに遷移・PRをreadyに promote
(Issueクローズはマージ時のGH `Closes #N` 自動クローズで発火)
| コマンド | 説明 |
|---|---|
/refine | アイデアをIssueに構造化する |
/validate | 機能設計の妥当性を検証する |
/breakdown | IssueをSubtaskに分解しタイプを付与する |
/develop | develop Subtaskを実装する |
/design-ui | design-ui SubtaskをFigmaで制作する |
/review | 実装・デザインをレビューしSubtaskをDoneに遷移する(Issueクローズはマージ時に発火) |
/status | 現在の作業状況を確認する |
/next | 次にやるべきことを提示する |
gh) がインストール・認証済みgithub-only profile では GitHub Projects v2 と Sub-issue が利用可能なリポジトリであることlinear+github profile を使う場合は Linear MCP 接続済み・Linear native GitHub Integration が有効design-ui タスクを使う場合のみ)各プロジェクトリポジトリに以下を配置する(soloscrum 本体には含めない)。
.claude/rules/
tracker.md profile上書き(任意)。frontmatter `profile: github-only|linear+github`
stack.md 技術スタック・ディレクトリ構成・命名規約
branch.md このリポジトリのブランチ戦略
dod-extra.md リポジトリ固有のDoD追加条件
soloscrum/
README.md
.claude-plugin/
plugin.json userConfig.tracker_profile を含む
marketplace.json
commands/ コマンド定義
agents/ エージェント定義
skills/ スキル定義(define-* / tracker-{profile}-* / その他)
npx claudepluginhub mew-ton/soloscrum --plugin soloscrumCoding guidelines as Claude Code skills
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Complete developer toolkit for Claude Code
Intelligent draw.io diagramming plugin with AI-powered diagram generation, multi-platform embedding (GitHub, Confluence, Azure DevOps, Notion, Teams, Harness), conditional formatting, live data binding, and MCP server integration for programmatic diagram creation and management.
Feature development with code-architect/explorer/reviewer agents, CLAUDE.md audit and session learnings, and Agent Skills creation with eval benchmarking from Anthropic.
Orchestrate multi-agent teams for parallel code review, hypothesis-driven debugging, and coordinated feature development using Claude Code's Agent Teams
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.