YYHDBL/MyCodeAgent

240 stars · Last commit 2026-07-14

Claude Code like agent for study.

README preview

# MyCodeAgent

MyCodeAgent is a local-first, single-agent Python coding harness. It supplies
the reliable machinery around an OpenAI-compatible model: one controlled loop,
project-confined tools, permission decisions, bounded context, append-only
transcripts, and JSONL traces. It is meant to be installed once and run inside
an unrelated repository.

## Install

Python 3.10+ and [uv](https://docs.astral.sh/uv/) are supported.

```bash
uv sync --locked --extra dev
uv run mycodeagent --help
```

For a regular editable install, use `python -m pip install -e ".[dev]"`.
`pyproject.toml` is the dependency authority; the requirements files are
generated compatibility exports.

View full repository on GitHub →