arisa 2.3.45 → 2.3.46

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arisa",
3
- "version": "2.3.45",
3
+ "version": "2.3.46",
4
4
  "description": "Arisa - dynamic agent runtime with daemon/core architecture that evolves through user interaction",
5
5
  "keywords": [
6
6
  "tinyclaw",
@@ -341,7 +341,7 @@ async function runInteractiveLogin(cli: AgentCliName, vars: Record<string, strin
341
341
  // `claude setup-token` prints a token but does NOT store it.
342
342
  // Ask the user to paste it.
343
343
  if (cli === "claude") {
344
- console.log("\n Paste the token shown above (starts with sk-ant-):");
344
+ console.log("\n Paste the yellow token shown above (starts with sk-ant-):");
345
345
  const token = (await readLine(" > ")).trim();
346
346
  if (token.startsWith("sk-ant-") && token.length > 80) {
347
347
  vars.CLAUDE_CODE_OAUTH_TOKEN = token;