For AI agents: the complete documentation index is available at https://scriptedalchemy.github.io/agent-bundle/zh/llms.txt, the full documentation bundle is available at https://scriptedalchemy.github.io/agent-bundle/zh/llms-full.txt, and this page is available as Markdown at https://scriptedalchemy.github.io/agent-bundle/zh/api/types/index.BuildStatus.md.
  • 简体中文
  • Type Alias: BuildStatus

    BuildStatus = Readonly<{ lastAttempt?: CompletedBuildAttempt; state: "idle"; }> | Readonly<{ activeAttempt: RunningBuildAttempt; lastAttempt?: CompletedBuildAttempt; state: "building"; }> | Readonly<{ lastAttempt: FailedBuildAttempt; state: "failed"; }>