Spektrum API Reference - v1.2.0
    Preparing search index...

    Interface SpektrumManifest

    The manifest returned by describe(). Designed for agent orientation: one call returns everything an agent needs to start reasoning about the running instance.

    interface SpektrumManifest {
        checkpoints: CheckpointView[];
        cursor: number;
        fns: ({ name: string } & FnMeta)[];
        forkCount: number;
        historyLength: number;
        intents: Record<string, number>;
        options: SpektrumOptions;
        refs: string[];
        snapshotCount: number;
        state: State;
        systems: { name: string; paths: string[] }[];
    }
    Index

    Properties

    checkpoints: CheckpointView[]
    cursor: number
    fns: ({ name: string } & FnMeta)[]
    forkCount: number
    historyLength: number
    intents: Record<string, number>

    intent name → number of bound elements carrying that intent

    refs: string[]
    snapshotCount: number
    state: State
    systems: { name: string; paths: string[] }[]