بنقرة واحدة
colleague
Consult Claude Code as a second local AI coding agent for a one-shot peer review when explicitly requested.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Consult Claude Code as a second local AI coding agent for a one-shot peer review when explicitly requested.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | colleague |
| description | Consult Claude Code as a second local AI coding agent for a one-shot peer review when explicitly requested. |
| argument-hint | [question] |
Use this skill only when the user explicitly asks to "ask Claude", "ask a colleague", or "get a second opinion". It gets a one-shot second opinion from Claude Code without letting it take over the repo.
Create a private, unpredictable temp file with mktemp, and clean it up after use:
ctx="$(mktemp -t colleague-ctx.XXXXXX.md)"
trap 'rm -f "$ctx"' EXIT
Write a compact briefing into $ctx. Include only what Claude needs:
Do not dump the raw conversation transcript, tool logs, .env files, API keys, private URLs, tokens, or credentials. Summarize aggressively.
Ask Claude with the installed bridge:
colleague ask claude \
--context "$ctx" \
--question "What is the strongest critique of my current plan?"
Use --model <model> only when the user asks for a specific model. The bridge calls Claude in print mode with no session persistence, one max turn, and --tools "".
Treat the response as peer advice, not ground truth. Compare it to your own analysis.
In your response to the user, say that you consulted Claude, then explain where you agree, disagree, or remain uncertain. Continue with the implementation or recommendation using your own judgment.
# Goal
# Relevant files and snippets
# What I tried
# Current error or dilemma
# Constraints / non-goals
Do not use it for simple questions you can answer directly. Do not use it to outsource user-private or secret material. Do not start a multi-turn agent-to-agent loop; if the answer misses, improve the briefing and ask once more.