codex-guide
Codex の使い方、CLI/app/IDE、rules・hooks・AGENTS.md・skills・subagents・config などを案内する。Codex や OpenAI 製品の仕様を答える前に必ず公式ドキュメントを確認し、rules/approval は `codex execpolicy check`…
GitHub Issue・PRの対応判断、優先度付け、依頼されたPRの取り込みを行う。
$ npx -y skills add K9i-0/ccpocket --skill triage --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/triageContext preview
The summary Claude sees to decide when to auto-load this skill.
GitHub Issue・PRの対応判断、優先度付け、依頼されたPRの取り込みを行う。
name: triage description: GitHub Issue・PRの対応判断、優先度付け、依頼されたPRの取り込みを行う。
番号からIssueまたはPRを判定し、対応判断に必要な最小限の調査を行う。
/triage 42 /triage #8 /triage #8 --force # CodeRabbit障害や緊急時のメンテナ例外
共通のIssue APIで種別を判定する。APIエラーをPR扱いしない。PR判定前にコメントを取得しない。
gh api "repos/{owner}/{repo}/issues/<number>" \
--jq '{number,title,body,labels:[.labels[].name],state,author:.user.login,isPR:(.pull_request != null)}'
# PRの場合だけ追加取得。bodyは再取得しない。
gh pr view <number> --json number,isDraft,changedFiles,additions,deletions,headRefOid,reviewDecision,statusCheckRollupIssueなら [references/issue.md](references/issue.md)、PRなら [references/pr.md](references/pr.md) を読む。コメント投稿を依頼された場合だけ [references/comments.md](references/comments.md) を読む。
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…