nexus-agents - v2.80.0
    Preparing search index...

    Interface Artifact

    Full artifact with content and metadata.

    interface Artifact {
        id: string;
        type:
            | "code"
            | "plan"
            | "analysis"
            | "review"
            | "test"
            | "spec"
            | "report"
            | "vote";
        content: unknown;
        metadata: Record<string, unknown>;
        createdBy: string;
        createdAt: number;
        inputRefs: readonly {
            id: string;
            type:
                | "code"
                | "plan"
                | "analysis"
                | "review"
                | "test"
                | "spec"
                | "report"
                | "vote";
        }[];
    }
    Index

    Properties

    id: string
    type:
        | "code"
        | "plan"
        | "analysis"
        | "review"
        | "test"
        | "spec"
        | "report"
        | "vote"
    content: unknown
    metadata: Record<string, unknown>
    createdBy: string
    createdAt: number
    inputRefs: readonly {
        id: string;
        type:
            | "code"
            | "plan"
            | "analysis"
            | "review"
            | "test"
            | "spec"
            | "report"
            | "vote";
    }[]