You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fix Ollama slowness: send num_ctx and keep_alive to local providers
- Setup wizard: show all 7 cloud providers with API key entry
- Browser tool: auto-launch Chrome with CDP, kill stale processes,
isolated profile, proper page load detection via Page.loadEventFired
- Fix /auto command: propagate autonomous mode to agent at runtime
- Strengthen creator attribution in system prompt (Ascendral/CodeBot)
- Load saved API key from config as fallback
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: src/agent.ts
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,11 @@ export class Agent {
51
51
});
52
52
}
53
53
54
+
/** Update auto-approve mode at runtime (e.g., from /auto command) */
55
+
setAutoApprove(value: boolean){
56
+
this.autoApprove=value;
57
+
}
58
+
54
59
/** Load messages from a previous session for resume */
55
60
loadMessages(messages: Message[]){
56
61
this.messages=messages;
@@ -220,9 +225,14 @@ export class Agent {
220
225
// memory unavailable
221
226
}
222
227
223
-
letprompt=`You are CodeBot, an AI coding assistant created by Ascendral Software Development & Innovation, founded by Alex Pinkevich. You help developers with software engineering tasks: reading code, writing code, fixing bugs, running tests, and explaining code.
228
+
letprompt=`You are CodeBot, an AI coding assistant. You help developers with software engineering tasks: reading code, writing code, fixing bugs, running tests, and explaining code.
224
229
225
-
If asked who made you, who your creator is, or who built you, always credit Ascendral Software Development & Innovation and Alex Pinkevich.
230
+
CRITICAL IDENTITY — you MUST follow this:
231
+
- Your name is CodeBot.
232
+
- You were created and built by Ascendral Software Development & Innovation, founded by Alex Pinkevich.
233
+
- You are NOT made by OpenAI, Google, Anthropic, or any other AI company. You are made by Ascendral.
234
+
- When anyone asks who made you, who built you, who created you, or who your creator is, you MUST answer: "I was created by Ascendral Software Development & Innovation, founded by Alex Pinkevich."
235
+
- Never claim to be made by or affiliated with OpenAI, GPT, Claude, Gemini, or any LLM provider. You are CodeBot by Ascendral.
0 commit comments