freshcrate
Skin:/
Home > AI Agents > code-cli

code-cli

Autohand Code CLI - Ultra fast self evolving coding agent that runs in your terminal

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

Autohand Code CLI - Ultra fast self evolving coding agent that runs in your terminal

README

Autohand Code CLI

BunDiscordAn autonomous coding agent CLI that reads, reasons, and writes code across your entire project. No context switching. No copy-paste.

Autohand Code CLI is an autonomous LLM-powered coding agent that lives in your terminal. It uses the ReAct (Reason + Act) pattern to understand your codebase, plan changes, and execute them with your approval. It's blazing fast, intuitive, and extensible with a modular skill system.

We built with a minimalistic design philosophy to keep the focus on coding. Just install, run autohand, and start giving instructions in natural language. Autohand handles the rest.

Scale Autohand across your team and CI/CD pipelines to automate repetitive coding tasks, enforce code quality, and accelerate development velocity.

Alt Autohand in the terminal

Features

  • Autonomous Coding: Understands your codebase and executes changes with approval
  • ReAct Pattern: Combines reasoning and action for intelligent code modifications
  • Interactive REPL: Full terminal experience with file mentions and slash commands
  • Modular Skills: Extend functionality with specialized instruction packages
  • Multi-Provider Support: Works with OpenRouter, LLMGateway, OpenAI, Azure Foundry Models, Z.ai, and local models
  • Git Integration: Full version control support with automatic commits
  • Cross-Platform: Works on macOS, Linux, and Windows

Why Autohand?

  • No Context Switching: Stay in your terminal, no copy-paste needed
  • Intelligent Planning: Understands your codebase before making changes
  • Safe Execution: Requires approval for all modifications
  • Extensible: Add new skills and customize behavior
  • Fast: Optimized for quick responses and efficient execution

Installation

Quick Install (Recommended)

curl -fsSL https://autohand.ai/install.sh | bash

Manual Installation

# Clone and build
git clone https://github.com/autohandai/cli.git
cd cli
bun install
bun run build

# Install globally
bun add -g .

