Skip to main content

CodeLoop

CodeLoop

Multi-provider coding agent — terminal or VS Code, point it at a JSON file, not a vendor SDK.

PyPI Python Tests License Stars VS Marketplace


Documentation: https://dotflow-io.github.io/pycodeloop/

Source Code: https://github.com/dotflow-io/pycodeloop


CodeLoop is a terminal coding agent, in the shape of Claude Code, Codex, or Gemini CLI — except it isn't tied to any one of them. Point it at a plain JSON config and give it a prompt: it drives a tool-use loop (read, write, edit, grep, bash, git, web fetch) against your codebase until the task is done, streaming its reasoning to your shell the whole way.

The key features are:

  • Multi-provider: Anthropic, OpenAI, Gemini, Grok (xAI), Groq, AWS Bedrock, Kimi (Moonshot AI), DeepSeek, Llama (Together AI), Qwen (Alibaba), NVIDIA NIM, Ollama, LM Studio, or any OpenAI-compatible endpoint — swapping models means swapping a JSON file, never touching code. GenericProvider talks HTTP directly, no vendor SDK required.
  • Fast to start: one pip install, one JSON file, one prompt. No boilerplate, no framework to learn first.
  • Safe by default: every write, edit, delete, shell command, commit, or HTTP call shows a diff or command preview and waits for your OK before running.
  • Full-screen chat: bare pycodeloop drops you into a Textual-based terminal UI; pycodeloop run stays scriptable for CI and one-shot use.
  • Skills-aware: auto-discovers SKILL.md/CLAUDE.md, .cursorrules, and AGENTS.md files already on disk and hands them to the agent.
  • MCP-ready: connect any Model Context Protocol server over stdio with one flag; its tools show up alongside the built-in ones.
  • Sub-agent delegation (--delegate, off by default): the agent can spawn read-only sub-agents for independent subtasks — several delegate calls in the same turn run in parallel, same as any other batch of safe tool calls.
  • Persistent memory (--memory, on by default): corrections and standing preferences get saved to .pycodeloop/memory.md and loaded into every future session — say it once.
  • Sessions that persist: conversations survive process restarts and can be resumed from a menu.
  • Also a library: embed the same agent loop in your own app — see the docs for the Config, Agent, and Tool APIs.
  • Editor integration: a VS Code extension (dotflow-io/vscodeloop, also on the Marketplace) puts the same agent in a sidebar panel.

Requirements

Python 3.10+

Installation

pip install pycodeloop

Example

Set your key and point at a ready-made provider template:

export ANTHROPIC_API_KEY=sk-ant-...
pycodeloop run "list the files in this repo and summarize the project" \
  --provider templates/anthropic.json

Or drop into the full-screen chat instead of one-shot mode:

pycodeloop --provider templates/anthropic.json

Set it once as the default so you stop passing --provider every time:

export PYCODELOOP_PROVIDER=templates/anthropic.json
pycodeloop

Switch providers

Every backend is the same JSON shape — templates/ ships one per vendor:

pycodeloop run "..." --provider templates/anthropic.json   # Claude
pycodeloop run "..." --provider templates/openai.json      # GPT
pycodeloop run "..." --provider templates/gemini.json      # Gemini
pycodeloop run "..." --provider templates/grok.json        # Grok (xAI)
pycodeloop run "..." --provider templates/groq.json        # Groq (fast open-weight inference)
pycodeloop run "..." --provider templates/aws.json         # Amazon Bedrock (OpenAI-compatible)
pycodeloop run "..." --provider templates/kimi.json        # Kimi (Moonshot AI)
pycodeloop run "..." --provider templates/deepseek.json    # DeepSeek
pycodeloop run "..." --provider templates/llama.json       # Llama (Together AI)
pycodeloop run "..." --provider templates/qwen.json        # Qwen (Alibaba)
pycodeloop run "..." --provider templates/nvidia.json      # NVIDIA NIM
pycodeloop run "..." --provider templates/ollama.json      # local, no key needed
pycodeloop run "..." --provider templates/lmstudio.json    # local, no key needed

Point it at any OpenAI-compatible HTTP endpoint by writing your own JSON — see docs/examples/provider.example.json and the JSON provider guide. No Python required to add a new backend.

