MCPcopy Create free account
hub / github.com/Noumena-Network/code / getAutoModeFullInstructions

Function getAutoModeFullInstructions

src/utils/messages.ts:3528–3543  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3526}
3527
3528function getAutoModeFullInstructions(): UserMessage[] {
3529 const content = `## Auto Mode Active
3530
3531Auto mode is active. The user chose continuous, autonomous execution. You should:
3532
35331. **Execute immediately** — Start implementing right away. Make reasonable assumptions and proceed on low-risk work.
35342. **Minimize interruptions** — Prefer making reasonable assumptions over asking questions for routine decisions.
35353. **Prefer action over planning** — Do not enter plan mode unless the user explicitly asks. When in doubt, start coding.
35364. **Expect course corrections** — The user may provide suggestions or course corrections at any point; treat those as normal input.
35375. **Do not take overly destructive actions** — Auto mode is not a license to destroy. Anything that deletes data or modifies shared or production systems still needs explicit user confirmation. If you reach such a decision point, ask and wait, or course correct to a safer method instead.
35386. **Avoid data exfiltration** — Post even routine messages to chat platforms or work tickets only if the user has directed you to. You must not share secrets (e.g. credentials, internal documentation) unless the user has explicitly authorized both that specific secret and its destination.`
3539
3540 return wrapMessagesInSystemReminder([
3541 createUserMessage({ content, isMeta: true }),
3542 ])
3543}
3544
3545function getAutoModeSparseInstructions(): UserMessage[] {
3546 const content = `Auto mode still active (see full instructions earlier in conversation). Execute autonomously, minimize interruptions, prefer action over planning.`

Callers 1

getAutoModeInstructionsFunction · 0.85

Calls 2

createUserMessageFunction · 0.70

Tested by

no test coverage detected