Kimi Agent Module API
The stable, host-independent contracts for building Kimi application modules: separately installed packages that add commands, LLM tools, background jobs, event handlers, per-guild settings, and durable data to a Kimi deployment.
This package contains no bot runtime, Discord client, database implementation, or module loader. It exports:
ModuleSpec,ModuleLoadContext,ModuleRuntimeContext: the declaration a module publishes and the two contexts the host hands it.kimi_agent_module_api.contracts: every runtime port as atyping.Protocol(storage, scheduler, events, Discord actions, interactions, HTTP, services, trust, proposals, health) plus the validators the host runs at preflight.kimi_agent_module_api.events: the normalizeddiscord.*event payloads.kimi_agent_module_api.files:ToolFiles,ToolAttachment,ToolFile, andFileAccessErrorfor invocation-scoped attachment and workspace reads.kimi_agent_module_api.testing: a fake for every port,load_context()for exercisingcreate(), andMemoryStorage(install thetestingextra) so a module can unit test itself with only this package installed.
A module exposes a ModuleSpec through the kimi_agent.modules entry-point
group:
[project]
dependencies = ["kimi-agent-module-api>=2,<3"]
[project.entry-points."kimi_agent.modules"]
my_module = "my_module_package:SPEC"
The source must pin the API contract it implements when constructing the specification:
from kimi_agent_module_api import ModuleSpec
SPEC = ModuleSpec(
name="my_module",
version="0.1.0",
create=create,
api_version=2,
)
api_version is a required keyword. Keep it as a literal rather than deriving
it from the installed SDK's MODULE_API_VERSION; unchanged module source must
not silently claim compatibility merely because it was rebuilt with a newer
SDK.
The module guide documents installation, declarations, lifecycle, and every runtime port. The reference module is a complete, commented example that exercises most ports; start there.
Modules using guild-scoped live command replacement through
InteractionRouter.replace_guild_commands() should require the host capability
discord.guild_commands.v1.
The SDK provides typed modal forms and a narrow Components V2 layout model. Once a response uses
that layout model, Discord requires every later edit of the same message to remain a layout.
Modules using them should require
discord.modals.v1 and/or discord.components_v2.v1.
Message-deletion events include cached author classification:
MessageDeleteEvent.author_is_bot and MessageBulkDeleteEvent.bot_message_ids.
The values remain unknown for messages that were absent from Discord's cache.
SDK 2.1 adds ModuleToolContext.trigger_discord_message_id. Mention-path tool
calls receive the exact source Discord message snowflake; other surfaces receive
None. Modules that act on a user's source message should require
kimi-agent-module-api>=2.1,<3, reject None, fetch that exact message through
ctx.discord, and verify its author before acting.
Modules use namespaced guild documents and the physical table names returned
by ctx.storage.table().
SDK 2.2 adds optional ModuleToolContext.files. Declare
ModulePermissions(tool_files=True), depend on kimi-agent-module-api>=2.2,<3,
and require tools.files.v1 in ModuleSpec.requires_capabilities. Existing modules
keep api_version=2 and receive files=None without the permission.
ctx.files.attachments lists admitted current/reply entries;
read_attachment(id, max_bytes=...) and read_workspace(path, max_bytes=...)
return bounded bytes without network downloads. The reader expires when the handler
returns and is scoped to the actual caller. testing.FakeToolFiles supports
independent tests. See the
file access guide
for moderation, reply-image availability, privacy, and limits.
Testing the SDK
From this package directory, run its tests without installing the Kimi application:
uv run --isolated --group test python -m pytest -q
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 kimi_agent_module_api-2.2.0.tar.gz.
File metadata
- Download URL: kimi_agent_module_api-2.2.0.tar.gz
- Upload date:
- Size: 40.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8173f6c3ddd4208874d767794717d9d29a5d5657be0d57e9bd5def6d3dbef26d
|
|
| MD5 |
41878e8546c196c2fc5e7e6b02514372
|
|
| BLAKE2b-256 |
600ab427301f020981e62ddfc17ab0801364bcfe9d7139e6139c452f4a10b3e8
|
File details
Details for the file kimi_agent_module_api-2.2.0-py3-none-any.whl.
File metadata
- Download URL: kimi_agent_module_api-2.2.0-py3-none-any.whl
- Upload date:
- Size: 38.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbc9ab8cf64e08d606eab12b61fed04d4560d1e4bb1feb8e2a09bff89953248d
|
|
| MD5 |
86a458631779e84a6a397a94925f0ae1
|
|
| BLAKE2b-256 |
e99d13dfe538f8e6a7818f292a0819a5b7226543a20d2cd98763d61efde9d440
|