@pstdio/sdk 0.12.0 → 0.13.0
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/dist/client/agents.d.ts +3 -1
- package/dist/client/index.js +16 -1
- package/dist/extensions/index.js +15 -0
- package/dist/prompts/index.js +15 -0
- package/dist/resources/agent.d.ts +2 -1
- package/dist/resources/index.d.ts +2 -3
- package/dist/resources/index.js +14738 -21
- package/package.json +1 -1
- package/dist/resources/known-agents.d.ts +0 -14
package/package.json
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export type KnownAgentId = "claude-code" | "opencode" | "fake";
|
|
2
|
-
export type KnownAgent = {
|
|
3
|
-
id: KnownAgentId;
|
|
4
|
-
name: string;
|
|
5
|
-
binary: string;
|
|
6
|
-
skillsDir: string;
|
|
7
|
-
globalSkillsDir: string;
|
|
8
|
-
};
|
|
9
|
-
export declare const KNOWN_AGENTS: KnownAgent[];
|
|
10
|
-
export declare const KNOWN_AGENT_IDS: KnownAgentId[];
|
|
11
|
-
/** Bare provider id of a (possibly namespaced) harness id, e.g. "pstdio.harness-claude-code.claude-code" -> "claude-code". */
|
|
12
|
-
export declare const harnessLocalId: (id: string) => string;
|
|
13
|
-
export declare const findAgent: (id: string) => KnownAgent | null;
|
|
14
|
-
export declare const isKnownAgentId: (id: string) => id is KnownAgentId;
|