More CLI flags

# Override provider/model per invocation
pycodeloop run "..." --provider templates/openai.json --model gpt-5

# Skip confirmation prompts for dangerous tools
pycodeloop run "..." --yes

# Connect an MCP server, one flag per server
pycodeloop run "list every allowed directory" \
  --mcp "npx -y @modelcontextprotocol/server-filesystem ."

# Skip skills auto-discovery
pycodeloop run "..." --no-skills

# Let the agent delegate independent subtasks to read-only sub-agents
pycodeloop run "..." --delegate

# Skip loading/saving .pycodeloop/memory.md for this run
pycodeloop run "..." --no-memory

The CLI streams the model's text as it arrives, reports token usage after every turn, and caches discovered skills in ~/.pycodeloop/config.json until something changes (--skills-refresh bypasses that).

Tools

Ships with the actions an agent needs to actually change code:

Tool Purpose
read_file Read a file, optionally a line range
write_file Create or overwrite a file
edit_file Replace an exact substring in a file
delete_file Delete a file
list_dir List a directory
glob Find files matching a glob pattern
grep Regex search across files
bash Run a shell command with a timeout
web_fetch Fetch a URL and extract its text
http_request Call a JSON HTTP API — any method, headers, body
git_status Show the working tree status
git_diff Show unstaged or staged changes
git_log Show recent commit history
git_commit Stage and commit changes
env Read environment variables (secrets masked)
sql_schema List a database's tables, or one table's columns
sql_query Run a single read-only SQL statement (SELECT/WITH/EXPLAIN/PRAGMA/SHOW/DESCRIBE)
delegate Spawn a read-only sub-agent for an independent subtask (--delegate, off by default)
remember Save a standing correction/preference to .pycodeloop/memory.md, loaded into every future session's system prompt (--memory, on by default)

write_file, edit_file, delete_file, bash, git_commit, http_request, and every MCP tool are marked dangerous and gated behind confirmation. delegate calls run in parallel with each other in the same turn — the underlying sub-agents only get read-only tools, so there's nothing to confirm.

read_file logs every read/write/edit/delete to ~/.pycodeloop/pycodeloop.db, scoped to the session. Reading the exact same path/range twice with no change on disk in between returns a short notice instead of repeating the content, to save tokens — pass force=true to see it again.

Commit Style

Icon Type Description
⚙️ FEATURE New feature
📝 PEP8 Formatting fixes following PEP8
📌 ISSUE Reference to issue
🪲 BUG Bug fix
📘 DOCS Documentation changes
📦 PyPI PyPI releases
❤️️ TEST Automated tests
⬆️ CI/CD Changes in continuous integration/delivery
⚠️ SECURITY Security improvements

License

This project is licensed under the terms of the MIT License.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycodeloop-0.6.0.tar.gz (63.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pycodeloop-0.6.0-py3-none-any.whl (92.0 kB view details)

Uploaded Python 3

File details

Details for the file pycodeloop-0.6.0.tar.gz.

File metadata

  • Download URL: pycodeloop-0.6.0.tar.gz
  • Upload date:
  • Size: 63.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pycodeloop-0.6.0.tar.gz
Algorithm Hash digest
SHA256 06c7dccb08d475a2101d5a8f17daf17dda8145c0ff65ab909131ba19ef4d1618
MD5 67a4c70f7bccb30ca8ecf9e939267657
BLAKE2b-256 e1b3f589d263d1ae0cd1c219a46240a4077ef96768cd04f789c07bcd8dbf9415

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycodeloop-0.6.0.tar.gz:

Publisher: python-publish-pypi.yml on dotflow-io/pycodeloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycodeloop-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: pycodeloop-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 92.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pycodeloop-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7baaa5dbf5557fcdbbb4e73d4c81fcac794ba3f3b5f16d603860471b19d5f4af
MD5 938ce06e986f2485834bd9de6a733aff
BLAKE2b-256 b3e35ba3f64ed8759835e6b9eccc683ae30cdf49dd5772401464409b58e3a1e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycodeloop-0.6.0-py3-none-any.whl:

Publisher: python-publish-pypi.yml on dotflow-io/pycodeloop

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page