AIAny
AI Agent2025
Icon for item

OpenAgents Control (OAC)

Wraps the OpenCode CLI with a plan-first workflow: agents propose a plan you approve before any code is written, and a ContextScout step loads your repo's existing patterns so output matches house style, not generic boilerplate.

Introduction

Most AI coding tools optimize for raw generation quality; this one optimizes for the moment before generation, betting that the real cost of agentic coding is rework, not tokens. Built as a layer on top of the open-source OpenCode CLI, it inserts two gates into the loop: a ContextScout pass that distills your repo's existing conventions into a compact brief, and a human approval step where you sign off on the agent's plan before a single line is written.

What Sets It Apart
  • Plan-first, approval-gated. A multi-stage workflow routes work through specialized subagents (context scout, coder, test engineer, code reviewer) but pauses for your sign-off, so a wrong assumption costs a review click instead of a full refactor.
  • Context as a committed artifact. Project patterns live as markdown under .opencode/context/ and ship with the repo, so the same house style applies whether you or a teammate runs the agent.
  • Minimal Viable Information (MVI). Instead of stuffing whole files into context, it loads only the patterns a task needs; the author reports roughly 80% less context overhead, which matters most on large codebases.
  • Editable, not black-box. Agents are plain markdown you can read and rewrite, and it runs against Claude, GPT, or Gemini rather than locking you to one provider.
Who It's For

Great fit if you have an established codebase with conventions worth enforcing and a team that wants AI output to match them by default — especially if you already use OpenCode or want the companion Claude Code plugin. Look elsewhere if you want zero-config autopilot: the approval gates and context setup are deliberate friction, and the payoff only appears once you've invested in writing your patterns down. As a solo, MIT-licensed project rather than a vendor product, expect fast iteration over long-term support guarantees.

Information

  • Websitegithub.com
  • AuthorsDarren Hinde
  • Published date2025/08/14

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.