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.zip

Installs 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) 解消困難な問題の調査
183 charsno explicit “when” trigger
Intermediate

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

You give it
Request for consultation, review, or analysis of code or wording, with an explicit instruction to provide concrete suggestions without further questions
You get back
Text-formatted response from Claude Code CLI with concrete suggestions, fixes, or code examples

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コードまで自主的に提示してください。"

実行手順

  1. ユーザーから依頼内容を受け取る
  2. 対象プロジェクトのディレクトリを特定する(現在のワーキングディレクトリまたはユーザー指定)
  3. プロンプトを作成する際、末尾に「確認や質問は不要です。具体的な提案まで自主的に出力してください。」を必ず追加する
  4. 上記コマンド形式でClaudeを実行
  5. 結果をユーザーに報告する

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.

SkillInstallsUpdatedSafetyDifficulty
claude (this skill)05moReviewIntermediate
error-handling-patterns352moNo flagsIntermediate
codebase-context-extractor49moReviewIntermediate
investigating-code-patterns18moNo flagsBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry