ワンクリックで
redsub-start-work
Create feature branch and start working.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create feature branch and start working.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Enforced release pipeline. Save → Validate → Review → Version → Merge → Tag → Push.
Initial plugin setup. Register plugins, permissions, create CLAUDE.md.
Diagnose and auto-repair plugin integrity.
Collaborative design through Socratic dialogue. Turn rough ideas into validated designs.
Deployment workflow for dev/prod environments.
Execute implementation plan task-by-task with subagent dispatch and 2-stage review.
| name | redsub-start-work |
| description | Create feature branch and start working. |
$ARGUMENTS provides the branch name.
git fetch origin && git pull origin main
Skip fetch/pull if no remote (local-only repo).
git checkout -b feature/$ARGUMENTS
If $ARGUMENTS already contains feature/, fix/, or chore/ prefix, use as-is.
Branch feature/$ARGUMENTS created. Ready to work.
--worktree)If $ARGUMENTS contains --worktree:
Check in priority order:
.worktrees/ exists → use itworktrees/ exists → use it.worktrees/ (project-local, hidden) or skipgit check-ignore -q .worktrees 2>/dev/null
If NOT ignored: add .worktrees/ to .gitignore and commit.
git worktree add <worktree-dir>/$BRANCH_NAME -b $BRANCH_NAME
cd <worktree-dir>/$BRANCH_NAME
Auto-detect from project files:
package.json → npm install (or pnpm/yarn from lock file)Cargo.toml → cargo buildrequirements.txt → pip install -r requirements.txtgo.mod → go mod downloadRun project tests. Report ready or report failures + ask whether to proceed.