Andrey Markin
  • home
  • blog
  • projects
  • services
  • directory
    • Tool
    • Library
    • Repo
    • Article
    • XTweet
    • Guideline
  • about
  • contact
  • meet

Mark Life Ltd

  1. Home
  2. Directory
  3. Auto Pr
Meet

Mark Life Ltd

BG208147965

HomeContactPrivacyLLM-friendlyBlog RSSDirectory RSS
RepoAI CodingOpen Sourceagentscli

auto-pr

Local Node.js loop that turns GitHub issues into pull requests — label an issue `auto-pr` and a multi-step Claude pipeline (research → plan → implement → review) spawns Claude Code and opens a PR.

Added February 22, 2026Francisco Hermida
Visit repo

I run this on a VPS as a systemd service. Open a GitHub issue, slap the auto-pr label on it, and the loop picks it up, spawns Claude Code through the full pipeline (research → plan → implement → review), and opens a PR back to the repo. The artifacts (research notes, plan, review) get committed alongside the PR branch, which is half the value — even when the PR isn't perfect, you learn something about your own codebase.

See Mark-Life/telegram-claude for examples of issues I've processed this way.

Update (May 13, 2026): Anthropic announced that this kind of headless Claude Code usage will be billed as API usage rather than counted against the Claude Code subscription, starting June 15, 2026. Worth factoring in before pointing this at a large issue backlog.

Related

  • Using Claude Code: The Unreasonable Effectiveness of HTMLThariq makes the case for HTML over Markdown as Claude Code's output format — richer visualizations, color, diagrams, and easier sharing once agents are the ones authoring and humans rarely hand-edit.
  • PullfrogAI PR review agent from Zod's creator. Dynamically scales effort, uses subagent swarms for large PRs, and runs inside GitHub Actions with batteries-included MCP tools.
  • quality-codeRhys Sullivan's TypeScript coding skill — branded types, discriminated unions, end-to-end types, real tests over mocks, OpenTelemetry observability, and picking the right abstractions instead of premature ones.
  • ExecutorOpen-source tool gateway for agents from Rhys Sullivan. Normalizes MCP, OpenAPI, GraphQL, and custom sources into one typed SDK that agents call in a sandbox — built on Cloudflare's Code Mode pattern.