codex-guide
Codex の使い方、CLI/app/IDE、rules・hooks・AGENTS.md・skills・subagents・config などを案内する。Codex や OpenAI 製品の仕様を答える前に必ず公式ドキュメントを確認し、rules/approval は `codex execpolicy check`…
ブランチをメインにマージしてお掃除する
$ npx -y skills add K9i-0/ccpocket --skill merge --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/mergeContext preview
The summary Claude sees to decide when to auto-load this skill.
ブランチをメインにマージしてお掃除する
name: merge description: ブランチをメインにマージしてお掃除する allowed-tools: Bash(git:*)
作業ブランチを main にマージし、不要になったブランチと worktree を削除する。
git branch --show-current
git status --short
git checkout main
git merge --no-ff <branch>
git branch -d <branch>
git worktree list
git worktree remove <worktree-path>
最終状態を表示する:
git log --oneline -5 git branch git worktree list
Your agents. In your pocket. Codex and Claude, with a chat UI made for your phone. Start a task, approve the next step, and review the result. Pick up the same work on your tablet or Mac.
Codex の使い方、CLI/app/IDE、rules・hooks・AGENTS.md・skills・subagents・config などを案内する。Codex や OpenAI 製品の仕様を答える前に必ず公式ドキュメントを確認し、rules/approval は `codex execpolicy check`…
Flutter UI実装のアーキテクチャ規約・コンポーネント分割・状態管理ガイド(Bloc/Cubit版)
Flutter SDKのアップグレード、または指定バージョンへの移行影響を調査するときに使う。
FlutterアプリのUI動作をシミュレーターで検証する、またはBridgeとのE2Eを確認するときに使う。
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web…