npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@autonomous-dev/cli

v0.2.9

Published

Multi-instance Claude Code orchestrator for parallel development

Readme

@autonomous-dev/cli

Multi-instance Claude Code orchestrator for parallel autonomous development

npm version License: MIT

A language-agnostic CLI tool that orchestrates multiple Claude Code instances for parallel autonomous development on any project.

🚀 Installation

npm install -g @autonomous-dev/cli

System Requirements:

  • Node.js 14.0 or higher
  • Git 2.20+
  • GitHub account

Note: The CLI will automatically download the appropriate binary for your platform (macOS, Linux, or Windows) during installation.

⚡ Quick Start

  1. Initialize in your project:
cd your-project
autonomous-dev init
  1. Set GitHub token:
export GITHUB_TOKEN="ghp_xxxxxxxxxxxx"

Create token at: https://github.com/settings/tokens (scopes: repo, workflow)

  1. Start autonomous development:
autonomous-dev start --instances=5 --task="Add user authentication with OAuth 2.0"
  1. Monitor progress:
autonomous-dev status
autonomous-dev dashboard

🎯 What is Autonomous Dev?

Autonomous Dev turns 1 developer into a team of 5 AI developers working in parallel.

You → autonomous-dev start --instances=5 --task="Add feature X"
  ↓
GitHub Actions launches 5 Claude Code instances
  ↓
Instance 1 (Leader): Coordinates the team
Instance 2-5 (Workers): Execute tasks in parallel
  ↓
30 minutes later: 5 Pull Requests ready for review

Key Features:

  • $0/month - Runs on GitHub Actions (free tier)
  • Language-agnostic - Python, JavaScript, Go, Rust, Java, etc.
  • Zero dependencies - Single binary, no runtime required
  • P2P coordination - Instances collaborate through GitHub Issues
  • Real-time dashboard - Monitor progress in your browser

💻 CLI Commands

autonomous-dev init

Initialize autonomous development in the current project.

autonomous-dev start

Start parallel development with multiple instances.

autonomous-dev start --instances=3 --task="Refactor authentication module"

autonomous-dev status

Check status of running instances.

autonomous-dev dashboard

Open the monitoring dashboard in your browser.

autonomous-dev config

Manage configuration.

autonomous-dev config set github.token "ghp_xxxx"
autonomous-dev config get github.owner
autonomous-dev config list

📦 Distribution Methods

This package is distributed via multiple channels:

  • npm: npm install -g @autonomous-dev/cli
  • GitHub Releases: Binary downloads for all platforms
  • Package managers: .deb, .rpm, .apk for Linux

The npm package automatically downloads and installs the appropriate binary for your platform during the postinstall phase.

📖 Documentation

🌍 Platform Support

| Platform | Support | Architecture | |----------|---------|--------------| | macOS (Intel) | ✅ | amd64 | | macOS (Apple Silicon) | ✅ | arm64 | | Linux (Ubuntu/Debian) | ✅ | amd64, arm64 | | Linux (WSL) | ✅ | amd64, arm64 | | Windows | ⚠️ | amd64 (limited testing) |

🛠️ Use Cases

Feature Development

autonomous-dev start --instances=5 --task="Add dark mode toggle with theme persistence"

Refactoring

autonomous-dev start --instances=3 --task="Migrate class components to functional components"

Testing

autonomous-dev start --instances=4 --task="Add E2E tests for checkout flow"

Documentation

autonomous-dev start --instances=2 --task="Update API documentation for v2.0"

🔧 Troubleshooting

Installation fails

If installation fails, you can download the binary manually:

  1. Go to GitHub Releases
  2. Download the appropriate binary for your platform
  3. Extract and move to /usr/local/bin/ (macOS/Linux) or add to PATH (Windows)

Binary not found after installation

The binary is installed in the npm package's bin directory and should be automatically added to your PATH. If not found:

# Find the installation path
npm list -g @autonomous-dev/cli

# Reinstall
npm uninstall -g @autonomous-dev/cli
npm install -g @autonomous-dev/cli

🤝 Contributing

Contributions are welcome! Please visit our GitHub repository for contribution guidelines.

📄 License

MIT License - see LICENSE file for details.

🔗 Links

  • GitHub Repository: https://github.com/Yuta-Hachino/ai-driven-development-template
  • Issues: https://github.com/Yuta-Hachino/ai-driven-development-template/issues
  • Releases: https://github.com/Yuta-Hachino/ai-driven-development-template/releases
  • npm Package: https://www.npmjs.com/package/@autonomous-dev/cli

Built with ❤️ for autonomous software development