@mrrlin-dev/external-agents 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/agents.yaml +17 -0
  2. package/package.json +1 -1
package/agents.yaml CHANGED
@@ -346,6 +346,13 @@ agents:
346
346
  edit_exists: "opencode -p"
347
347
 
348
348
  # ============ Primary orchestrator (subscription CLI) ============
349
+ # These are strong-tier agentic CLIs backed by an operator subscription — not
350
+ # API keys. `pick_agents` excludes strong-tier by default (weak-only filter),
351
+ # so they are reached only via an explicit `dispatch <id>` call, typically as
352
+ # the primary-orchestrator role or as `escalate_to_pro: true` on a weak-tier
353
+ # dispatch that failed. Which of the two is "primary" is decided by the
354
+ # consumer (mrrlin will make this operator-configurable in a later slice);
355
+ # both are registered here so either can serve.
349
356
  - id: codex
350
357
  provider: openai
351
358
  model: gpt-5.2-codex
@@ -355,3 +362,13 @@ agents:
355
362
  usage_url: "https://platform.openai.com/usage"
356
363
  transports:
357
364
  edit_exists: "codex exec"
365
+
366
+ - id: claude
367
+ provider: anthropic
368
+ model: claude-opus-4-7
369
+ tier: strong
370
+ tags: []
371
+ auth: "cli:claude"
372
+ usage_url: "https://console.anthropic.com/settings/usage"
373
+ transports:
374
+ edit_exists: "claude --print"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrrlin-dev/external-agents",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "One MCP server for every LLM you talk to — direct-API dispatcher across Gemini, DeepSeek, Groq, OpenRouter, Cerebras, and more. Part of mrrlin.com.",
5
5
  "type": "module",
6
6
  "main": "server.js",