import { z } from 'zod/v4'; /*! * SPDX-License-Identifier: AGPL-3.0-or-later * Copyright © 2026 Diego Lima Nogueira de Paula * * This file is part of agent-graph-flow. * * agent-graph-flow is free software: you can redistribute it and/or modify it * under the terms of the GNU Affero General Public License v3.0 or later, as * published by the Free Software Foundation. See LICENSE for the full terms. */ /** * Motor de fases — colapsa as 9 fases internas (herdadas do graph-flow legado) * em 3 fases canônicas SHAPE → BUILD → SHIP. Remove *cerimônia*, não * *disciplina*: o rigor (TDD/AC/DoD) vive dentro de BUILD. O enum interno é * preservado para compat de dados/CLI via `toCanonicalPhase`. * * Ref: RFC token-economy-redesign §6.1. */ declare const CanonicalPhaseSchema: z.ZodEnum<{ SHAPE: "SHAPE"; BUILD: "BUILD"; SHIP: "SHIP"; }>; type CanonicalPhase = z.infer; /** Fases canônicas em ordem de ciclo. */ declare const CANONICAL_PHASES: ("SHAPE" | "BUILD" | "SHIP")[]; /** * agent-graph-flow — public entrypoint. * * Promessa (filtro de toda decisão): software rápido · best-practice SWE · * custo de token brutalmente baixo. Ver CLAUDE.md. * * M0 expõe apenas identidade do produto. M1 traz o motor (graph/context/RAG/ * planner/code-intelligence) e re-exporta os módulos públicos do core. */ declare const VERSION = "0.1.0"; declare const PROMISE: string; export { CANONICAL_PHASES as PHASES, PROMISE, type CanonicalPhase as Phase, VERSION };