npx skillsauth add lilpacy/dotfiles codexInstall 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.
ユーザーの依頼内容をもとに現状のコード、事象、試したこと、ゴールなど不足している文脈や言葉足らずな点を補って、 codex CLI に相談をして回答を得てください。
質問内容: $ARGUMENTS
Bashツールで以下を実行する(timeout: 600000):
codex exec -s <sandbox> --skip-git-repo-check "<prompt>"
--skip-git-repo-check は必須実行結果を取得したら、別のBash呼び出しでアーカイブ保存する:
DIR=~/.claude/codex-responses/$(date +%Y-%m-%d) && mkdir -p "$DIR"
cat > "$DIR/$(date +%H-%M-%S)_$RANDOM.md" << 'EOF'
# Codex Response
- Sandbox: <sandbox>
- Timestamp: <timestamp>
## Prompt
<prompt>
## Response
<response>
EOF
codex exec の出力をユーザーにそのまま伝える。
| 値 | 用途 |
|---|---|
| read-only(デフォルト) | コード読解・設計・レビューなどインターネット不要のタスク |
| workspace-write | ワークスペースへの書き込みが必要なタスク |
| danger-full-access | インターネットアクセスが必要なタスク(Web検索を伴う推論など) |
判定ルール:
-s read-only(sandbox省略不可、明示指定する)-s danger-full-access-s workspace-writeユーザーがモデルを指定した場合のみ -m オプションを追加:
モデルを選択する必要がある場合には、設計・レビューは高価なモデル、実装はコスト効率のいいモデルを基本的に使う。
codex exec -s read-only --skip-git-repo-check -m gpt-5.2-codex "<prompt>"
codex exec の結果がトークン上限を超えてファイルに保存された場合(Output has been saved to ... メッセージ):
[{type, text}] 形式。codexの最終回答は配列の最後の要素のtext末尾にあるpython3 -c "
import json
with open('<保存先パス>') as f:
data = json.load(f)
for item in data:
t = item.get('text','')
if t:
print(t[-3000:])
"
development
Use when searching the web or reading online documentation. Prefer DuckDuckGo for search and read documents through npx curl.md instead of raw HTML.
testing
Use when writing or editing tests. Tests should be ordered by near-normal, normal, then abnormal cases where applicable, and test names must be Japanese behavior descriptions from a reviewer/user perspective.
development
GoF/オブジェクト指向デザインパターンを関数型プログラミング(pure functions, higher-order functions, ADT, composition, immutability, effect boundaries)でシンプルに整理・設計・リファクタリングする。Strategy/Factory/Adapter/ObserverなどGoF全23パターンのFP置き換え、適用判断、具体事例を提示する必要があるときに使う。
tools
Use when committing, pushing, or preparing PRs. Defines the user's commit workflow, message style discovery, review handoff, and branch/worktree push requirements.