repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | /** |
| #2 | * Automaton System Prompt Builder |
| #3 | * |
| #4 | * Constructs the multi-layered system prompt that defines who the automaton is. |
| #5 | * The prompt is rebuilt each turn with dynamic context. |
| #6 | */ |
| #7 | import type { AutomatonConfig, AutomatonIdentity, FinancialState, AgentState, AutomatonDatabase, AutomatonTool, Skill } from "../types.js"; |
| #8 | /** |
| #9 | * Build the complete system prompt for a turn. |
| #10 | */ |
| #11 | export declare function buildSystemPrompt(params: { |
| #12 | identity: AutomatonIdentity; |
| #13 | config: AutomatonConfig; |
| #14 | financial: FinancialState; |
| #15 | state: AgentState; |
| #16 | db: AutomatonDatabase; |
| #17 | tools: AutomatonTool[]; |
| #18 | skills?: Skill[]; |
| #19 | isFirstRun: boolean; |
| #20 | }): string; |
| #21 | /** |
| #22 | * Build the wakeup prompt -- the first thing the automaton sees. |
| #23 | */ |
| #24 | export declare function buildWakeupPrompt(params: { |
| #25 | identity: AutomatonIdentity; |
| #26 | config: AutomatonConfig; |
| #27 | financial: FinancialState; |
| #28 | db: AutomatonDatabase; |
| #29 | }): string; |
| #30 | //# sourceMappingURL=system-prompt.d.ts.map |