Integrates Claude Code for automated reviews, analysis, and investigation tasks.
Install
mkdir -p .claude/skills/claude-yuiseki && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12831" && unzip -o skill.zip -d .claude/skills/claude-yuiseki && rm skill.zipInstalls to .claude/skills/claude-yuiseki
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Claude Code CLI(Anthropic)を使用してコードや文言について相談・レビューを行う。 トリガー: "claude", "claudeと相談", "claudeに聞いて", "コードレビュー", "レビューして" 使用場面: (1) 文言・メッセージの検討、(2) コードレビュー、(3) 設計の相談、(4) バグ調査、(5) 解消困難な問題の調査Key capabilities
- →Consult Claude Code CLI for code and wording
- →Perform code reviews
- →Investigate bugs
- →Analyze project architecture
- →Propose refactoring plans
- →Evaluate UI/UX design
How it works
The skill executes the Claude Code CLI with specific parameters, including a prompt that instructs Claude to provide concrete suggestions without asking further questions, and reports the text output.
Inputs & outputs
When to use claude
- →Review code
- →Investigate bugs
- →Analyze project architecture
About this skill
Claude
Claude Code CLIを使用してコードレビュー・分析を実行するスキル。
実行コマンド(現行CLI対応)
cd <project_directory> && claude -p --dangerously-skip-permissions --output-format text "<request>"
任意オプション
--model <model_name>でモデル指定可能(例:sonnet,opus)。-r, --resume <session_id>で既存セッションを再開可能。-c, --continueで直近セッションを継続可能。--output-format json|stream-jsonで機械可読出力に変更可能。--allowed-tools ""でツールを無効化してテキスト応答のみに制限可能。
プロンプトのルール
重要: Claudeに渡すリクエストには、以下の指示を必ず含めること:
「確認や質問は不要です。具体的な提案・修正案・コード例まで自主的に出力してください。」
パラメータ
| パラメータ | 説明 |
|---|---|
cd <dir> | 対象プロジェクトのディレクトリへ移動(Claude CLIに --cwd 相当はないため) |
-p, --print | 非対話モードで応答を出力して終了 |
--dangerously-skip-permissions | 権限確認をスキップ(自動実行・サンドボックス環境向け) |
--output-format text | テキスト形式で出力(既定値だが明示推奨) |
"<request>" | 依頼内容(日本語可) |
--model <model_name> | 任意。モデル指定 |
-r, --resume <session_id> | 任意。既存セッション再開 |
使用例
注意: 各例では末尾に「確認不要、具体的な提案まで出力」の指示を含める。
コードレビュー
cd /path/to/project && claude -p --dangerously-skip-permissions --output-format text "このプロジェクトのコードをレビューして、改善点を指摘してください。確認や質問は不要です。具体的な修正案とコード例まで自主的に出力してください。"
バグ調査
cd /path/to/project && claude -p --dangerously-skip-permissions --output-format text "認証処理でエラーが発生する原因を調査してください。確認や質問は不要です。原因の特定と具体的な修正案まで自主的に出力してください。"
アーキテクチャ分析
cd /path/to/project && claude -p --dangerously-skip-permissions --output-format text "このプロジェクトのアーキテクチャを分析して説明してください。確認や質問は不要です。改善提案まで自主的に出力してください。"
リファクタリング提案
cd /path/to/project && claude -p --dangerously-skip-permissions --output-format text "技術的負債を特定し、リファクタリング計画を提案してください。確認や質問は不要です。具体的なコード例まで自主的に出力してください。"
デザイン相談(UI/UX)
cd /path/to/project && claude -p --dangerously-skip-permissions --output-format text "あなたは世界トップクラスのUIデザイナーです。以下の観点からこのプロジェクトのUIを評価してください: (1) 視覚的階層構造とタイポグラフィ、(2) 余白・スペーシングのリズム、(3) カラーパレットのコントラストとアクセシビリティ、(4) インタラクションパターンの一貫性、(5) ユーザーの認知負荷の軽減。確認や質問は不要です。具体的な改善案をコード例付きで提示してください。"
cd /path/to/project && claude -p --dangerously-skip-permissions --output-format text "UXリサーチャー兼デザイナーとして、このフォームのユーザビリティを分析してください。Nielsen の10ヒューリスティクスに基づき、(1) エラー防止の仕組み、(2) ユーザーの制御と自由度、(3) 一貫性と標準、(4) 認識vs記憶の負荷、(5) 柔軟性と効率性を評価してください。確認や質問は不要です。改善したTailwind CSSコードまで自主的に提示してください。"
実行手順
- ユーザーから依頼内容を受け取る
- 対象プロジェクトのディレクトリを特定する(現在のワーキングディレクトリまたはユーザー指定)
- プロンプトを作成する際、末尾に「確認や質問は不要です。具体的な提案まで自主的に出力してください。」を必ず追加する
- 上記コマンド形式でClaudeを実行
- 結果をユーザーに報告する
When not to use it
- →When the request requires interactive mode
- →When permissions should not be skipped
- →When a specific output format other than text is required without specifying it
Limitations
- →Requires `cd <project_directory>` to navigate to the target project
- →Requires `--dangerously-skip-permissions` for automated execution in sandbox environments
- →Requires `--output-format text` for text output, though it is the default
How it compares
This skill automates interaction with the Claude Code CLI for various development tasks, ensuring direct and actionable feedback without conversational overhead, unlike manual, interactive CLI usage.
Compared to similar skills
claude side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| claude (this skill) | 0 | 5mo | Review | Intermediate |
| error-handling-patterns | 35 | 2mo | No flags | Intermediate |
| codebase-context-extractor | 4 | 9mo | Review | Intermediate |
| investigating-code-patterns | 1 | 8mo | No flags | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by yuiseki
View all by yuiseki →You might also like
error-handling-patterns
wshobson
Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling, designing APIs, or improving application reliability.
codebase-context-extractor
lofcz
This skill provides a comprehensive context extraction system for large codebases. It intelligently analyzes code structure, dependencies, and relationships to extract relevant context for understanding, debugging, or modifying code.
investigating-code-patterns
CaptainCrouton89
Systematically trace code flows, locate implementations, diagnose performance issues, and map system architecture. Use when understanding how existing systems work, researching concepts, exploring code structure, or answering "how/where/why is X implemented?" questions.
investigate
MadAppGang
Unified entry point for code investigation. Auto-routes to specialized detective based on query keywords. Use when investigation type is unclear or for general exploration.
analyse
eschaar
Cross-cutting technical analysis. Investigates impact, tradeoffs, root causes, or feasibility without implementing changes. Use when asked to "analyse this", "investigate the impact", "what are the tradeoffs", "root cause analysis", "is this feasible?", or "compare these approaches". Produces an ana
codex-review
rymetry
|