@mrrlin-dev/external-agents 0.2.6 → 0.2.8
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.
- package/agents.yaml +13 -0
- package/package.json +1 -1
- package/ui.js +2 -2
package/agents.yaml
CHANGED
|
@@ -345,6 +345,19 @@ agents:
|
|
|
345
345
|
transports:
|
|
346
346
|
edit_exists: "opencode -p"
|
|
347
347
|
|
|
348
|
+
# Kiro CLI (AWS Kiro Studio's headless chat mode). `kiro-cli chat
|
|
349
|
+
# --no-interactive --trust-tools=fs_read "<prompt>"` runs the agent read-only
|
|
350
|
+
# (fs_read only, no writes/exec), which is what /consensus terminal reviewers
|
|
351
|
+
# need. Requires prior `kiro-cli login`; state at ~/.aws/sso equivalent.
|
|
352
|
+
- id: kiro
|
|
353
|
+
provider: kiro
|
|
354
|
+
model: default
|
|
355
|
+
tier: strong
|
|
356
|
+
tags: [agentic]
|
|
357
|
+
auth: "cli:kiro-cli"
|
|
358
|
+
transports:
|
|
359
|
+
edit_exists: "kiro-cli chat --no-interactive --trust-tools=fs_read"
|
|
360
|
+
|
|
348
361
|
# ============ Primary orchestrator (subscription CLI) ============
|
|
349
362
|
# These are strong-tier agentic CLIs backed by an operator subscription — not
|
|
350
363
|
# API keys. `pick_agents` excludes strong-tier by default (weak-only filter),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrrlin-dev/external-agents",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
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",
|
package/ui.js
CHANGED
|
@@ -242,8 +242,8 @@ async function submitSuggest() {
|
|
|
242
242
|
url ? "**Docs / setup URL:** " + url : "**Docs / setup URL:** _(none provided)_",
|
|
243
243
|
"",
|
|
244
244
|
"---",
|
|
245
|
-
|
|
246
|
-
].join(
|
|
245
|
+
'_Submitted via \\'external-agents ui\\' — the local dashboard\\'s Missing-your-model form._',
|
|
246
|
+
].join('\\n');
|
|
247
247
|
const issueUrl =
|
|
248
248
|
"https://github.com/mrrlin-dev/external-agents/issues/new?" +
|
|
249
249
|
"labels=missing-model" +
|