imploid
v0.2.2
Published
Automates the implementation leg of agentic coding by orchestrating Claude and Codex processors to clone, branch, and work GitHub issues in parallel.
Readme
Imploid 🤖
Imploid automates GitHub issue triage by watching for issues marked agent-ready, preparing clean worktrees, and delegating them to Claude or Codex command-line agents. The CLI focuses on a fast setup experience so you can keep your backlog moving with minimal ceremony.
Looking for source layout or contribution details? See the developer guide.
⚠️ Security notice: Imploid launches the Claude and Codex CLIs with
--dangerously-skip-sandbox/--dangerously-skip-permissionsso they can operate unattended. Only run Imploid in environments where you trust the agents and the repositories they modify.
Imploid automates the Implement phase defined in the heydiga dotclaude workflow. The agents follow the same structured steps:
- Gather context from the issue thread and repository.
- Plan the implementation, outlining the proposed changes.
- Modify code, run checks, and iterate until the plan is complete.
- Summarize the work, outstanding tasks, and validation results.
Review the heydiga dotclaude documentation for the full end-to-end flow, including upstream phases like triage and question answering. Go to Install HeyDiga Claude Commands to install the required Claude command files into the current repository.
What You Can Do 💡
- Quickly configure repositories, agent settings, and notifier credentials with an interactive wizard.
- Run the orchestrator to pull new
agent-readyissues, spawn agent sessions, and keep labels in sync. - Refresh Claude command templates locally so agent prompts stay current.
- Receive optional Slack or Telegram notifications as issues progress.
- Toggle Claude and Codex processors globally or override them per run.
Requirements ✅
- Bun 1.2 or newer (for
bunx) or Node.js 18+ (fornpx) - Git CLI with access to your target repositories
- GitHub CLI (
gh) installed and authenticated - Optional: Claude CLI and/or OpenAI Codex CLI on your
PATH - GitHub personal access token with
reposcope for issue management
Quick Start (no install) ⚡
Use your preferred package runner to execute the published CLI directly from npm:
# Configure Imploid for the first time
bunx imploid@latest --config
# or
npx imploid@latest --configDuring setup you will:
- Enter or reuse a GitHub token.
- Choose organizations and repositories to monitor.
- Confirm the storage directories under
~/.imploid. - Set concurrency limits and optional Slack/Telegram credentials.
- Point Imploid at your local Claude and/or Codex CLI binaries.
- Choose which processors (Claude, Codex) should run by default.
The wizard can be rerun at any time. Existing values are pre-filled so updates are quick.
Daily Usage 🔁
# Run the orchestrator with your saved configuration
bunx imploid@latest
# or
npx imploid@latest
# Run in foreground mode with continuous monitoring (polls every 60 seconds)
bunx imploid@latest --foreground
# or
npx imploid@latest --foreground
# Show inline help or version information
bunx imploid@latest --help
npx imploid@latest --version
# Re-run the interactive configuration wizard
bunx imploid@latest --config
# Limit this run to specific processors
bunx imploid@latest --processors claudeImploid will read ~/.imploid/processing-state.json, poll the configured repositories for agent-ready issues, and launch the enabled processors in parallel while respecting your concurrency limits.
Foreground Mode
The --foreground flag runs Imploid continuously, checking for new issues every 60 seconds:
- Easy monitoring: See real-time status updates in your terminal
- No cron needed: Runs continuously without external scheduling
- Lock protection: Prevents multiple instances from running simultaneously
- Graceful shutdown: Press Ctrl+C to stop cleanly
Note: Only one instance (foreground or one-shot) can run at a time. The lock file at ~/.imploid/imploid.lock ensures this.
Install HeyDiga Claude Commands 🧩
To use the HeyDiga agent coding flow end to end, install the required Claude command files into the current repository with the --install-commands option:
bunx imploid@latest --install-commands
# or
npx imploid@latest --install-commandsRunning --install-commands refreshes .claude/commands with the latest templates from Hey-Diga/dotclaude making easier to follow the workflow.
Optional Local Install 📦
Install once if you prefer to call imploid without bunx/npx:
npm install -g imploid
# or with Bun
bun add -g imploidThen run:
imploid --config # interactive setup
imploid # run orchestrator
imploid --foreground # run in continuous monitoring mode
imploid --install-commands # refresh Claude command templates
imploid --processors claude # run only the Claude processorScheduling Options 🕒
Option 1: Foreground Mode (Recommended)
Run Imploid in a terminal or screen/tmux session:
bunx imploid@latest --foreground
# or
npx imploid@latest --foregroundThis continuously monitors for issues every 60 seconds without needing cron.
Option 2: Cron Job
To run Imploid automatically every 5 minutes, add the following lines to your crontab:
SHELL=/bin/bash
HOME=/home/YOUR_USERNAME
PATH=${HOME}/.bun/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
*/5 * * * * bunx imploid@latest >> ${HOME}/.imploid/cron.log 2>&1Note: Cron jobs won't run if foreground mode is active due to lock protection.
Troubleshooting 🛠️
- Missing CLI binaries: ensure
claudeorcodexare installed and available viawhich. Re-run the configuration wizard to update their paths. - Permission issues: Imploid expects SSH access (
[email protected]). Verify you can manually clone each repository. - Claude commands missing: run
bunx imploid@latest --install-commands(ornpx imploid@latest --install-commands) inside the target repository to repopulate.claude/commands. - No processors enabled: rerun
bunx imploid@latest --configto toggle defaults or pass--processors claude(orcodex) when launching Imploid. - Slack/Telegram notifications not arriving: confirm tokens and channel/chat IDs in
~/.imploid/config.jsonand rerun--configif needed. - Stuck state: only delete
~/.imploid/processing-state.jsonif you are sure no automated work is running; otherwise resolve outstanding issues first.
Need More Details? 📚
Developers and contributors can find architecture notes, project structure, and testing guidance in the developer guide.