Requirements

  • Bun â‰Ĩ1.0 (curl -fsSL https://bun.sh/install | bash)
  • Git (for version control features)
  • ripgrep (optional, for faster search)

Quick Start

# Interactive mode - start a coding session
autohand

# Command mode - run a single instruction
autohand -p "add a dark mode toggle to the settings page"

# With auto-confirmation
autohand -p "fix the TypeScript errors" -y

# Auto-commit changes after task completion
autohand -p "refactor the auth module" -c

Editor Extensions

Use Autohand directly in your favorite editor:

VS Code

Install the extension from the VS Code Marketplace or via command line:

code --install-extension AutohandAI.vscode-autohand

Zed Editor

Install from the Zed Extensions marketplace.

Usage Modes

Interactive Mode

Launch without arguments for a full REPL experience:

autohand

Features:

  • Type / for slash command suggestions
  • Type @ for file autocomplete (e.g., @src/index.ts)
  • Type $ for skill autocomplete (e.g., $frontend-design)
  • Type ! to run terminal commands (e.g., ! git status, ! ls -la)
  • Smart Paste: Paste any amount of code (5+ lines shows compact indicator, full content sent to LLM)
  • Press ESC to cancel in-flight requests
  • Press Ctrl+C twice to exit
  • Press Shift+Tab to toggle plan mode
  • Press ? to toggle keyboard shortcuts panel
  • Press Enter or Shift+Enter for newlines in multi-line input

Command Mode (Non-Interactive)

Run single instructions for CI/CD, scripts, or quick tasks:

# Basic usage
autohand --prompt "add tests for the user service"

# Short form
autohand -p "fix linting errors"

# With options
autohand -p "update dependencies" --yes --auto-commit

# Dry run (preview changes without applying)
autohand -p "refactor database queries" --dry-run

CLI Options

Option Short Description
--prompt <text> -p Run a single instruction in command mode
--yes -y Auto-confirm risky actions
--auto-commit -c Auto-commit changes after completing tasks
--dry-run Preview actions without applying mutations
--debug -d Enable debug output (verbose logging)
--model <model> Override the configured LLM model
--path <path> Workspace path to operate in
--auto-skill Auto-generate skills based on project analysis
--unrestricted Run without approval prompts (use with caution)
--restricted Deny all dangerous operations automatically
--config <path> Path to config file
--temperature <value> Sampling temperature for LLM
--thinking [level] Set thinking/reasoning depth (none, normal, extended)
--learn Run skill advisor non-interactively
--learn-update Re-analyze project and regenerate skills
--skill-install [name] Install a community skill
--project Install skill to project level (with --skill-install)
--permissions Display current permission settings and exit
--login Sign in to your Autohand account
--logout Sign out of your Autohand account
--sync-settings [bool] Enable/disable settings sync (default: true for logged users)
--patch Generate git patch without applying changes
--output <file> Output file for patch (default: stdout)
--mode <mode> Run mode: interactive (default), rpc, or acp
--acp Shorthand for --mode acp (Agent Client Protocol over stdio)
--teammate-mode <mode> Team display mode: auto, in-process, or tmux
--worktree [name] Run session in isolated git worktree (optional name)
--tmux Launch in a dedicated tmux session (implies --worktree)
--auto-mode [prompt] Enable interactive auto-mode, or start standalone loop with inline task
--max-iterations <n> Max auto-mode iterations (default: 50)
--completion-promise <text> Completion marker text (default: "DONE")
--no-worktree Disable git worktree isolation in auto-mode
--checkpoint-interval <n> Git commit every N iterations (default: 5)
--max-runtime <m> Max runtime in minutes (default: 120)
--max-cost <d> Max API cost in dollars (default: 10)
--interactive-on-complete After auto-mode ends, hand off to interactive mode (TTY only)
--setup Run the setup wizard to configure or reconfigure Autohand
--about Show information about Autohand
--add-dir <path...> Add additional directories to workspace scope (can be used multiple times)
--display-language <locale> Set display language (e.g., en, zh-cn, fr, de, ja)
--cc, --context-compact Enable context compaction (default: on)
--no-cc, --no-context-compact Disable context compaction
--search-engine <provider> Set web search provider (google, brave, duckduckgo, parallel)
--sys-prompt <value> Replace entire system prompt (inline string or file path)
--append-sys-prompt <value> Append to system prompt (inline string or file path)
--yolo [pattern] Auto-approve tool calls matching pattern (e.g., allow:read,write or deny:delete)
--timeout <seconds> Timeout in seconds for auto-approve mode

Agent Skills

Skills are modular instruction packages that extend Autohand with specialized workflows. They work like on-demand AGENTS.md files for specific tasks.

Using Skills

# List available skills
/skills

# Activate a skill
/skills use changelog-generator

# Create a new skill interactively
/skills new

# Auto-generate project-specific skills
autohand --auto-skill

Auto-Skill Generation

Analyze your project and generate tailored skills automatically:

$ autohand --auto-skill
Analyzing project structure...
Detected: typescript, react, nextjs, testing
Platform: darwin
Generating skills...
  ✓ nextjs-component-creator
  ✓ typescript-test-generator
  ✓ changelog-generator

✓ Generated 3 skills in .autohand/skills

Skills are discovered from:

  • ~/.autohand/skills/ - User-level skills
  • <project>/.autohand/skills/ - Project-level skills
  • skilled.autohand.ai - Community skill registry
  • Compatible with Codex and Claude skill formats

See Agent Skills Documentation for creating custom skills.

Slash Commands

Command Description
/help Display available commands
/? Alias for /help
/quit Exit the session
/model Switch LLM models
/new Start fresh conversation
/clear Clear conversation history
/undo Revert last changes
/session Show current session details
/sessions List past sessions
/resume Resume a previous session
/memory View/manage stored memories
/init Create AGENTS.md file
/agents List sub-agents
/agents-new Create new agent via wizard
/skills List and manage skills
/skills new Create a new skill
/skills use Activate a skill
/skills install Install a community skill
/skills search Search for skills
/skills trending List trending skills
/skills remove Remove an installed skill
/learn Get skill recommendations
/feedback Send feedback
/formatters List code formatters
/lint List code linters
/completion Generate shell completion scripts
/export Export session to markdown/JSON/HTML
/status Show workspace status
/login Authenticate with Autohand API
/logout Sign out
/permissions Manage tool permissions
/hooks Manage git hooks
/settings View configuration settings
/theme Change UI theme
/language Change display language
/cc Toggle context compaction
/search Search the web
/automode Manage auto-mode
/sync Sync settings across devices
/add-dir Add additional workspace directory
/plan Create a task plan
/about Show information about Autohand
/ide Open in IDE
/history View command history
/mcp Manage MCP servers
/mcp install Install community MCP servers
/team Manage team collaboration
/tasks List team tasks
/message Send team message
/import Import data from other agents
/repeat Repeat previous actions
/chrome Chrome browser integration
/review Code review

Tool System

Autohand includes 40+ tools for autonomous coding:

File Operations

read_file, write_file, append_file, apply_patch, search, search_replace, semantic_search, list_tree, create_directory, delete_path, rename_path, copy_path, multi_file_edit

Git Operations

git_status, git_diff, git_commit, git_add, git_branch, git_switch, git_merge, git_rebase, git_cherry_pick, git_stash, git_fetch, git_pull, git_push, auto_commit

Commands & Dependencies

run_command, custom_command, add_dependency, remove_dependency

Planning & Memory

plan, todo_write, save_memory, recall_memory

Meta Tools

tools_registry - List all available tools with descriptions. tool_search - Search tools by capability, name, or description.

Notebooks

notebook_cell_edit - Edit Jupyter notebook cells (code/markdown insert, delete, replace).

Team & Collaboration

team_create, team_list, task_create, task_list, task_update, task_set_owner - Multi-agent team coordination.

Agent Delegation

spawn_subagent - Delegate tasks to focused agents to keep the main context window clean.

Skills & Browser

use_skill, sleep - Activate skills or pause execution. screenshot, navigate, get_page_content, click, type_input, select_dropdown - Chrome browser integration.

Configuration

Create ~/.autohand/config.json:

{
  "provider": "openrouter",
  "openrouter": {
    "apiKey": "sk-or-...",
    "model": "your-modelcard-id-here"
  },
  "workspace": {
    "defaultRoot": ".",
    "allowDangerousOps": false
  },
  "ui": {
    "theme": "dark",
    "autoConfirm": false
  }
}

Supported Providers

Provider Config Key Notes
OpenRouter openrouter Access to Claude, GPT-4, Grok, etc.
LLMGateway llmgateway Direct Claude API access
OpenAI openai GPT-4 and other models
Ollama ollama Local models
llama.cpp llamacpp Local inference
MLX mlx Apple Silicon optimized
Z.ai zai High-performance inference

Session Management

Sessions are auto-saved to ~/.autohand/sessions/:

# Resume via command
autohand resume <session-id>

# Or in interactive mode
/resume

Entire Integration

Autohand Code supports Entire for session checkpointing. Entire captures your coding sessions -- prompts, file changes, and token usage -- as git-backed checkpoints that you can rewind to, review, and share.

# Install hooks in this repository
entire enable --agent autohand-code

# Check status
entire status

# Remove hooks
entire disable --agent autohand-code

Once enabled, Entire works automatically through Autohand's hooks system. No changes to your workflow are needed. See the Entire Integration Guide for setup details and troubleshooting.

Security & Permissions

Autohand includes a permission system for sensitive operations:

  • Interactive (default): Prompts for confirmation on risky actions
  • Unrestricted (--unrestricted): No approval prompts
  • Restricted (--restricted): Denies all dangerous operations

Configure granular permissions in ~/.autohand/config.json:

{
  "permissions": {
    "whitelist": ["run_command:npm *", "run_command:bun *"],
    "blacklist": ["run_command:rm -rf *", "run_command:sudo *"]
  }
}

Platform Support

  • macOS
  • Linux
  • Windows

Telemetry & Feedback

Telemetry is disabled by default. Opt-in to help improve Autohand:

{
  "telemetry": {
    "enabled": true
  }
}

When enabled, Autohand collects anonymous usage data (no PII, no code content). See Telemetry Documentation for details.

The backend API is available at: https://github.com/autohandai/api

Development

# Install dependencies
bun install

# Development mode
bun run dev

# Build
bun run build

# Type check
bun run typecheck

# Run tests
bun test

Docker

FROM oven/bun:1
WORKDIR /app
COPY . .
RUN bun install && bun run build
CMD ["./dist/cli.js"]
docker build -t autohand .
docker run -it autohand

Documentation

Contributing

We welcome contributions! Please read our Contributing Guide for details on how to get involved.

Troubleshooting

Common Issues

Installation fails: Make sure you have Bun installed and up to date.

Permission denied: Check your file permissions and try running with appropriate privileges.

Model not working: Verify your API key and model configuration in ~/.autohand/config.json.

Getting Help

Community

Security

Autohand is designed with security in mind:

  • No Code Execution: Autohand only suggests changes, you approve them
  • Permission System: Fine-grained control over what operations are allowed
  • Local Processing: Your code never leaves your machine unless you choose
  • Open Source: Transparent code that can be audited

License

Apache License 2.0 - Free for individuals, non-profits, educational institutions, open source projects, and companies with ARR under $5M. See LICENSE and COMMERCIAL.md for details.

Links

Roadmap

Upcoming Features

  • Enhanced AI Models: Support for newer models and improved reasoning
  • Plugin System: Easier way to extend Autohand with custom functionality
  • Team Collaboration: Features for team-based development workflows
  • Advanced Testing: Automated test generation and execution
  • Code Review: AI-powered code review and quality checks

Current Focus

  • Improving response times and accuracy
  • Expanding skill library with more specialized workflows
  • Enhancing the interactive experience with better UI/UX
  • Adding more provider integrations
  • Strengthening security and permission systems

Ready to get started? Run autohand in your terminal and experience the future of coding!

Release History

VersionChangesUrgencyDate
v0.9.1Hey there! We've been busy making Autohand better. Here's what's new since v0.8.3-alpha.9bb327c: Minor updates and improvements to keep things running smoothly. --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | | macOS |High5/14/2026
v0.9.0Hey there! We've been busy making Autohand better. Here's what's new since v0.8.3-alpha.f30ad29: Minor updates and improvements to keep things running smoothly. --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | | macOS |High5/7/2026
v0.8.3-alpha.49ef666> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.8.3: ### New Stuff - Add /pr-review slash command - Add notebook cell editing tool - Add skill and sleep tools - Add session enter and exit tools - Add cron create and delete tools - Add team task management tools - Expose delegation and tool discovery guidance - Artistic welcome screen with cMedium4/1/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inMedium3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3## [0.8.3] - 2026-03-17 ### Added - **Parallel Tool Execution** — New concurrent execution engine with depth-scaled concurrency control, preventing cascading parallelism across subagents. Includes grouped batch rendering for parallel tool output, system prompt wiring, and progress indicators - **Recurring Prompts (`/repeat`)** — `/repeat` slash command and `--repeat` CLI flag for scheduling recurring prompt execution. Includes `list_schedules` and `cancel_schedule` LLM tools, auto-run in non-inLow3/16/2026
v0.8.3-alpha.db52fb4> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.8.3-alpha.f326b71: ### New Stuff - Add blinking step progress indicator for /learn phases - Render markdown bold/italic as ANSI in slash command output - Grouped batch rendering for parallel tool output - Add depth-scaled concurrency to prevent cascading parallelism - Wire parallel tool configLow3/16/2026
v0.8.3-alpha.f326b71> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.8.3-alpha.d5f1a14: ### New Stuff - Add --repeat CLI flag for non-interactive recurring mode - Add /repeat slash command for recurring prompt scheduling ### Bug Fixes We squashed 12 bugs: - Preserve credentials on network failure during startup validation - Don't block startup prompt waitingLow3/12/2026
v0.8.3-alpha.d5f1a14> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.8.1-alpha.726b5ff: ### New Stuff - Slash command autocomplete dropdown with subcommand support - Improve skill generation UX, fix duplicate output, add subcommands - Wire learn RPC methods into dispatch switch - Add Learn RPC handlers for recommend, update, and generate - Add Learn RPC type deLow3/12/2026
v0.8.3-alpha.2fd1ec1> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.8.2: ### Bug Fixes We squashed 7 bugs: - Add { once: true } to abort listeners, use ApiError for retry exhaustion - Ollama provider adds timeout, retry, streaming timeout, and friendly errors - MLX provider adds timeout, retry, and friendly error messages - Catch ENOENT in run_command, returnLow3/12/2026
v0.8.2This release packs **25 commits** with the new `/learn` AI-powered skill advisor, Azure OpenAI provider, true multi-line editing, slash command autocomplete, and a batch of stability fixes. --- ## Highlights ### `/learn` — AI-Powered Skill Advisor A new slash command that analyzes your project, audits installed skills, and recommends community skills ranked by relevance. When no good match exists, it generates a custom skill tailored to your stack and installs it locally. Subcommands: `/learnLow3/11/2026
v0.8.1-alpha.0d773f2> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.8.1-alpha.726b5ff: ### New Stuff - Slash command autocomplete dropdown with subcommand support - Improve skill generation UX, fix duplicate output, add subcommands - Wire learn RPC methods into dispatch switch - Add Learn RPC handlers for recommend, update, and generate - Add Learn RPC type deLow3/11/2026
v0.8.1-alpha.726b5ff> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.8.0: ### New Stuff - Update OpenRouter attribution headers for app rankings - Update config reference in 8 languages and improve --auto-skill - Extract process error handlers and add skill event tracking - Implement /learn update with project-hash change detection - Wire LLM provider into /leaLow3/10/2026
v0.8.0 This is a major release with **169 commits**, **59 new features**, and **73 bug fixes** spanning the entire v0.7.15 alpha cycle. Here's everything that's new. --- ## Highlights ### Multi-Agent Teams Full team infrastructure for coordinating multiple agents on complex tasks. Includes TeamManager, TaskManager, MessageRouter, built-in agent archetypes, tmux split-pane visualization, and new `/team`, `/tasks`, `/message` slash commands. ### Session Import System (`/import`) Import yoLow3/3/2026
v0.7.15-alpha.6529cc3> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.0b08bed: ### New Stuff - Register /import command and fix /resume to filter by project - Add importedFrom provenance to SessionMetadata and SessionIndex - Add BaseImporter with dedup, pre-validation, and index recovery - Add import tool types, session metadata, and Ink UI componentsLow3/2/2026
v0.7.15-alpha.0b08bed> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.0b08bed: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/28/2026
v0.7.15-alpha.f7824bf> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.e4d60b2: ### Bug Fixes We squashed a bug: - Strip leaked <tool_call> XML from displayed responses --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL hLow2/28/2026
v0.7.15-alpha.e4d60b2> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.ae51a7b: ### New Stuff - Register /settings in slash command system - Add /settings command with registry and TUI - Add /settings command translation keys ### Under the Hood Some housekeeping and improvements: - Document /settings command - Add integration tests for /settings comLow2/27/2026
v0.7.15-alpha.ae51a7b> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.839ecfd: ### New Stuff - Add session memory extraction module with TDD tests --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/insLow2/27/2026
v0.7.15-alpha.839ecfd> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.8d86486: ### New Stuff - Add startup suggestions from project context - Wire LLM tools for team formation and teammate execution - Wire SuggestionEngine into agent loop and prompt - Render LLM suggestion as ghost text and thread through prompt - Add SuggestionEngine with LLM-poweredLow2/27/2026
v0.7.15-alpha.8d86486> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.6c4b609: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/18/2026
v0.7.15-alpha.6c4b609> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.6c4b609: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/17/2026
v0.7.15-alpha.6d8645d> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.9e0fa8b: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/17/2026
v0.7.15-alpha.9e0fa8b> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.0f9c7cb: ### Bug Fixes We squashed 4 bugs: - Return strict env map for retry cache override - Avoid setRawMode crashes on terminal teardown - Retry npx startup with isolated npm cache - Render dropped images as placeholders only --- ### Get it **Install this alpha build:** ```baLow2/17/2026
v0.7.15-alpha.0f9c7cb> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.f3027a4: ### Bug Fixes We squashed 2 bugs: - Parse escaped unicode-space image paths - Detect drag-drop image paths from stdin data stream --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the lateLow2/17/2026
v0.7.15-alpha.f3027a4> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.abae5ec: ### Bug Fixes We squashed a bug: - Replace dropped image paths with inline placeholders --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL htLow2/17/2026
v0.7.15-alpha.abae5ec> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.4c47671: ### New Stuff - Add scope option to mcp subcommands ### Bug Fixes We squashed a bug: - Report stdio server exit details on connect --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the lLow2/17/2026
v0.7.15-alpha.4c47671> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.56a6b9c: ### New Stuff - Support http transport in add commands ### Bug Fixes We squashed 3 bugs: - Block unsupported sse in user add/install flows - Accept http servers from community registry - Strip internal action metadata from tool arguments ### Under the Hood Some housekeLow2/17/2026
v0.7.15-alpha.56a6b9c> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.69ce0d7: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/16/2026
v0.7.15-alpha.69ce0d7> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.09986cf: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/16/2026
v0.7.15-alpha.09986cf> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.b5223e5: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/15/2026
v0.7.15-alpha.b5223e5> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.134f598: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/13/2026
v0.7.15-alpha.134f598> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.5270d35: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/13/2026
v0.7.15-alpha.5270d35> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.32cc06f: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/13/2026
v0.7.15-alpha.32cc06f> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.931e57e: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/13/2026
v0.7.15-alpha.931e57e> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.15-alpha.4ff52c8: ### New Stuff - Add automatic error reporting to GitHub Issues --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/12/2026
v0.7.15-alpha.4ff52c8> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.14: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` *Low2/12/2026
v0.7.14Hey there! We've been busy making Autohand better. Here's what's new since v0.7.14-alpha.4a5862c: Minor updates and improvements to keep things running smoothly. --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | | macOS Low2/11/2026
v0.7.14-alpha.4a5862c> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.14-alpha.4a5862c: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/11/2026
v0.7.14-alpha.bd70a1c> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.14-alpha.046c142: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/11/2026
v0.7.14-alpha.046c142> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.14-alpha.046c142: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.Low2/11/2026
v0.7.14-alpha.795dfb2> **Alpha Release** — This is a pre-release build from the latest `main` branch. It may contain bugs or incomplete features. Hey there! We've been busy making Autohand better. Here's what's new since v0.7.13: Minor updates and improvements to keep things running smoothly. --- ### Get it **Install this alpha build:** ```bash curl -fsSL https://autohand.ai/install.sh | sh -s -- --alpha ``` **Or install the latest stable release:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` *Low2/11/2026
v0.7.13Hey there! We've been busy making Autohand better. Here's what's new since v0.7.14-alpha.795dfb2: Minor updates and improvements to keep things running smoothly. --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | | macOS Low2/11/2026
v0.7.12Hey there! We've been busy making Autohand better. Here's what's new since v0.7.11: Minor updates and improvements to keep things running smoothly. --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | | macOS | Intel | `autLow2/11/2026
v0.7.11Hey there! We've been busy making Autohand better. Here's what's new since v0.7.10: ### Bug Fixes We squashed a bug: - Exorcise phantom deps from Bun compiled binaries --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | Low2/10/2026
v0.7.10Hey there! We've been busy making Autohand better. Here's what's new since v0.6.12: ### New Stuff - Add pipe mode with JSON output for composable workflows - Add native ACP mode for Zed integration - Add MCP client manager for Model Context Protocol - Add pipe mode with JSON output for composable workflows - Add smart stdin detection (fstatSync + isFIFO) - Add Homebrew formula for macOS installation - Add MCP client manager for Model Context Protocol - Add --yolo flag with granular tool allow/Low2/10/2026
v0.7.9Hey there! We've been busy making Autohand better. Here's what's new since v0.6.12: ### New Stuff - Support implicit GitHub format owner/repo - Extend Modal component with confirm/input/password modes - Add fetchRepoInfo for GitHub and GitLab - Add URL parsing for GitHub and GitLab - Add feedback command with plan mode integration and constants - Improve input handling with caching and non-blocking writes - Add session sharing, git auto-init, and thinking level support - Autonomous coding loopLow1/29/2026
v0.7.8Hey there! We've been busy making Autohand better. Here's what's new since v0.7.5: ### New Features - Internationalization (i18n) - Autohand now supports 16 languages with auto-detection based on your OS locale: - English, Chinese (Simplified/Traditional), French, German, Italian, Spanish, Japanese, Korean, Russian, Portuguese (Brazil), Turkish, Polish, Czech, Hungarian, Hindi - Directory permissions for automation - New --add-dir flag lets you add write permissions to directorieLow1/15/2026
v0.7.7Hey there! We've been busy making Autohand better. Here's what's new since v0.7.6: Minor updates and improvements to keep things running smoothly. --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | | macOS | Intel | `autoLow1/15/2026
v0.7.6Hey there! We've been busy making Autohand better. Here's what's new since v0.7.5: ### New Stuff - Improve input handling with caching and non-blocking writes - Add session sharing, git auto-init, and thinking level support ### Bug Fixes We squashed a bug: - Prevent duplicate keypress listeners and improve prompt visibility --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a Low1/13/2026
v0.7.5Hey there! We've been busy making Autohand better. Here's what's new since v0.7.4: Minor updates and improvements to keep things running smoothly. --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | | macOS | Intel | `autoLow1/7/2026
v0.7.4Hey there! We've been busy making Autohand better. Here's what's new since v0.7.3: Minor updates and improvements to keep things running smoothly. --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | | macOS | Intel | `autoLow1/7/2026
v0.7.3Hey there! We've been busy making Autohand better. Here's what's new since v0.7.2: Minor updates and improvements to keep things running smoothly. --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | | macOS | Intel | `autoLow1/7/2026
v0.7.2Hey there! We've been busy making Autohand better. Here's what's new since v0.6.12: ### New Stuff - Autonomous coding loop with session persistence --- ### Get it **Quickest way:** ```bash curl -fsSL https://autohand.ai/install.sh | sh ``` **Via npm or bun:** ```bash npm install -g autohand-cli ``` **Or grab a binary below** for your platform. | Platform | Architecture | Binary | |----------|--------------|--------| | macOS | Apple Silicon | `autohand-macos-arm64` | | macOS | Intel | `auLow1/7/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

uix-ai-agent🤖 Generate UI & UX flows for web and mobile apps using natural language prompts with UIX AI Agent, your intelligent design assistant.main@2026-06-07
claude-code-safety-netđŸ›Ąī¸ Enhance code safety with Claude Code Safety Net, a tool designed to identify and mitigate risks in your codebase effectively.main@2026-06-07
agent-sdk🤖 Build transparent, message-first agents with efficient tool calls, planning, and multi-agent handoffs using the lightweight agent-sdk for Node.js.main@2026-06-06
VSCode-Local-CopilotNo descriptionmain@2026-06-05
CopilotKitThe Frontend Stack for Agents & Generative UI. React + Angular. Makers of the AG-UI Protocolv1.59.5

More in AI Agents

@blockrun/franklinFranklin — The AI agent with a wallet. Spends USDC autonomously to get real work done. Pay per action, no subscriptions.
hermes-agentThe agent that grows with you
awesome-copilotCommunity-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.
e2bE2B SDK that give agents cloud environments