Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

ai-autodev

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ai-autodev

Autonomous development engine — multi-agent orchestrator with tournament self-refinement, runs inside Claude Code, Cursor, and any LLM-assisted IDE

latest
Source
npmnpm
Version
0.38.0
Version published
Maintainers
1
Created
Source

ai-autodev NPM

Node.js wrapper for the ai-autodev Python package.

Installation

npm install -g ai-autodev

Or use it directly via npx:

npx ai-autodev --help

Requirements

  • Node.js 18+
  • Python 3.11+

The npm package will automatically set up a Python virtual environment and install the bundled wheel on first run.

Commands

autodev install    # Set up the Python environment
autodev uninstall  # Remove the Python environment
autodev doctor     # Check system requirements
autodev --version  # Show version

All other commands proxy to the Python CLI:

autodev init [--inline] [--platform claude-code|cursor]
autodev plan <task>
autodev execute [--phase <phase>]
autodev resume
autodev status
autodev tournament <task>

Manual Wheel Build

If you're developing the package, build the Python wheel first:

cd ..
pip wheel . --wheel-dir npm/wheel --no-deps
# or with uv:
uv pip wheel . --dest npm/wheel

Then build the npm package:

npm install
npm run build
npm link  # or: npm publish

Architecture

This npm package:

  • On first run, creates a venv at ~/.config/autodev/venv
  • Installs the bundled Python wheel into that venv
  • Proxies all commands to the Python autodev CLI

This design ensures the Python runtime is managed independently from Node.js.

License

MIT - see ../LICENSE

Keywords

ai

FAQs

Package last updated on 21 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts