{"id":51244479,"url":"https://github.com/noderef/coding-agent","last_synced_at":"2026-06-29T03:02:18.789Z","repository":{"id":342899986,"uuid":"1174231808","full_name":"noderef/coding-agent","owner":"noderef","description":"Autonomous coding agent that picks up GitHub issues and opens draft PRs, built to support NodeRef.","archived":false,"fork":false,"pushed_at":"2026-03-20T14:47:05.000Z","size":181,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-21T06:44:18.941Z","etag":null,"topics":["ai-agent","autonomous","shell"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/noderef.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-06T07:57:43.000Z","updated_at":"2026-03-20T14:47:08.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/noderef/coding-agent","commit_stats":null,"previous_names":["noderef/coding-agent"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/noderef/coding-agent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noderef%2Fcoding-agent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noderef%2Fcoding-agent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noderef%2Fcoding-agent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noderef%2Fcoding-agent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/noderef","download_url":"https://codeload.github.com/noderef/coding-agent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noderef%2Fcoding-agent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34911134,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-29T02:00:05.398Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agent","autonomous","shell"],"created_at":"2026-06-29T03:02:15.686Z","updated_at":"2026-06-29T03:02:18.777Z","avatar_url":"https://github.com/noderef.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003cp\u003e\n  \u003cimg src=\"./assets/logo-center-black.svg#gh-light-mode-only\" alt=\"coding-agent\" width=\"380\" /\u003e\n  \u003cimg src=\"./assets/logo-center-white.svg#gh-dark-mode-only\" alt=\"coding-agent\" width=\"380\" /\u003e\n\n  \u003ch3\u003eAutonomous Coding Agent\u003c/h3\u003e\n\u003c/p\u003e\n\n\u003cp\u003e\n  \u003ca href=\"./LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/License-Apache%202.0-blue\" alt=\"License: Apache-2.0\" /\u003e\n  \u003c/a\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Runtime-Linux%20%2B%20Cron-2ea44f\" alt=\"Linux + Cron\" /\u003e\n  \u003cimg src=\"https://img.shields.io/badge/Stack-Bash%20%2B%20gh%20%2B%20jq-1f6feb\" alt=\"Bash + gh + jq\" /\u003e\n\u003c/p\u003e\n\u003c/div\u003e\n\n## Introduction\n\nAn experiment in agentic coding, built to support [NodeRef](https://github.com/noderef/noderef). The agent picks up GitHub issues, writes code, and opens draft PRs on its own. It also responds to PR feedback through `@bot` mentions.\n\nThe stack is intentionally minimal: shell scripts, cron, and the filesystem. No database, no web framework, no Docker runtime. [LiteLLM](https://github.com/BerriAI/litellm) sits in front as an LLM proxy, so switching models is just a one-line change in `.env`.\n\n## Quick start\n\n```bash\ngit clone https://github.com/noderef/coding-agent.git\ncd coding-agent\n./install.sh\n```\n\n1. Edit `.env` (created from `.env.example` by the installer).\n2. Run `gh auth login`.\n3. Configure Cline auth:\n   ```bash\n   cline auth -p openai -k \"$AGENT_API_KEY\" -b \"$AGENT_BASE_URL\" -m \"$AGENT_MODEL\"\n   ```\n4. Add your repos to `configs/repos.json`.\n5. Run `./bin/doctor` to verify everything.\n6. Try it out:\n   ```bash\n   ./agents/issue-worker.sh\n   ./agents/feedback-worker.sh\n   ```\n\nCron entries are installed automatically by `install.sh` (disable with `INSTALL_CRON=false`).\n\n## Doctor\n\nChecks that all dependencies, auth, config, and runtime directories are in order.\n\n```bash\n./bin/doctor\n```\n\n## Log viewer\n\nWeb UI for tailing worker logs.\n\n```bash\ncd log-viewer \u0026\u0026 npm install \u0026\u0026 cd ..\n\n./bin/log-viewer start\n./bin/log-viewer stop\n./bin/log-viewer status\n```\n\nRuns on `http://localhost:3000` by default. Change the port with `LOG_VIEWER_PORT` in `.env`.\n\n## Configuration\n\nAll settings live in `.env`. The important ones:\n\n| Variable | Purpose |\n|---|---|\n| `AGENT_GITHUB_USERNAME` | Bot's GitHub identity |\n| `AUTHORIZED_USERS` | Who can trigger feedback via `@bot` |\n| `AGENT_MODEL` | Which model to use |\n| `AGENT_BASE_URL` / `AGENT_API_KEY` | LiteLLM endpoint credentials |\n| `CONFIG_FILE` | Path to `configs/repos.json` |\n\nPer-repo settings go in `configs/repos.json`: `slug`, `enabled`, `install_command`, `test_command`, `forbidden_paths`, and an optional `instructions_file`.\n\n## License\n\nApache 2.0. See [LICENSE](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoderef%2Fcoding-agent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnoderef%2Fcoding-agent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoderef%2Fcoding-agent/lists"}