CODELOOM(1) User Commands CODELOOM(1)
codeloom
codeloom — a coding agent you invoke like any other Unix tool. Pipe a stack trace in, get a patch out.
SYNOPSIS
codeloom <command> [options] [file ...] cat logs.txt | codeloom fix [--pr] [--json] codeloom fix --file src/api.ts --dry-run
coming soon · cli.codeloom.iresharma.com · MIT · Iresh Sharma
DESCRIPTION
CodeLoom CLI is the boring sibling. No editor chrome, no TUI, no dashboard. It speaks stdin, flags, exit codes, and a patch you can pipe into git. Non-interactive mode is the point: fail closed in GitHub Actions, leave a comment, not a mystery.
stdin → stdout
Logs in, patch or PR URL out.
CI native
--pr, --json, exit 1 on failure.
One binary
Install it, alias it, forget the UI.
OPTIONS
- fix
- Read a problem (file, stdin, or CI log) and write a patch to the working tree.
- --pr
- Open a pull request after the patch. Default is local-only.
- --json
- Emit machine-readable events on stdout. Compose with jq.
- --dry-run
- Plan and print the diff. Do not write files.
- --file <path>
- Limit context to one path. Repeatable.
- -h, --help
- Print this manual and exit.
EXAMPLES
Feed it a failing log. It edits locally. You still own git add.
zsh · ~/work/api
reading stdin · 2.4kb stack tracemodel: local-first · tools: grep, patch, testwrote src/queue.ts:88 timeout 5s → 15stests ok
EXIT STATUS
- 0 patch applied (or PR opened)
- 1 tests failed or the model declined
- 2 usage error