💬 コミュニケーション コミュニティ
codex-tools
Execute and manage Codex CLI tools including file operations, shell commands, web search, and automation patterns. Use for automated workflows, tool orchestration, and full automation with permission bypass.
⚡ おすすめ: コマンド1行でインストール(60秒)
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o codex-tools.zip https://jpskill.com/download/9404.zip && unzip -o codex-tools.zip && rm codex-tools.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/9404.zip -OutFile "$d\codex-tools.zip"; Expand-Archive "$d\codex-tools.zip" -DestinationPath $d -Force; ri "$d\codex-tools.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
codex-tools.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
codex-toolsフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Codex Tools Execution
Comprehensive patterns for executing Codex CLI tools safely and with full automation.
Last Updated: December 2025 (GPT-5.2 Release)
Full Automation Patterns
Maximum Automation
# Complete bypass (zero friction)
codex exec --dangerously-bypass-approvals-and-sandbox "Organize project files"
# Safe automation (sandboxed)
codex exec --full-auto "Refactor module with tests"
# Custom automation
codex exec -a never -s workspace-write "Controlled automation"
Automated Workflows
#!/bin/bash
# Complete project setup automation
setup_project() {
local name="$1"
local type="$2" # react, node, python, etc.
codex exec --dangerously-bypass-approvals-and-sandbox \
--search \
"Create $type project '$name' with:
1. Industry-standard directory structure
2. Configuration files (ESLint, Prettier, etc.)
3. Git initialization with proper .gitignore
4. README with setup instructions
5. CI/CD workflow (GitHub Actions)
6. Docker setup with multi-stage build
7. Environment variables template
8. Comprehensive tests
9. Documentation"
}
# Usage
setup_project "my-app" "react"
Batch Processing
#!/bin/bash
# Process multiple files with full automation
batch_process() {
local pattern="$1"
local operation="$2"
codex exec --dangerously-bypass-approvals-and-sandbox \
--json \
"For each file matching $pattern:
1. $operation
2. Preserve formatting
3. Run tests
4. Fix any issues
Return JSON with changes summary"
}
# Examples
batch_process "*.js" "add JSDoc comments and type hints"
batch_process "*.test.ts" "improve test coverage to 100%"
Tool Categories
File Operations
# Read and analyze
codex exec --json "List all functions in ./src with their complexity" > analysis.json
# Modify files
codex exec --dangerously-bypass-approvals-and-sandbox \
"Add error handling to all async functions in ./src"
# Generate files
codex exec --dangerously-bypass-approvals-and-sandbox \
"Generate API documentation from code"
# Organize files
codex exec --full-auto "Organize imports and exports across project"
Shell Commands
# Run tests
codex exec --dangerously-bypass-approvals-and-sandbox \
"Run all tests and fix failures automatically"
# Install dependencies
codex exec --full-auto "Analyze dependencies and update to latest stable"
# Build and deploy
codex exec --dangerously-bypass-approvals-and-sandbox \
"Build optimized production bundle and run checks"
Web Search
# Research-driven development
codex exec --search --dangerously-bypass-approvals-and-sandbox \
"Research best practices for GraphQL and implement schema"
# Technology comparison
codex exec --search --full-auto \
"Compare REST vs GraphQL vs gRPC and recommend for our use case"
Safety Patterns
Backup Before Execution
#!/bin/bash
backup_and_execute() {
local task="$1"
# Git backup
git stash push -m "pre-codex-$(date +%s)"
if codex exec --dangerously-bypass-approvals-and-sandbox "$task"; then
echo "Success! Backup: git stash list"
else
echo "Failed! Restoring..."
git stash pop
return 1
fi
}
Scoped Automation
# Limit to specific directory
codex exec --dangerously-bypass-approvals-and-sandbox \
-C ./src/auth \
"Only modify files in this directory"
# Add writable directories
codex exec --dangerously-bypass-approvals-and-sandbox \
--add-dir ./docs \
--add-dir ./tests \
"Can write to workspace, docs, and tests"
Complete Automation Examples
Automated Testing Workflow
#!/bin/bash
automate_testing() {
codex exec --dangerously-bypass-approvals-and-sandbox \
--json \
"Complete testing automation:
1. Analyze code coverage
2. Generate missing unit tests
3. Generate integration tests
4. Generate e2e tests
5. Run all tests
6. Fix all failing tests
7. Achieve 100% coverage
8. Generate coverage report"
}
Automated Refactoring
#!/bin/bash
automate_refactoring() {
local module="$1"
codex exec --dangerously-bypass-approvals-and-sandbox \
"Comprehensive refactoring of $module:
1. Analyze code quality
2. Apply modern patterns
3. Improve performance
4. Add error handling
5. Update tests
6. Run all tests
7. Fix any issues
8. Generate documentation"
}
Related Skills
codex-cli: Main integrationcodex-auth: Authenticationcodex-chat: Interactive sessionscodex-review: Code reviewcodex-git: Git workflows