Skip to main content

Python SDK for mink — sandboxed AI coding agent

Project description

mink

简体中文

极简 AI coding agent。Rust 原生实现,专为 DeepSeek 优化。

单二进制,零运行时依赖,可在终端独立运行或被其他程序嵌入编排。


特性

  • DeepSeek 原生优化 — 针对 DeepSeek V4 系列设计,最大化 prefix-cache 命中率
  • 两种终端模式 — REPL(-i,rustyline 行编辑)和 TUI(--tui,ratatui 全屏界面)
  • 信号驱动的信念系统 — 自动检测工具执行错误,低信念时注入修正提示并约束恢复首步;可用 MINK_SIGNAL_MODE=off 关闭
  • 自适应上下文压缩 — 三级压缩,自动摘要,保持上下文在窗口内
  • 维修流水线 — Scavenge → Truncation → Storm Breaker,三段自动修复
  • Session 持久化 — JSONL 格式,--continue 无缝恢复
  • 子代理(SubAgent) — 隔离或 fork 上下文,并发执行
  • 技能系统 — 按需加载 skill 文件,不污染后续 prompt
  • 自定义提示词--mission 加载 MISSION.md 文件,替换默认系统提示词,自由定义 agent 目标和行为
  • Python SDKmink-agent pip 包,内置无 TUI 的 mink-core 二进制,支持沙箱控制和全参数配置
  • 沙箱防护 — Linux nsjail/bubblewrap(完整文件系统隔离)、macOS sandbox-exec(写入隔离)
  • CPython WASI 沙箱PythonSandbox 工具,在 wasmtime + CPython WASI 中执行 Python 代码,WASI 级进程隔离
  • 运行时约束--disable-bash / --disable-sub-agent / --disable-web / --disable-python 按场景禁用工具;--enable-python-sandbox 启用沙箱 Python 工具
  • 机器协议--print 输出 ndjson 事件流并以 final 结束;--agent-jsonl 提供 single-shot Agent JSONL 协议

快速开始

# 前置:Rust 1.85+,设置 DEEPSEEK_API_KEY

# 编译
cargo build --release
# 或
make build

# REPL 交互模式
./target/release/mink -m flash -i

# TUI 全屏模式
./target/release/mink -m flash --tui

# 单次查询
./target/release/mink -m flash "explain this project"

# 继续上次会话
./target/release/mink -m flash --continue -i

# 使用自定义系统提示词
./target/release/mink --mission ./my-task.mission.md -i

Python SDK

通过 pip 安装使用:

pip install mink-agent
from mink_agent import AgentSession, SandboxConfig

session = AgentSession(SandboxConfig(
    api_key="sk-...",
    read_dirs=["src"],
    write_dirs=["src"],
    mission_file="./my-task.mission.md",
    signal_mode="full",
))
result = session.run("处理文档")
print(result["status"], result["events_path"])

详见 mink_agent/README.md


文档索引

文档 说明
使用手册 完整 CLI 参数、配置、环境变量、会话管理、工具、技能
架构说明 运行时分层、模块职责、核心数据流
设计文档 14 个主题的设计哲学与实现取舍
信号系统设计 控制论 + 贝叶斯、冷却机制、信念度展示
Agent 开发指南 面向 AI agent:项目结构、模块索引、开发惯例
工具参考 内置工具参数与行为

许可

MIT

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

mink_agent-0.1.8-py3-none-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

mink_agent-0.1.8-py3-none-manylinux_2_35_x86_64.whl (2.2 MB view details)

Uploaded Python 3manylinux: glibc 2.35+ x86-64

mink_agent-0.1.8-py3-none-macosx_15_0_arm64.whl (1.9 MB view details)

Uploaded Python 3macOS 15.0+ ARM64

File details

Details for the file mink_agent-0.1.8-py3-none-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mink_agent-0.1.8-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34bacc16e62b61535f06820c6f1d74c4a6bcceaa732897b00bd7a50597f90e76
MD5 7c50c294e03401c26442e402e3977f77
BLAKE2b-256 5834fc478af5738a47d3344c8b253a0da6df9f05a3e009c96731b39ad0319ff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mink_agent-0.1.8-py3-none-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on fierceX/mink

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mink_agent-0.1.8-py3-none-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for mink_agent-0.1.8-py3-none-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 b9040cff8dac3ec9a7772de0036be263a05707b3e180cc226a93b568067b6db6
MD5 9cb292df5a8a40864c466e479deaf2cd
BLAKE2b-256 7984701cf32ebe14f794ae2c0dc5d4d66a137ef2844cbfcad17d16ab87517097

See more details on using hashes here.

Provenance

The following attestation bundles were made for mink_agent-0.1.8-py3-none-manylinux_2_35_x86_64.whl:

Publisher: ci.yml on fierceX/mink

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mink_agent-0.1.8-py3-none-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for mink_agent-0.1.8-py3-none-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b1faa0bdb0c1b02cdaa9961d49473cb38ea690369b2bba91176ffc3b6a709015
MD5 7f6201b1facc9c638f58d919c1e4920b
BLAKE2b-256 49053ff102e76bb5b16df268cf8510a11df7676b66a144e0c503e94029a7ecbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for mink_agent-0.1.8-py3-none-macosx_15_0_arm64.whl:

Publisher: ci.yml on fierceX/mink

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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