Kimi Agent Tools - Custom tool collection for Kimi Agent SDK
Project description
Kimi-CLI-X
Install from Source
python install.py
pip Install
pip install kimix
python -m kimix.cli
# or
kimix
python -m kimix
Note: This repo supports not only KIMI LLM but also various API keys! Like OpenAI, Anthropic, etc. Default config templates are in
docs/; usekimix --config xx.jsonafter setup.
Why Kimi-CLI-X?
Kimi-CLI-X is a deep optimization of the original Kimi-CLI, focusing on prompt efficiency, tool reliability, and extensibility, plus new tools for real-world development.
Optimizations
- Lean system prompts — Compressed initial prompts and tool descriptions down to ~2000 tokens while covering nearly all built-in tools.
- Hardened permissions & validation — Properly handles Shell, Glob, and other tool validations to reduce retry loops from failures.
- Better subprocess output — Redirects large outputs to temp files and filters redundant logs for easier backend retrieval.
- Simpler concurrency — Streamlined design for subprocesses, sub-agents, and background tasks.
- Programmable prompts — Allows custom system prompt injection at the upper layer for flexible scenarios.
- Explicit conversation management — Clearer multi-task orchestration and state tracking.
- Write-and-validate — Auto format checks and warnings on strict config files to prevent model-hallucinated errors.
- Multi-API support — Import custom configs compatible with OpenAI, Anthropic, and more.
- Verified backends — Tested against kimi, anthropic, openai_legacy, openai_responses, google_genai, vertexai, etc. See
kimi-cli/tests/core/test_create_llm.py.
New Capabilities
| Capability | Description |
|---|---|
| Input tool | TUI interaction with running processes. |
| Docx / PDF conversion | Built-in document conversion without external deps. |
| Python script execution | Agent can run Python scripts directly. |
| Error logging | Records tool-call errors for model backtracking and improvement. |
| Script system | Combines prompts with Python logic to orchestrate complex tasks. |
| Enhanced web fetch (FetchURL) | Headless-browser-based Markdown output (not plain text), supports output_path and auto-truncation for超长 content; zero external service dependency. |
Scriptable Workflows (Core Advantage)
Unlike traditional CLI interaction where you type commands one by one, Kimi-CLI-X lets you write Python scripts to orchestrate entire workflows. You can combine prompts, loops, conditionals, and tool calls into fully automated, reproducible task pipelines:
from kimix import *
from pathlib import Path
clear_default_context()
for i in Path('docs').glob('*.md'):
prompt(f'''According to the new git commits, update document `{i}`''')
Benefits:
- Batch automation: Use native Python syntax (
forloops, file globbing) to fire tasks at multiple files at once. - Complex orchestration: Freely compose mode switches, tool calls, and logic into multi-stage, multi-branch workflows.
- Reproducible & maintainable: Workflows live as version-controlled scripts, not ephemeral chat history.
Context Memory Architecture
Kimi-CLI-X embeds an automatic context memory system inside the KimiSoul core loop, keeping long conversations coherent without manual intervention. Three layers work together:
1. Conversation History Index (HistoryIndex)
Every user/assistant message is automatically indexed by BM25 inverted index (N-gram, n=2) on append, persisted to <session>/history_index/<id>.json, and survives process restarts. Cap at 500 rounds; oldest evicted automatically.
2. Automatic Context Compaction (SimpleCompaction)
Triggered when context token ratio hits compaction_trigger_ratio or free space falls below reserved_context_size:
- Retention policy: Recent N rounds kept verbatim (depth adapted by
adaptive_preserve_depth— deepened on errors, thinking, multi-file edits, etc.); first message always kept (primacy effect). - LLM summarization: Old messages compressed into structured summaries via a lightweight LLM call; thinking blocks discarded.
- Cascade handling: When already-compacted content is compressed again (depth ≥3), switches to
COMPACT_CASCADEprompt to prevent information degradation. - Post-compaction, all rounds marked
is_compactedin HistoryIndex for future retrieval.
3. Auto History Retrieval + On-Demand Recall
- Auto retrieval (
_maybe_auto_retrieve_history): Each round, if user input ≥10 chars, BM25-searches HistoryIndex for matching compacted rounds; injects matches aboveauto_retrieve_history_thresholdas[Auto-retrieved from past conversation]. - ContextRetrieval tool: Agent can actively search all archived history (including compacted rounds) by natural-language query, returning verbatim excerpts with relevance scores.
┌──────────────┐ append ┌──────────────┐ overflow ┌──────────────────┐
│ Context │ ───────────► │ HistoryIndex │ ────────────► │ SimpleCompaction │
│ (live window)│ │ (BM25 index) │ │ (LLM summary) │
└──────────────┘ └──────────────┘ └──────────────────┘
▲ │ │
│ auto-retrieve │ │
└────────────────────────────┘ │
│ ContextRetrieval (agent主动recall) │
└────────────────────────────────────────────────────────────┘
Documentation Index
Tutorials
| Document | Description |
|---|---|
docs/tutorials/1_quick_start_en.md |
Quick start guide: Git submodules, uv env setup, CLI args, and interactive commands. |
docs/tutorials/2_long_task_en.md |
Long task strategy in KimiX. |
docs/tutorials/3_builtin_tools_en.md |
Complete built-in tool guide: file I/O, search, code execution, process management, doc conversion, plan mode, sub-agents, plus prompt strategies and best practices. |
docs/tutorials/4_skills_en.md |
Custom skill authoring: design principles, directory structure, SKILL.md spec, resource organization, testing, packaging, and installation. |
docs/tutorials/5_server_en.md |
HTTP server tutorial: FastAPI + SSE, OpenCode-compatible REST API, session management, event streaming, SSE CLI debugger, dummy mode, and client implementation. |
Config Reference
| File | Description |
|---|---|
docs/config.json |
Sample model config with model, url, api_key, capabilities, etc. |
.kimix/config.json |
Workspace behavior config: protected_write_paths, protected_read_paths, forbidden_commands, etc. |
.kimix/skill.json |
Workspace skill directory config: skill_dir field (string or array) for extra skill directories, resolved relative to workspace. |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kimix-0.1.22.tar.gz.
File metadata
- Download URL: kimix-0.1.22.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b4499e2481409bd682c2fec626cf66713eddba3afff8a86f1945f4cb007ba5f
|
|
| MD5 |
4d0ebbc350b189b140c8a9b6ae546dbe
|
|
| BLAKE2b-256 |
47d2d83bbb7684c980b90fd31ad2846eb0f07e6874df0618b6bf9f79a8a8f391
|
File details
Details for the file kimix-0.1.22-py3-none-any.whl.
File metadata
- Download URL: kimix-0.1.22-py3-none-any.whl
- Upload date:
- Size: 210.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68db4f74eef80c247f4aafc68e4690b0f5fd4ed461008a21c0ab552503825c39
|
|
| MD5 |
7332ec64c81b9c1bf617eee8657b3d42
|
|
| BLAKE2b-256 |
bd95770336a540d1d80f9a4ac1d040bb873bf4d5b32d84b4f962b110c6f23c47
|