.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/agentforce314/clawcodex
home/mcp-servers/agentforce314/clawcodex
agentforce314 avatar

clawcodex

byagentforce314· 1 MCP server

Stars

819

Forks

147

Category

Backend & APIs

View on GitHub

TL;DR

A production-oriented Python rebuild of Claude Code — real architecture, reliable CLI agent

How to install clawcodex?

agentforce314/clawcodex
$git clone https://github.com/agentforce314/clawcodex

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install clawcodex by running `git clone https://github.com/agentforce314/clawcodex`, then use it for the current task and follow its documentation at https://github.com/agentforce314/clawcodex.

Files · 1

View on GitHub
README.md
1<div align="center">
2 
3**English** | [中文](docs/i18n/README_ZH.md) | [Français](docs/i18n/README_FR.md) | [Русский](docs/i18n/README_RU.md) | [हिन्दी](docs/i18n/README_HI.md) | [العربية](docs/i18n/README_AR.md) | [Português](docs/i18n/README_PT.md)
4 
5# ClawCodex
6 
7**A production-oriented Python rebuild of Claude Code — real architecture, reliable CLI agent**
8 
9*Ported from the TypeScript reference implementation and extended with a Python-native runtime*
10 
11***
12 
13[![GitHub stars](https://img.shields.io/github/stars/agentforce314/clawcodex?style=for-the-badge&logo=github&color=yellow)](https://github.com/agentforce314/clawcodex/stargazers)
14[![GitHub forks](https://img.shields.io/github/forks/agentforce314/clawcodex?style=for-the-badge&logo=github&color=blue)](https://github.com/agentforce314/clawcodex/network/members)
15[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge)](https://opensource.org/licenses/MIT)
16[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg?style=for-the-badge&logo=python&logoColor=white)](https://www.python.org/downloads/)
17 
18 
19**🔥 Active Development • New Features Weekly 🔥**
20 
21![ClawCodex Screenshot](assets/clawcodex-screenshot-1.png)
22 
23</div>
24 
25***
26 
27<div align="center">
28 
29# 🌿✂️ /eco Token Compression
30 
31# Same session, **80% fewer** Bash-output tokens
32 
33### Measured, not estimated: 27 real command outputs replayed through the production pipeline — **92,989 → 17,767 tokens (-80%)**. Failure summaries keep the error lines that matter; anything lossy is teed to disk, one `tail` away.
34 
35One toggle, deterministic filters — failure-focused test summaries, `git`/`pip`/`npm` ceremony
36stripping, log dedup, recoverable head-caps — guarded to be **never worse** than the raw rendering.
37Stacks with the [DeepSeek prefix cache](#-deepseek-prefix-cache): the cache makes your stable
38prefix nearly free, `/eco` shrinks the fresh suffix every turn actually pays for.
39**[See the measured benchmark ↓](#eco-benchmark)**
40 
41</div>
42 
43***
44 
45<div align="center">
46 
47# 🐋🔥 DeepSeek Prefix Cache
48 
49# Run long agentic coding sessions for *pennies*
50 
51### Cache-hit input bills at **`~$0.0435` / 1M tokens** — about **230× cheaper** than Claude Fable 5 (`$10` / 1M).
52 
53ClawCodex keeps your request prefix **byte-stable**, so DeepSeek's prompt cache covers your whole
54`system + tools + history` span across turns. **The longer you code, the more you save.**
55 
56</div>
57 
58***
59 
60## ⚡ Quick Install
61 
62**One line** — installs `uv`, Python 3.10+, and puts `clawcodex` on your PATH:
63 
64```bash
65curl -fsSL https://clawcodex.app/install.sh | bash
66```
67 
68Then configure a provider and start coding:
69 
70```bash
71clawcodex login # interactive provider + API key setup → ~/.clawcodex/config.json
72clawcodex --dangerously-skip-permissions # start the REPL in any project
73```
74 
75The installer also ships `clawcodex` lifecycle helpers — `doctor` (diagnose your
76environment), `verify` (health-check the install), `update`, and `uninstall`. It is
77re-run-safe and works on macOS, Linux, and WSL. To pass flags through the pipe, use
78`curl -fsSL https://clawcodex.app/install.sh | bash -s -- --dry-run`.
79 
80<details>
81<summary><b>Or install manually from source</b></summary>
82 
83```bash
84git clone https://github.com/agentforce314/clawcodex.git
85cd clawcodex
86python3 -m venv .venv && source .venv/bin/activate # Python 3.10+
87pip install -r requirements.txt
88 
89python -m src.cli login # writes config to ~/.clawcodex/config.json
90 
91python -m src.cli --dangerously-skip-permissions # start the REPL
92```
93 
94</details>
95 
96The configuration file is saved at `~/.clawcodex/config.json`. Minimal example:
97 
98```json
99{
100 "default_provider": "deepseek",
101 "providers": {
102 "deepseek": {
103 "api_key": "xxx-xxx",
104 "base_url": "https://api.deepseek.com",
105 "default_model": "deepseek-v4-pro"
106 }
107 },
108 "env": {
109 "TAVILY_API_KEY": "tvly-YOUR-TAVILY-API-KEY"
110 }
111}
112```
113 
114> **Note:** `TAVILY_API_KEY` is required for the WebSearch tool — get a key at [tavily.com](https://tavily.com)

Preview

agentforce314/clawcodexagentforce314/clawcodex
Repoagentforce314/clawcodex
TypeMCP Servers
CategoryBackend & APIs
UpdatedJul 2026
LicenseMIT
First seenJul 26, 2026

Tags

MCP

Related

6 picks
Type
  1. tadata-org avatarfastapi_mcpAutomatic MCP server generator for FastAPI applications - converts FastAPI endpoints to MCP tools for LLM integrationMCP ServersNov 202519M12k
  2. ivnvxd avatarmcp-server-odooA Model Context Protocol server for Odoo ERP systemsMCP ServersJul 2026551k349
  3. pantalytics avatarodoo-mcp-proAI connector for Odoo ERP -- connect Claude, ChatGPT, and other AI tools to Odoo via MCP (Model Context Protocol)MCP ServersJul 2026551k65
  4. cap-js avatarmcp-serverModel Context Protocol (MCP) server for AI-assisted development of CAP applications.MCP ServersJul 2026295k105
  5. punitarani avatarfliA Python wrapper for Google Flights APIMCP ServersJul 2026211k3.1k
  6. meilisearch avatarmeilisearch-mcpMCP server for MeilisearchMCP ServersJun 202661k194