Codeany banner
codeany-ai codeany-ai

Codeany

AI community

Description

Open-source AI-powered terminal agent. Built in Go.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Codeany

[![Release](https://img.shields.io/github/v/release/codeany-ai/codeany)](https://github.com/codeany-ai/codeany/releases) [![Go](https://img.shields.io/github/go-mod/go-version/codeany-ai/codeany)](https://go.dev/) [![License](https://img.shields.io/github/license/codeany-ai/codeany)](LICENSE)

An open-source AI-powered terminal agent for software engineering. Built in Go with [Bubble Tea](https://github.com/charmbracelet/bubbletea) TUI and the [Open Agent SDK](https://github.com/codeany-ai/open-agent-sdk-go).

**78 slash commands** | **Skills & Plugins** | **MCP support** | **Multi-provider** | **Chinese/IME** | **Self-update**

Quick Install

curl -fsSL https://raw.githubusercontent.com/codeany-ai/codeany/main/install.sh | sh

Or install from source:

go install github.com/codeany-ai/codeany/cmd/codeany@latest

Setup

Set your API key:

export ANTHROPIC_API_KEY="sk-ant-..."
# Or for OpenRouter / custom providers:
export CODEANY_API_KEY="sk-or-..."
export CODEANY_BASE_URL="https://openrouter.ai/api"
export CODEANY_MODEL="anthropic/claude-sonnet-4-5"

Usage

# Interactive mode
codeany

# With initial prompt
codeany "explain this codebase"

# Pipe mode
echo "what is 2+2" | codeany -p

# Print mode (non-interactive)
codeany --print -y "list files in src/"

# JSON output
echo "hello" | codeany -p -y --output-format json

# Skip permission prompts
codeany -y

# Use specific model
codeany -m opus-4-6

Slash Commands

Command Description
/help Show all commands
/model [name] Switch model
/fast Toggle faster model
/cost Show token usage and cost
/clear Clear conversation
/compact [hint] Compact conversation
/plan [task] Plan mode / plan a task
/commit [msg] Git commit helper
/review [target] Code review
/diff Show git diff summary
/bug Investigate a bug
/test [target] Run t