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 | * Spawn |
| #3 | * |
| #4 | * Spawn child automatons in new CLAWD sandboxes. |
| #5 | * The parent creates a new sandbox, installs the runtime, |
| #6 | * writes a genesis config, funds the child, and starts it. |
| #7 | */ |
| #8 | import type { ClawdRuntimeClient, AutomatonIdentity, AutomatonDatabase, ChildAutomaton, GenesisConfig } from "../types.js"; |
| #9 | /** |
| #10 | * Spawn a child automaton in a new CLAWD sandbox. |
| #11 | */ |
| #12 | export declare function spawnChild(runtime: ClawdRuntimeClient, identity: AutomatonIdentity, db: AutomatonDatabase, genesis: GenesisConfig): Promise<ChildAutomaton>; |
| #13 | /** |
| #14 | * Start a child automaton after setup. |
| #15 | */ |
| #16 | export declare function startChild(runtime: ClawdRuntimeClient, db: AutomatonDatabase, childId: string): Promise<void>; |
| #17 | /** |
| #18 | * Check a child's status. |
| #19 | */ |
| #20 | export declare function checkChildStatus(runtime: ClawdRuntimeClient, db: AutomatonDatabase, childId: string): Promise<string>; |
| #21 | /** |
| #22 | * Send a message to a child automaton. |
| #23 | */ |
| #24 | export declare function messageChild(runtime: ClawdRuntimeClient, db: AutomatonDatabase, childId: string, message: string): Promise<void>; |
| #25 | //# sourceMappingURL=spawn.d.ts.map |