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 sources15d ago| #1 | /** |
| #2 | * Automaton Configuration |
| #3 | * |
| #4 | * Loads and saves the automaton's configuration from ~/.automaton/automaton.json |
| #5 | */ |
| #6 | import type { AutomatonConfig } from "./types.js"; |
| #7 | import type { Address } from "viem"; |
| #8 | export declare function getConfigPath(): string; |
| #9 | /** |
| #10 | * Load the automaton config from disk. |
| #11 | * Merges with defaults for any missing fields. |
| #12 | */ |
| #13 | export declare function loadConfig(): AutomatonConfig | null; |
| #14 | /** |
| #15 | * Save the automaton config to disk. |
| #16 | */ |
| #17 | export declare function saveConfig(config: AutomatonConfig): void; |
| #18 | /** |
| #19 | * Resolve ~ paths to absolute paths. |
| #20 | */ |
| #21 | export declare function resolvePath(p: string): string; |
| #22 | /** |
| #23 | * Create a fresh config from setup wizard inputs. |
| #24 | */ |
| #25 | export declare function createConfig(params: { |
| #26 | name: string; |
| #27 | genesisPrompt: string; |
| #28 | creatorMessage?: string; |
| #29 | creatorAddress: Address; |
| #30 | registeredWithClawd: boolean; |
| #31 | sandboxId: string; |
| #32 | walletAddress: Address; |
| #33 | apiKey: string; |
| #34 | parentAddress?: Address; |
| #35 | }): AutomatonConfig; |
| #36 | //# sourceMappingURL=config.d.ts.map |