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 | import type { PreflightReport } from "../config.js"; |
| #2 | export interface VulcanBridgeCommand { |
| #3 | command: string; |
| #4 | args: string[]; |
| #5 | cwd: string; |
| #6 | env: Record<string, string>; |
| #7 | } |
| #8 | export interface VulcanExecutionIntent { |
| #9 | action: "market-list" | "ticker" | "positions" | "paper-buy" | "paper-sell" | "live-buy" | "live-sell"; |
| #10 | symbol?: string; |
| #11 | notionalUsd?: number; |
| #12 | } |
| #13 | export interface VulcanExecutionPlan { |
| #14 | transport: "cli"; |
| #15 | mode: "observe" | "paper" | "live"; |
| #16 | preflight: PreflightReport; |
| #17 | command: VulcanBridgeCommand; |
| #18 | } |
| #19 | export declare function mapToVulcanCommand(repoRoot: string, input: VulcanExecutionIntent): VulcanBridgeCommand; |
| #20 | export declare function buildVulcanExecutionPlan(repoRoot: string, input: VulcanExecutionIntent, preflight: PreflightReport): VulcanExecutionPlan; |
| #21 |