Skip to main content

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/; use kimix --config xx.json after setup.

teasor

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

  1. Lean system prompts — Compressed initial prompts and tool descriptions down to ~2000 tokens while covering nearly all built-in tools.
  2. Hardened permissions & validation — Properly handles Shell, Glob, and other tool validations to reduce retry loops from failures.
  3. Better subprocess output — Redirects large outputs to temp files and filters redundant logs for easier backend retrieval.
  4. Simpler concurrency — Streamlined design for subprocesses, sub-agents, and background tasks.
  5. Programmable prompts — Allows custom system prompt injection at the upper layer for flexible scenarios.
  6. Explicit conversation management — Clearer multi-task orchestration and state tracking.
  7. Write-and-validate — Auto format checks and warnings on strict config files to prevent model-hallucinated errors.
  8. Multi-API support — Import custom configs compatible with OpenAI, Anthropic, and more.
  9. 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 (for loops, 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_CASCADE prompt to prevent information degradation.
  • Post-compaction, all rounds marked is_compacted in 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 above auto_retrieve_history_threshold as [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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kimix-0.1.21.tar.gz (1.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kimix-0.1.21-py3-none-any.whl (205.9 kB view details)

Uploaded Python 3

File details

Details for the file kimix-0.1.21.tar.gz.

File metadata

  • Download URL: kimix-0.1.21.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

Hashes for kimix-0.1.21.tar.gz
Algorithm Hash digest
SHA256 08c9a3835cc1c43f00573e1e24b3dc4663cdc534e17e2dfba09d2cd183631406
MD5 62ddda6875ec4a079a83329012273883
BLAKE2b-256 a75e2ad4b146af247c56b5c7c182ec0c36a6de09a49f15d042836bf2938e3f12

See more details on using hashes here.

File details

Details for the file kimix-0.1.21-py3-none-any.whl.

File metadata

  • Download URL: kimix-0.1.21-py3-none-any.whl
  • Upload date:
  • Size: 205.9 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

Hashes for kimix-0.1.21-py3-none-any.whl
Algorithm Hash digest
SHA256 ed1bebd82b34d4dc2af83ae7faabb11ebdc92947d528db65b9a34011ef4b08ae
MD5 767420c346a08a8d416af2be936d52bf
BLAKE2b-256 82824cba2fa7de9397e5d0840f760299716ddc8d6e3c93043d64dae5117c0a09

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page