claude/skills/another-ai/SKILL.md
追加のAIをTTY付きの素のCLIで実行するためのミニ手順。詳細は本文参照。
npx skillsauth add kazuph/dotfiles another-aiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
exec/ワンショットモードでは script -q /dev/null ラッパー不要。直接叩く。--skip-git-repo-check を付ける。--sandbox workspace-write --config sandbox_workspace_write.network_access=true --dangerously-bypass-approvals-and-sandbox を毎回付け、-o で最終メッセージだけファイルに吐き cat で取り出す。geminiは -o json | jq -r '.response' で最終応答のみ抽出。command codex でzshエイリアスをバイパスする(フラグ重複回避)。CLAUDECODE= command claude --dangerously-skip-permissions --print "yes"
※ CLAUDECODE= はClaude Codeセッション内から呼ぶ場合に必須(ネスト検出バイパス)。outfile=$(mktemp -t codex)
command codex \
--sandbox workspace-write \
--config sandbox_workspace_write.network_access=true \
--dangerously-bypass-approvals-and-sandbox \
exec --skip-git-repo-check -o "$outfile" "hi" >/dev/null 2>&1
cat "$outfile"
outfile=$(mktemp -t codex)
command codex \
--sandbox workspace-write \
--config sandbox_workspace_write.network_access=true \
--dangerously-bypass-approvals-and-sandbox \
exec --skip-git-repo-check --full-auto -o "$outfile" "hi" >/dev/null 2>&1
cat "$outfile"
/opt/homebrew/bin/mise exec -- gemini --approval-mode=yolo -o json "hi" 2>/dev/null \
| jq -r '.response'
tcgetattr/ioctl: Operation not supported on socket が出る場合、インタラクティブモードを使っている可能性がある。exec モード(codex)やワンショットモード(gemini)に切り替える。それでも出る場合のみ script -q /dev/null でラップ。tools
X (Twitter) API read-only CLI. Bookmarks retrieval, tweet search, engagement analytics (likes/RT aggregation), mentions, user lookup. Use when: reading X bookmarks, searching tweets, aggregating likes/retweets, checking mentions, looking up users. Triggers: bookmark, bookmarks, X search, Twitter search, likes count, RT count, engagement, tweet analytics.
testing
単体テスト方針の要約。Kiro流で使うときは本文を必ず参照・展開する。
tools
Send prompts to other AI CLIs (Codex, Claude Code) running in sibling tmux panes and receive results back. Use this skill when the user asks to send a question or task to Codex or another Claude Code instance in a tmux pane. Handles pane discovery, CLI startup if needed, prompt delivery with proper Enter timing, delivery verification, and result return via tmux send-keys.
data-ai
TAKT ピースエンジン。Agent Team を使ったマルチエージェントオーケストレーション。ピースYAMLワークフローに従ってマルチエージェントを実行する。