Architect CLI: Open-source tool for orchestrating headless AI coding agents in CI/CD

What Architect CLI does
Architect is an open-source CLI tool built specifically for orchestrating headless AI coding agents in CI/CD environments. It addresses the problem that while AI agents can generate code, there's typically no guarantee the generated code actually works when running unsupervised in pipelines.
Key features from the source
- Ralph Loop: Runs your code, tests it, and if it fails, retries with clean context. This can continue for hours if needed.
- Deterministic guardrails: Includes protected files, blocked commands, and quality gates that the LLM cannot bypass.
- YAML pipelines: Agent workflows are defined as code using YAML configuration.
- Any LLM support: Works with Claude, GPT, DeepSeek, Ollama, and other LLMs via LiteLLM integration. The tool's guarantees remain consistent regardless of which LLM is used.
Design philosophy
The tool is described as "headless-first" and "CI/CD-native," with a focus on verification layers. The creator emphasizes that Architect doesn't compete with interactive tools like Claude Code, Cursor, or Copilot, but rather collaborates with them. The analogy provided is "the difference between the pilot and air traffic control."
Availability and development
Architect is being built with the help of Claude Code, and the creator is seeking feedback from developers running or considering AI agents in CI/CD. The project is available on GitHub with accompanying documentation.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Phaselock: An AI Agent Control System Inspired by Parenting Techniques
Phaselock is an open-source Agent Skill that implements four control mechanisms for AI coding agents: explicit gates before action, immediate feedback on mistakes, constrained choices, and mechanical rule enforcement. It works with Claude Code, Cursor, Windsurf, and any tool supporting hooks.

Claudebin: Export and Share Your Claude Code Sessions
Claudebin allows you to export entire Claude Code sessions, making them shareable and resumable through a single URL.

General Bots: Open-source AI agent platform for self-hosted enterprise automation
General Bots is an open-source platform started in 2019 that provides AI agents, workflow automation, document processing, and integrations with local AI model support, designed for organizations needing full control over their infrastructure.

Fixing Context Bloat in Claude Code Auto-Memory with a Naming Schema and Audit Script
A Claude Code skill enforces a 3-type naming schema, required frontmatter, and a bash audit script to deduplicate memory files and reduce context load.