codearkt
Implementation of the CodeAct agentic framework with Docker containers for security, MCP servers for tool integrations, and multi-agent support.
GitHubスター
8
ユーザー評価
未評価
フォーク
1
イシュー
0
閲覧数
2
お気に入り
0
CodeArkt
CodeArkt is a battery-included implementation of the CodeAct framework with support for the multi-agent architecture. Ship autonomous agents that can reason, write, execute & iterate over code - all from a single Python package.
✨ Why CodeArkt?
- Multi-agent orchestration – coordinate hierarchies of specialist agents.
- Secure Python sandbox – secure, ephemeral Docker execution environment for code actions.
- First-class tool ecosystem – auto-discover & register MCP tools.
- Drop-dead simple UI – launch an elegant Gradio chat.
- Production ready – typed codebase (
mypy --strict
), CI, tests, Docker & Apache-2.0 license.
🚀 Quick Start
Install the package:
pip install codearkt # requires Python ≥ 3.12
Run your MCP servers:
python -m academia_mcp --port 5056 # just an example MCP server
Run a server with a simple agent and connect it to your MCP servers:
import os
from codearkt.codeact import CodeActAgent
from codearkt.llm import LLM
from codearkt.server import run_server
# Use your own or remote MCP servers
mcp_config = {
"mcpServers": {"academia": {"url": "http://0.0.0.0:5056/mcp", "transport": "streamable-http"}}
}
# Create an agent definition
api_key = os.getenv("OPENROUTER_API_KEY", "")
assert api_key, "Please provide OpenRouter API key!"
agent = CodeActAgent(
name="manager",
description="A simple agent",
llm=LLM(model_name="deepseek/deepseek-chat-v3-0324", api_key=api_key),
tool_names=["arxiv_download", "arxiv_search"],
)
# Run the server with MCP proxy and agentic endpoints
run_server(agent, mcp_config, port=5055)
Client:
import json
import httpx
headers = {"Content-Type": "application/json", "Accept": "text/event-stream"}
url = f"http://localhost:5055/agents/manager"
payload = {"messages": [{"role": "user", "content": "Find an abstract of the 2402.01030 paper"}], "stream": True}
with httpx.stream("POST", url, json=payload, headers=headers, timeout=600) as response:
response.raise_for_status()
for event_str in response.iter_text():
event = json.loads(event_str)
if event["content"]:
print(event["content"], end="", flush=True)
Within seconds, you will see agents collaborating, executing Python snippets, and streaming the results back to your console.
🧩 Feature Overview
Area | Highlights |
---|---|
Agents | Hierarchical manager / worker pattern, pluggable prompts, configurable iteration limits |
Tools | Automatic discovery via MCP registry, Python execution (python_interpreter ) |
Execution | Sandboxed temp directory, timeout, streamed chunks, cleanup hooks |
Observability | AgentEventBus publishes JSON events – integrate with logs, websockets or GUI |
UI | Responsive Gradio Blocks chat with stop button, syntax-highlighted code & output panels |
Extensibility | Compose multiple CodeActAgent instances, add your own LLM backend, override prompts |
📖 Documentation
For now, explore the well-typed source code.
🛠️ Project Structure
codearkt/
├─ codeact.py # Core agent logic
├─ python_executor.py # Secure sandbox for arbitrary code
├─ event_bus.py # Pub/Sub for agent events
├─ gradio.py # Optional web UI
└─ ...
examples/
└─ multi_agent/ # End-to-end usage demos
🗺️ Roadmap
- Otel integration
- CI for the Docker image
- Full documentation & tutorials
- Test coverage
🤝 Contributing
Pull requests are welcome! Please:
- Fork the repo & create your branch:
git checkout -b feature/my-feature
- Install dev deps:
make install
- Run the linter & tests:
make validate && make test
- Submit a PR and pass the CI.
Join the discussion in Discussions or open an Issue.
📝 License
CodeArkt
is released under the Apache License 2.0 – see the LICENSE file for details.
625
フォロワー
89
リポジトリ
12
Gist
49
貢献数