Note
This repository contains the AtlasClaw core implementation, including the agent runtime, API layer, channel adapters, provider registry, skills, tools, and session/memory management,see atlasclaw.ai.
Concrete providers are not implemented in this repository. AtlasClaw loads
provider packages from providers_root. In a sibling-repository layout, a
common value is ../atlasclaw-providers/providers.
AtlasClaw is an enterprise agent framework that lets employees interact with multiple enterprise systems through one conversational AI interface. Instead of switching between separate consoles, dashboards, and approval portals, users can use natural language to trigger workflows, query operational data, and complete cross-system tasks from a single entry point.
Enterprise software teams often need to work across CRM, ITSM, Monitoring, HR, Finance, OA and other internal systems. The challenge is not only system fragmentation, but also the mismatch between data models, workflow boundaries, authorization models, and user experience across those systems.
AtlasClaw is designed around two practical developer questions:
- How do you provide one unified AI Agent experience on top of the systems an enterprise already has?
- How do you let enterprise software developers add AI Agent capabilities to their own systems quickly, without rebuilding agent infrastructure from scratch?
AtlasClaw addresses those problems with a developer-oriented agent framework:
- A unified conversational layer for cross-system workflows and operations
- A pluggable provider model that lets developers expose system capabilities to the agent quickly
- Strict permission inheritance so every action runs under the authenticated user's real access rights
- Multi-channel access through web UI, embedded panels, chat platforms, and programmatic webhooks
The framework is built to help teams add agent capabilities to existing enterprise software without weakening governance. AtlasClaw does not bypass RBAC, does not escalate privileges, and keeps platform-specific authorization and auditing where they already belong.
- LLM-driven Skills model instead of hard-coded traditional workflows
- Skills define business scenarios, decision boundaries, and how the agent interacts with external systems
- A cross-system agent brain for analysis, judgment, coordination, and execution across enterprise software
- Provider-based integration model that lets developers add new system capabilities quickly
- Thin-core architecture that keeps platform-specific logic in Providers and reusable agent logic in the core
- Embeddable agent foundation for enterprise application developers
- API-first interaction model with interactive APIs, WebSocket streaming, and webhook entry points
- Flexible LLM backend support through external model providers
AtlasClaw supports two practical usage modes for enterprise software teams.
AtlasClaw can be embedded into an existing enterprise system as a module inside that system. In this mode, the AI Agent becomes part of the product itself, serving that system's own users, data, and business scenarios.
- Embedded as an in-product AI module
- Supports both user-facing interaction interfaces and agent-style automation
- Uses Skills to define scenarios and system-specific actions inside the host application
- Fits teams that want to add AI Agent capability to an existing enterprise product quickly
AtlasClaw can also run as an independent enterprise AI Agent system that connects multiple existing systems together. In this mode, it acts as a unified AI layer above those systems rather than belonging to only one of them.
- Runs as an independent AI Agent platform for the enterprise
- Connects and coordinates multiple systems through Providers
- Builds a shared cross-system brain for analysis, judgment, coordination, and execution
- Fits teams that want one unified AI Agent entry point across the enterprise
AtlasClaw is organized around a thin core plus rich providers.
- Access channels support both embedded in-system experiences and standalone enterprise entry points
- AtlasClaw Core hosts the API layer, session/config services, and the agent engine
- LLM services are external and replaceable through configuration
- Providers encapsulate authentication, skills, and scripts for each connected enterprise platform
- Enterprise systems remain the source of truth for authorization and auditing
At a high level, requests enter through one of the supported channels, pass through the AtlasClaw Core, and are executed against enterprise systems through Providers. In embedded mode, the entry point can be an AI panel or module inside an existing enterprise application. In standalone mode, AtlasClaw exposes an independent AI Agent interface that sits above multiple enterprise systems. In both cases, the core remains lightweight and reusable, while each Provider contains the system-specific integration logic.
The core runtime in this repository centers on:
API Layer: interactive APIs, WebSocket streaming, and webhook endpoints for both user-driven and programmatic invocationAgent Engine: routing, prompt building, tool selection, and execution orchestrationSession & Memory: conversation context, persistence, and retrievalTools & Skills: reusable execution units exposed to the agentProvider Registry: registration and discovery of enterprise integrationsExecution Context: dependency injection for auth, tenant, and runtime-scoped data
project-root/
├── app/atlasclaw/api/ # REST, SSE, WebSocket, gateway orchestration
├── app/atlasclaw/agent/ # Agent runner, routing, streaming, prompt building
├── app/atlasclaw/channels/ # Channel adapters and registries
├── app/atlasclaw/core/ # Config, execution context, provider registry
├── app/atlasclaw/memory/ # Memory manager and retrieval
├── app/atlasclaw/session/ # Session context, queue, and manager
├── app/atlasclaw/skills/ # Skill loading and registry
├── app/atlasclaw/tools/ # Built-in tools and tool catalog
├── app/atlasclaw/workflow/ # Workflow engine and orchestrator
├── docs/ # Concepts, tools, channels, and design notes
└── tests/ # Pytest test suite
- Python 3.11+
- A virtual environment is recommended
- Access to an LLM provider and target enterprise systems for end-to-end integration
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtAtlasClaw uses atlasclaw.json for configuration. Create a configuration file in the project root:
{
"providers_root": "../atlasclaw-providers/providers",
"model": {
"primary": "kimi/kimi-k2.5",
"temperature": 0.7,
"providers": {
"kimi": {
"base_url": "${ANTHROPIC_BASE_URL}",
"api_key": "${ANTHROPIC_API_KEY}",
"api_type": "anthropic"
}
}
}
}The example above assumes a sibling atlasclaw-providers repository. The
schema default for providers_root remains ../providers.
Configuration options:
providers_root- Root directory for provider packages, resolved relative toatlasclaw.json(schema default:../providers)- Provider skills discovered under
providers_rootare registered asprovider:skillto avoid name collisions model.primary- Primary model in formatprovider/model-namemodel.providers- Provider configurations withbase_url,api_key, andapi_typeapi_type- API type:openai(default) oranthropic
Environment variables are expanded from ${VAR_NAME} format. Set them before starting:
# For Kimi (Anthropic-compatible API)
export ANTHROPIC_BASE_URL="https://api.moonshot.cn/anthropic"
export ANTHROPIC_API_KEY="your-api-key"
# For Doubao (OpenAI-compatible API)
export DOUBAO_BASE_URL="https://ark.cn-beijing.volces.com/api/v3"
export DOUBAO_API_KEY="your-api-key"# Run all tests
pytest tests/atlasclaw -q
# Run LLM integration tests (requires API credentials)
export ANTHROPIC_BASE_URL="https://api.moonshot.cn/anthropic"
export ANTHROPIC_API_KEY="your-api-key"
pytest tests/atlasclaw/test_agent_integration.py -v -m llm
# Run e2e tests (requires running service)
pytest tests/atlasclaw/test_e2e_api.py -v -m e2eStart the backend API server:
uvicorn app.atlasclaw.main:app --reload --host 0.0.0.0 --port 8000The API will be available at http://127.0.0.1:8000.
Once the service is running, open your browser and navigate to:
http://127.0.0.1:8000/
The Web UI provides:
- Chat interface powered by DeepChat
- Real-time streaming responses via SSE
- Multi-language support (Chinese / English)
- Session management with conversation history
The frontend is located in app/frontend/ and supports two deployment modes:
Open Source Mode (default):
- Source files are served directly without bundling
- No build step required
- Edit files in
app/frontend/scripts/and refresh browser
Enterprise Mode:
cd app/frontend
npm install
npm run build- Produces minified
dist/app.min.js - Update
index.htmlto reference the bundled file
Run Frontend Tests:
cd app/frontend
npm test- Entry point:
app/atlasclaw/main.py- FastAPI application with lifespan management - The API surface lives under
app/atlasclaw/api/ - Core orchestration logic lives under
app/atlasclaw/agent/,app/atlasclaw/workflow/, andapp/atlasclaw/tools/ - Provider integrations are loaded from
providers_root(schema default:../providers; common sibling-repo layout:../atlasclaw-providers/providers)
If you are integrating AtlasClaw into a host service, start by wiring the API layer, execution context, provider registry, and session manager together in your application bootstrap.

