Skip to content

jeo-code v0.2.0 — real coding agent

Choose a tag to compare

@akillness akillness released this 01 Jun 15:13
· 318 commits to main since this release

jeoc is now a working LLM coding agent.

Install

bun install -g github:akillness/jeo-code
jeoc --version   # 0.2.0

New: jeoc agent + jeoc config

  • jeoc agent — tool-calling turn loop (bash/read_file/write_file/list_dir), mirrors gjc agent-core.
  • jeoc config — provider+model config (.jeoc/config.json + env), secrets masked.
  • Providers: gemini, anthropic, openai (real HTTP via fetch) + mock (hermetic, scriptable).
jeoc config set provider gemini && export GEMINI_API_KEY=...
jeoc agent "add a hello() to util.ts and run tests"
jeoc agent "" --provider mock   # no key needed

Also retains jeoc autopilot (autopilot×autoresearch ratchet) and jeoc ledger.
gjc internals mapped by subagents into docs/05–07. 16 passing tests + green CI. Zero runtime deps.