rscot-agent 1.7.49 → 1.7.50

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/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -21,7 +21,7 @@ function bgRgb(r, g, b, fg) {
21
21
  const prefix = `\x1B[48;2;${r};${g};${b}m`;
22
22
  return (s) => prefix + fg(s) + RESET;
23
23
  }
24
- var accentRgb = rgb(217, 119, 87);
24
+ var accentRgb = rgb(91, 91, 214);
25
25
  var successRgb = rgb(86, 211, 100);
26
26
  var palette = {
27
27
  accent: accentRgb,
@@ -2310,7 +2310,7 @@ async function runOneShotNative(prompt, workspace, backendUrl2) {
2310
2310
  }
2311
2311
 
2312
2312
  // src/repl.ts
2313
- var VERSION = "1.7.49";
2313
+ var VERSION = "1.7.50";
2314
2314
  var BUILD = "a7f31c2";
2315
2315
  function homeShort(p) {
2316
2316
  const h = homedir4();
@@ -3146,7 +3146,7 @@ async function cmdKeysRemove(providerId) {
3146
3146
  if (process.stdout.isTTY || process.env.FORCE_COLOR) {
3147
3147
  kleur2.enabled = true;
3148
3148
  }
3149
- var VERSION3 = "1.7.49";
3149
+ var VERSION3 = "1.7.50";
3150
3150
  var AUTH_FREE_COMMANDS = /* @__PURE__ */ new Set([
3151
3151
  "login",
3152
3152
  "logout",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rscot-agent",
3
- "version": "1.7.49",
3
+ "version": "1.7.50",
4
4
  "description": "Rscot Agent (rscot) — local-first, source-available coding agent. One-shot npx onramp that walks you through provider/key setup.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "type": "module",