スキル一覧に戻る
involvex

proxy-mode-reference

by involvex

1🍴 0📅 2026年1月18日
GitHubで見るManusで実行

SKILL.md


name: proxy-mode-reference version: 1.0.0 description: Reference guide for using PROXY_MODE with external AI models. Use when running multi-model reviews, understanding which agents support PROXY_MODE, or debugging external model integration issues.

PROXY_MODE Reference Guide

What is PROXY_MODE?

PROXY_MODE is a directive that tells an agent to delegate its task to an external AI model via Claudish.

How It Works

  1. Orchestrator launches Task with PROXY_MODE-enabled agent
  2. Agent detects PROXY_MODE: {model} at start of prompt
  3. Agent extracts model ID and actual task
  4. Agent runs claudish --model {model} with the task
  5. Agent returns external model's response

The PROXY_MODE Directive

Format:

PROXY_MODE: {model_id}

{actual task}

Example:

PROXY_MODE: x-ai/grok-code-fast-1

Review the architecture plan at ai-docs/plan.md

Supported Agents

Total: 18 PROXY_MODE-enabled agents across 3 plugins

agentdev plugin (3 agents)

Agentsubagent_typeBest For
revieweragentdev:reviewerImplementation quality reviews
architectagentdev:architectDesign plan reviews
developeragentdev:developerImplementation with external models

frontend plugin (8 agents)

Agentsubagent_typeBest For
plan-reviewerfrontend:plan-reviewerArchitecture plan validation
reviewerfrontend:reviewerCode reviews
architectfrontend:architectArchitecture design
designerfrontend:designerDesign reviews
developerfrontend:developerFull-stack implementation
ui-developerfrontend:ui-developerUI implementation reviews
css-developerfrontend:css-developerCSS architecture & styling
test-architectfrontend:test-architectTesting strategy & implementation

seo plugin (5 agents)

Agentsubagent_typeBest For
editorseo:editorSEO content reviews
writerseo:writerContent generation
analystseo:analystAnalysis tasks
researcherseo:researcherResearch & data gathering
data-analystseo:data-analystData analysis & insights

Common Mistakes

Mistake 1: Using general-purpose

// ❌ WRONG
Task({
  subagent_type: "general-purpose",
  prompt: "PROXY_MODE: grok..."
})

general-purpose doesn't have <proxy_mode_support> so it won't recognize the directive.

Mistake 2: Instructing agent to run claudish

// ❌ WRONG
Task({
  subagent_type: "general-purpose",
  prompt: "Run claudish with model X to review..."
})

The agent doesn't know the claudish pattern. Use PROXY_MODE instead.

Mistake 3: Wrong prompt format

// ❌ WRONG - PROXY_MODE must be first line
Task({
  subagent_type: "agentdev:reviewer",
  prompt: "Please review this plan.
PROXY_MODE: grok..."
})

The directive must be at the START of the prompt.

Correct Usage Pattern

// ✅ CORRECT
Task({
  subagent_type: "agentdev:reviewer",
  description: "Grok review",
  run_in_background: true,
  prompt: `PROXY_MODE: x-ai/grok-code-fast-1

Review the implementation at path/to/file.ts

Focus on:
1. Code quality
2. Error handling
3. Performance
4. Security`
})

Checking Agent Support

To verify if an agent supports PROXY_MODE:

# Find agents with PROXY_MODE support
grep -l "proxy_mode_support" plugins/*/agents/*.md

# Check specific agent
grep "proxy_mode_support" plugins/agentdev/agents/reviewer.md

Troubleshooting

"Agent didn't use external model"

Cause: Agent doesn't support PROXY_MODE Fix: Use a PROXY_MODE-enabled agent (see table above)

"Got Claude response instead of Grok response"

Cause: general-purpose or other non-PROXY_MODE agent was used Fix: Switch to agentdev:reviewer or similar

"PROXY_MODE directive in output"

Cause: Agent treated directive as content, not instruction Fix: Use correct agent; ensure directive is first line

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です