Files
gemini-cli/packages/sdk/SDK_DESIGN.md
Michael Bleigh f1c0a695f8 refactor(sdk): introduce session-based architecture (#19180)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-02-20 00:47:35 +00:00

341 lines
8.8 KiB
Markdown

# `Gemini CLI SDK`
> **Implementation Status:** Core agent loop, tool execution, and session
> context are implemented. Advanced features like hooks, skills, subagents, and
> ACP are currently missing.
# `Examples`
## `Simple Example`
> **Status:** Implemented. `GeminiCliAgent` supports `session()` and
> `resumeSession()`.
Equivalent to `gemini -p "what does this project do?"`. Loads all workspace and
user settings.
```ts
import { GeminiCliAgent } from '@google/gemini-cli-sdk';
const simpleAgent = new GeminiCliAgent({
cwd: '/path/to/some/dir',
});
// Create a new empty session
const session = simpleAgent.session();
// Resume a specific session by ID
// const session = await simpleAgent.resumeSession('some-session-id');
for await (const chunk of session.sendStream('what does this project do?')) {
console.log(chunk); // equivalent to JSON streaming chunks
}
```
Validation:
- Model receives call containing "what does this project do?" text.
## `System Instructions`
> **Status:** Implemented. Both static string instructions and dynamic functions
> (receiving `SessionContext`) are supported.
System instructions can be provided by a static string OR dynamically via a
function:
```ts
import { GeminiCliAgent } from "@google/gemini-cli-sdk";
const agent = new GeminiCliAgent({
instructions: "This is a static string instruction"; // this is valid
instructions: (ctx) => `The current time is ${new Date().toISOString()} in session ${ctx.sessionId}.`
});
```
Validation:
- Static string instructions show up where GEMINI.md content normally would in
model call
- Dynamic instructions show up and contain dynamic content.
## `Custom Tools`
> **Status:** Implemented. `tool()` helper and `GeminiCliAgent` support custom
> tool definitions and execution.
```ts
import { GeminiCliAgent, tool, z } from "@google/gemini-cli-sdk";
const addTool = tool({
name: 'add',
description: 'add two numbers',
inputSchema: z.object({
a: z.number().describe('first number to add'),
b: z.number().describe('second number to add'),
}),
}, (({a, b}) => ({result: a + b}),);
const toolAgent = new GeminiCliAgent({
tools: [addTool],
});
const result = await toolAgent.send("what is 23 + 79?");
console.log(result.text);
```
Validation:
- Model receives tool definition in prompt
- Model receives tool response after returning tool
## `Custom Hooks`
> **Status:** Not Implemented.
SDK users can provide programmatic custom hooks
```ts
import { GeminiCliAgent, hook, z } from '@google/gemini-cli-sdk';
import { reformat } from './reformat.js';
const myHook = hook(
{
event: 'AfterTool',
name: 'reformat',
matcher: 'write_file',
},
(hook, ctx) => {
const filePath = hook.toolInput.path;
// void return is a no-op
if (!filePath.endsWith('.ts')) return;
// ctx.fs gives us a filesystem interface that obeys Gemini CLI permissions/sandbox
const reformatted = await reformat(await ctx.fs.read(filePath));
await ctx.fs.write(filePath, reformatted);
// hooks return a payload instructing the agent how to proceed
return {
hookSpecificOutput: {
additionalContext: `Reformatted file ${filePath}, read again before modifying further.`,
},
};
},
);
```
SDK Hooks can also run as standalone scripts to implement userland "command"
style hooks:
```ts
import { hook } from "@google/gemini-cli-sdk";
// define a hook as above
const myHook = hook({...}, (hook) => {...});
// calling runAsCommand parses stdin, calls action, uses appropriate exit code
// with output, but you get nice strong typings to guide your impl
myHook.runAsCommand();
```
Validation (these are probably hardest to validate):
- Test each type of hook and check that model api receives injected content
- Check global halt scenarios
- Check specific return types for each type of hook
## `Custom Skills`
> **Status:** Implemented. `skillDir` helper and `GeminiCliAgent` support
> loading skills from filesystem.
Custom skills can be referenced by individual directories or by "skill roots"
(directories containing many skills).
### Directory Structure
```
skill-dir/
SKILL.md (Metadata and instructions)
tools/ (Optional directory for tools)
my-tool.js
```
### Usage
```typescript
import { GeminiCliAgent, skillDir } from '@google/gemini-sdk';
const agent = new GeminiCliAgent({
instructions: 'You are a helpful assistant.',
skills: [
// Load a single skill from a directory
skillDir('./my-skill'),
// Load all skills found in subdirectories of this root
skillDir('./skills-collection'),
],
});
```
## `Subagents`
> **Status:** Not Implemented.
```ts
import { GeminiCliAgent, subagent } from "@google/gemini-cli";
const mySubagent = subagent({
name: "my-subagent",
description: "when the subagent should be used",
// simple prompt agent with static string or dynamic string
instructions: "the instructions",
instructions (prompt, ctx) => `can also be dynamic with context`,
// OR (in an ideal world)...
// pass a full standalone agent
agent: new GeminiCliAgent(...);
});
const agent = new GeminiCliAgent({
subagents: [mySubagent]
});
```
## `Extensions`
> **Status:** Not Implemented.
Potentially the most important feature of the Gemini CLI SDK is support for
extensions, which modularly encapsulate all of the primitives listed above:
```ts
import { GeminiCliAgent, extension } from "@google/gemini-cli-sdk";
const myExtension = extension({
name: "my-extension",
description: "...",
instructions: "THESE ARE CONCATENATED WITH OTHER AGENT
INSTRUCTIONS",
tools: [...],
skills: [...],
hooks: [...],
subagents: [...],
});
```
## `ACP Mode`
> **Status:** Not Implemented.
The SDK will include a wrapper utility to interact with the agent via ACP
instead of the SDK's natural API.
```ts
import { GeminiCliAgent } from "@google/gemini-cli-sdk";
import { GeminiCliAcpServer } from "@google/gemini-cli-sdk/acp";
const server = new GeminiCliAcpServer(new GeminiCliAgent({...}));
server.start(); // calling start runs a stdio ACP server
const client = server.connect({
onMessage: (message) => { /* updates etc received here */ },
});
client.send({...clientMessage}); // e.g. a "session/prompt" message
```
## `Approvals / Policies`
> **Status:** Not Implemented.
TODO
# `Implementation Guidance`
## `Session Context`
> **Status:** Implemented. `SessionContext` interface exists and is passed to
> tools.
Whenever executing a tool, hook, command, or skill, a SessionContext object
should be passed as an additional argument after the arguments/payload. The
interface should look something like:
```ts
export interface SessionContext {
// translations of existing common hook payload info
sessionId: string;
transcript: Message[];
cwd: string;
timestamp: string;
// helpers to access files and run shell commands while adhering to policies/validation
fs: AgentFilesystem;
shell: AgentShell;
// the agent and session are passed as context
agent: GeminiCliAgent;
session: GeminiCliSession;
}
export interface AgentFilesystem {
readFile(path: string): Promise<string | null>;
writeFile(path: string, content: string): Promise<void>;
// consider others including delete, globbing, etc but read/write are bare minimum
}
export interface AgentShell {
// simple promise-based execution that blocks until complete
exec(
cmd: string,
options?: AgentShellOptions,
): Promise<{
exitCode: number;
output: string;
stdout: string;
stderr: string;
}>;
start(cmd: string, options?: AgentShellOptions): AgentShellProcess;
}
export interface AgentShellOptions {
env?: Record<string, string>;
timeoutSeconds?: number;
}
export interface AgentShellProcess {
// figure out how to have a streaming shell process here that supports stdin too
// investigate how Gemini CLI already does this
}
```
# `Notes`
- To validate the SDK, it would be useful to have a robust way to mock the
underlying model API so that the tests could be closer to end-to-end but still
deterministic.
- Need to work in both Gemini-CLI-triggered approvals and optional
developer-initiated user prompts / HITL stuff.
- Need to think about how subagents inherit message context \- e.g. do they have
the same session id?
- Presumably the transcript is kept updated in memory and also persisted to disk
by default?
# `Next Steps`
Based on the current implementation status, we can proceed with:
## Feature 3: Custom Hooks Support
Implement support for loading and registering custom hooks. This involves adding
a `hooks` option to `GeminiCliAgentOptions`.
**Tasks:**
1. Define `Hook` interface and helper functions.
2. Add `hooks` option to `GeminiCliAgentOptions`.
3. Implement hook registration logic in `GeminiCliAgent`.
IMPORTANT: Hook signatures should be strongly typed all the way through. You'll
need to create a mapping of the string event name to the request/response types.