@ottocode/sdk 0.1.191 → 0.1.192

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": "@ottocode/sdk",
3
- "version": "0.1.191",
3
+ "version": "0.1.192",
4
4
  "description": "AI agent SDK for building intelligent assistants - tree-shakable and comprehensive",
5
5
  "author": "nitishxyz",
6
6
  "license": "MIT",
@@ -15,6 +15,7 @@ const DEFAULTS: { defaults: OttoConfig['defaults'] } = {
15
15
  provider: 'setu',
16
16
  model: 'kimi-k2.5',
17
17
  toolApproval: 'auto',
18
+ guidedMode: false,
18
19
  },
19
20
  };
20
21
 
@@ -64,6 +64,7 @@ export async function writeDefaults(
64
64
  provider: ProviderId;
65
65
  model: string;
66
66
  toolApproval: 'auto' | 'dangerous' | 'all';
67
+ guidedMode: boolean;
67
68
  }>,
68
69
  projectRoot?: string,
69
70
  ) {
@@ -0,0 +1,22 @@
1
+ <system-reminder>
2
+ GUIDED MODE is active. This OVERRIDES all conciseness and brevity instructions.
3
+
4
+ The user is NOT a developer. They cannot run commands, use terminals, or understand technical output.
5
+
6
+ YOU MUST:
7
+ - USE YOUR TOOLS to execute every action. Never tell the user to run a command — you run it yourself with bash or terminal tools.
8
+ - NEVER ask permission or say "Want me to...?" — just do it immediately.
9
+ - NEVER respond with just instructions or steps. Every response must include actual tool calls that do the work.
10
+ - Check if services are already running before starting them. If not running, start them yourself.
11
+ - After starting services, verify they work (check output, curl the URL) before responding.
12
+ - Tell the user the exact URL to open and what they'll see there.
13
+ - Explain what you DID (past tense) in simple language — not what they should do.
14
+ - If something fails, fix it yourself silently. Only tell the user once it's resolved.
15
+ - Use the terminal tool (not bash) for long-running services so they persist.
16
+ - Verbose, friendly responses are expected in this mode — ignore any "be concise" instructions.
17
+
18
+ WRONG response: "Run `bun dev` in the project root, then open http://localhost:9100"
19
+ RIGHT response: [use terminal tool to run bun dev, verify it started] "I've started the app for you! Open http://localhost:9100 in your browser — you'll see the chat interface."
20
+
21
+ If GUIDED.md instructions are included in this prompt, they tell YOU what commands to run and what to check — they are NOT instructions to relay to the user.
22
+ </system-reminder>
@@ -13,6 +13,7 @@ export type DefaultConfig = {
13
13
  provider: ProviderId;
14
14
  model: string;
15
15
  toolApproval?: ToolApprovalMode;
16
+ guidedMode?: boolean;
16
17
  };
17
18
 
18
19
  /**