TA

tao12345666333/ankaloop

Developer tools
50 stars 품질 55 트렌드 55

Out-of-the-box coding-agent runtime for terminal, IDE, server, and Telegram: built-in tools, subagents, skills, memory, MCP/ACP, hooks, and automation.

개요

A batteries-included coding-agent runtime that keeps working across terminals, servers, and Telegram. Quick start · Why AnkaLoop · Configuration · Docs · Contributing AnkaLoop is for developers who want a useful coding agent now—not another framework to assemble. It combines a capable tool loop, persistent context, multi-agent delegation, skills, memory, MCP, hooks, and automation in one Python package that you can run locally or self-host. - — read, search, edit, patch, and execute code with built-in tools. - — sessions, searchable history, project rules, and long-term memory survive beyond a single prompt. - — use the same agent from the CLI, an HTTP/WebSocket server, or Telegram. - — context compaction, progress events, cancellation, bounded tool use, and provider retries make long-running work observable and controllable. - — delegate focused work to built-in explorer, planner, and coder agents.

README

A batteries-included coding-agent runtime that keeps working across terminals, servers, and Telegram.

Quick start · Why AnkaLoop · Configuration · Docs · Contributing


AnkaLoop is for developers who want a useful coding agent now—not another framework to assemble. It combines a capable tool loop, persistent context, multi-agent delegation, skills, memory, MCP, hooks, and automation in one Python package that you can run locally or self-host.

python -m pip install ankaloop
anka init
anka

Why AnkaLoop

  • Useful on the first run — read, search, edit, patch, and execute code with built-in tools.
  • Persistent by design — sessions, searchable history, project rules, and long-term memory survive beyond a single prompt.
  • One runtime, multiple surfaces — use the same agent from the CLI, an HTTP/WebSocket server, or Telegram.
  • Built for real tasks — context compaction, progress events, cancellation, bounded tool use, and provider retries make long-running work observable and controllable.
  • Multi-agent without plumbing — delegate focused work to built-in explorer, planner, and coder agents.
  • Open and extensible — add MCP servers, reusable skills, slash commands, hooks, and custom agent specifications without replacing the built-in experience.
  • Provider-flexible — connect to OpenAI, Anthropic, GMI, or any OpenAI-compatible endpoint.

Quick start

AnkaLoop requires Python 3.11+ and credentials for a supported model provider.

Install from PyPI

# Install the latest stable release
python -m pip install ankaloop

# Configure a provider, then start in the current project
anka init
anka

# Or run one task and exit
anka --once "summarize this repository and suggest the next test to run"

The package installs both anka (recommended) and ankaloop commands.

Run without installing

uvx ankaloop init
uvx ankaloop

Install optional Telegram support

python -m pip install "ankaloop[telegram]"
anka telegram setup

What is included

Area Capabilities
Coding loop File reading and search, patching and writing, shell execution, planning, todos, and subagent tasks
Context Persistent sessions, AGENTS.md rules, progressive loading, and smart compaction
Memory Durable facts, episodic history, persona files, and full-text session search
Agents Built-in coder, explorer, planner, and focused_coder roles
Interfaces Rich terminal UI, FastAPI HTTP/WebSocket server, and Telegram bot
Research Built-in web search/fetch plus MCP integration over stdio and HTTP/SSE
Extensions Skills, slash commands, hooks, custom YAML agent specs, and an event bus
Automation Cron-compatible jobs for systemd, Kubernetes, and external schedulers

How it fits together

 CLI ───────────────┐
 HTTP / WebSocket ──┼──▶ Agent runtime ──▶ Tools / MCP ──▶ Your project
 Telegram ──────────┘         │
                              ├── Sessions & memory
                              ├── Skills & project rules
                              └── Subagents

All interfaces use the same core runtime. Conversation state is persistent, while project rules, skills, and memory provide context across requests.

Usage

# Chat and one-shot tasks
anka
anka --once "create a hello.py file"
anka -t explorer --once "find all TODO comments"
anka --agent path/to/agent.yaml

# Sessions and agents
anka --session my-session
anka --list-sessions
anka --list-types
anka --clear

# MCP
anka mcp tools --server custom
anka mcp call --server custom --tool example_tool --args '{"query":"rust async"}'

# Server and remote client
anka serve
anka attach http://localhost:8080

# Telegram
anka telegram setup
anka telegram start

Run anka --help or anka --help for the complete command reference.

Configuration

Run anka init for the interactive provider wizard. Configuration lives in ~/.config/ankaloop/config.toml. Set ANKA_CONFIG_DIR_NAME=amcp to keep the legacy ~/.config/amcp/ path from pre-rebrand deployments.

OpenAI-compatible endpoint

[chat]
active_provider = "primary"

[chat.providers.primary]
api_type = "openai"
base_url = "https://api.example.com/v1"
model = "provider/model-name"

Keep credentials out of version control and provide the key through the environment:

export OPENAI_API_KEY="your-api-key"
anka --once "explain the architecture of this repository"

You can define multiple [chat.providers.] profiles. Telegram administrators can list them with /models and switch the active profile with /model use .

See the quick-start guide, skills and commands guide, and hooks guide for more configuration examples.

Multi-agent runtime

Agent Mode Purpose
coder Primary General coding agent with write access and delegation
explorer Subagent Fast, read-only codebase exploration
planner Subagent Read-only analysis and implementation planning
focused_coder Subagent Bounded implementation of a specific change

Select an agent with anka -t . Primary agents can use the task tool to delegate independent work to subagents.

Skills, commands, and hooks

  • Skills inject reusable instructions and resources only when relevant.
  • Slash commands turn repeatable prompts into /command shortcuts with arguments, shell output, and file references.
  • Hooks validate, modify, block, or audit tool calls before and after execution.

Project extensions live under .ankaloop/:

.ankaloop/
├── commands/       # TOML slash commands
├── hooks.toml      # pre/post tool hooks
├── memory/         # project knowledge
└── skills/         # reusable SKILL.md packages

Self-hosted server

anka serve                         # loopback only, http://localhost:8080
anka serve --host 0.0.0.0          # requires authentication
anka attach https://agent.example  # connect from another terminal

The server exposes session, prompt, streaming, cancellation, timeline, tool, and agent APIs. Visit /docs on a running server for its OpenAPI interface.

Non-loopback binds require a server API key. Configure [server.auth] or pass --api-key; deploy behind TLS or a trusted reverse proxy.

For protocol details, see the client/server architecture and API compatibility notes.

Telegram

The optional Telegram integration supports direct messages, groups and topics, allowlists, pairing, streaming responses, bounded queues, cancellation, and session switching.

python -m pip install "ankaloop[telegram]"
anka telegram setup
anka telegram start

Shared commands include /new, /clear, /cancel, /session list, and /session switch .

Install from source

git clone https://github.com/tao12345666333/ankaloop.git
cd ankaloop

uv sync --extra dev --extra telegram
source .venv/bin/activate

Run the local quality suite:

ruff format --check src tests
ruff check src tests
mypy src/ankaloop --ignore-missing-imports
python -m pytest -q -m "not llm"

Tests marked llm make live provider calls and require credentials. See CONTRIBUTING.md before opening a pull request.

Deployment

Project status

AnkaLoop is under active development. Feedback, bug reports, documentation improvements, and focused pull requests are welcome.

License

Licensed under the Apache License 2.0.

View this README on GitHub

추천 도구

다른 키워드를 입력하거나 필터를 제거해 보세요.

설치

npx skillfish add tao12345666333/ankaloop