@mrrlin-dev/external-agents 0.2.3 → 0.2.4

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/package.json +1 -1
  2. package/ui.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrrlin-dev/external-agents",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
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
@@ -34,7 +34,7 @@ function saveKeysFile(kv) {
34
34
  fs.renameSync(tmp, KEYS_FILE);
35
35
  }
36
36
 
37
- // Resolve agents.yaml relative to this file so `external-agents ui` works from
37
+ // Resolve agents.yaml relative to this file so 'external-agents ui' works from
38
38
  // any cwd (previously the "./agents.yaml" relative path only worked from the
39
39
  // package root).
40
40
  const __ui_dir = path.dirname(new URL(import.meta.url).pathname);
@@ -224,7 +224,7 @@ async function submitSuggest() {
224
224
  out.textContent = "opening GitHub issue…";
225
225
  out.style.color = "#666";
226
226
 
227
- // 1) Fire-and-forget local JSONL record so `external-agents ui` still has an
227
+ // 1) Fire-and-forget local JSONL record so 'external-agents ui' still has an
228
228
  // audit trail even if the user cancels the GitHub tab.
229
229
  fetch("/api/suggest", {
230
230
  method: "POST",
@@ -242,7 +242,7 @@ async function submitSuggest() {
242
242
  url ? "**Docs / setup URL:** " + url : "**Docs / setup URL:** _(none provided)_",
243
243
  "",
244
244
  "---",
245
- "_Submitted via `external-agents ui` — the local dashboard's \"Missing your model?\" form._",
245
+ "_Submitted via 'external-agents ui' — the local dashboard's \"Missing your model?\" form._",
246
246
  ].join("\n");
247
247
  const issueUrl =
248
248
  "https://github.com/mrrlin-dev/external-agents/issues/new?" +