Files
paseo/packages/client/examples/agents-and-providers.ts
Mohamed Boudra 53c14d9855 Extract client SDK package (#1052)
* Extract client SDK package

* Polish SDK client identity defaults

* Build client before dependent CI jobs

* Restore daemon client server export

* Extract protocol and client SDK packages

* Fix provider override schema validation

* Fix app test daemon client imports

* Simplify workspace build targets

* Fix CLI test server build bootstrap

* Run SDK package tests in CI

* Fix rebase package split drift

* Restore lockfile registry metadata

* Update SDK config test for prompt default

* Move terminal stream router test to client package

* Fix rebase drift for protocol imports

* Fix SDK agent capability fixture

* Restore legacy server client exports

* Fix server export compatibility test

* Advertise custom mode icon client capability

* Remove server daemon-client exports

* Format rebased mode control import

* Fix rebase drift for protocol imports

Files added by upstream PRs (#893, #1147, #1154) referenced the pre-split
shared/ paths that this branch moves into @getpaseo/protocol. Redirect
those imports to the protocol package so typecheck stays green after the
rebase.
2026-05-28 01:58:18 +08:00

57 lines
1.4 KiB
TypeScript

import { createPaseoClient, type PaseoClient } from "@getpaseo/client";
export function createClient(url: string): PaseoClient {
return createPaseoClient({
url,
});
}
export async function createCodexAgent(url: string, cwd: string): Promise<string> {
const client = createClient(url);
try {
await client.connect();
const agent = await client.agents.create({
config: {
...client.providers.codex({
model: "gpt-5.2",
modeId: "full-auto",
}),
cwd,
},
initialPrompt: "Inspect this repository and summarize the next useful task.",
});
return agent.id;
} finally {
await client.close();
}
}
export async function chooseProviderFromSnapshot(url: string, cwd: string): Promise<string> {
const client = createClient(url);
try {
await client.connect();
const snapshot = await client.providers.snapshot({ cwd });
const readyProvider = snapshot.entries.find((provider) => provider.status === "ready");
const providerConfig = readyProvider
? client.providers.config(readyProvider.provider)
: client.providers.claude();
const agent = await client.agents.create({
config: {
...providerConfig,
cwd,
},
initialPrompt: "Start with a quick repository map.",
});
return agent.id;
} finally {
await client.close();
}
}