pai
    Preparing search index...

    Type Alias SetupResult

    What setupAgents did.

    type SetupResult = {
        agents: {
            agent: SetupAgent;
            mcp: string | null;
            mcp_added: boolean;
            provider?: ProviderResult;
            skill: string;
        }[];
    }
    Index
    agents: {
        agent: SetupAgent;
        mcp: string | null;
        mcp_added: boolean;
        provider?: ProviderResult;
        skill: string;
    }[]

    One entry per agent set up.

    Type Declaration

    • agent: SetupAgent

      The agent.

    • mcp: string | null

      How to add the MCP server to this agent by hand. null for pi, which has no MCP.

    • mcp_added: boolean

      True when --mcp added the MCP server.

    • Optionalprovider?: ProviderResult

      What --provider changed in Claude Code's settings. Only for claude with --provider.

    • skill: string

      The path the skill was written to.