kimss-sdk

kimss-sdk is a skill for Claude Code, Codex from kimss-ai/kimss-python-sdk. It costs 44 tokens per session (751 once invoked), scanned A, original, MIT.

Integration guidance for routing OpenAI or Anthropic model requests through Kimss, a gateway that provides agent identity, auditing, and a disable switch. It also documents optional controls for registering agents and reporting usage.

In plain words
What is it for?
Configuring OpenAI or Anthropic requests, adding agent identity headers, and optionally registering external agents or reporting bring-your-own-model usage.
Why use it?
It gives developers a clear way to connect an existing model client to Kimss without replacing that client's normal request interface.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/kimss-ai/kimss-python-sdk/kimss-sdk
Any agent
npx skills add kimss-ai/kimss-python-sdk --skill kimss-sdk
Clone the repo
git clone --depth 1 https://github.com/kimss-ai/kimss-python-sdk

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kimss-sdk

README.md
[![agentmods](https://agentmods.dev/badge/skills/kimss-ai/kimss-python-sdk/kimss-sdk.svg)](https://agentmods.dev/skills/kimss-ai/kimss-python-sdk/kimss-sdk)
Your own site
<a href="https://agentmods.dev/skills/kimss-ai/kimss-python-sdk/kimss-sdk"><img src="https://agentmods.dev/badge/skills/kimss-ai/kimss-python-sdk/kimss-sdk.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 751 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00044 $0.00751
Opus 5 $0.00022 $0.00376
Sonnet 5 $0.00009 $0.00150
Haiku 4.5 $0.00004 $0.00075

Measured 3d ago against content hash 592c2ca8e8b1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

kimss-sdk scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/kimss-sdk/SKILL.md · 86 lines

How it starts

The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kimss Python SDK / Gateway

When to use

  • Routing app traffic through Kimss (identity, audit, kill switch).
  • Optional DevOps: register external agents, report BYO usage.

Preferred inference (no Kimss SDK)

Keep the native SDK already in the app.

OpenAIpip install openai, base_url=https://api.kimss.ai/v1:

import os
from openai import OpenAI

client = OpenAI(
    base_url=os.getenv("KIMSS_GATEWAY_URL", "https://api.kimss.ai/v1"),
    api_key=os.getenv("KIMSS_WORKSPACE_KEY") or os.getenv("KIMSS_API_KEY"),
)
resp = client.chat.completions.create(
    model=os.getenv("KIMSS_MODEL", "custom:your-model"),
    messages=[{"role": "user", "content": "Hello"}],
    extra_headers={
        "X-Kimss-Agent-Id": os.getenv("KIMSS_AGENT_ID", "my_agent"),
        "X-Kimss-Agent-Name": os.getenv("KIMSS_AGENT_NAME", "My Agent"),
    },
)

Anthropicpip install anthropic, base_url=https://api.kimss.ai (SDK appends /v1/messages):

import os
from anthropic import Anthropic

client = Anthropic(
    base_url=os.getenv("ANTHROPIC_BASE_URL", "https://api.kimss.ai"),
    api_key=os.getenv("KIMSS_WORKSPACE_KEY") or os.getenv("KIMSS_API_KEY"),
)
resp = client.messages.create(
    model=os.getenv("KIMSS_MODEL", "custom:your-model"),
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello"}],
    extra_headers={
        "X-Kimss-Agent-Id": os.getenv("KIMSS_AGENT_ID", "my_agent"),
        "X-Kimss-Agent-Name": os.getenv("KIMSS_AGENT_NAME", "My Agent"),
    },
)

See examples/00b_anthropic_proxy.py.

Control plane (optional)

pip install kimss
from kimss import KimssClient
client = KimssClient(api_key="kimss_...", base_url="https://api.kimss.ai")
client.agents.register(name="Database Auditor", agent_id="enterprise_db_auditor")

Deprecated (do not generate new call sites)

client.agents.run, client.chat, Agent.query, client.models.create, MCP kimss_chat / kimss_run_agent / kimss_complete.

Read the full file on GitHub · 86 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 86 lines · 44 tokens per session scan A 592c2ca8e8b1

Subscribe to this mod's changes

kimss-sdk is a skill published in the GitHub repository kimss-ai/kimss-python-sdk (1 stars, last pushed today), licensed MIT. It adds 44 tokens to every session and 751 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

agent-session-monitor

Real-time agent conversation monitoring - monitors Higress access logs, aggregates conversations by session, tracks token usage. Supports web interface for viewing complete conversation history and costs. Use when users ask about current session token consumption, conversation history, or cost statistics.

higress-group/higress · 53 tokens

nginx-to-higress-migration

Migrate from ingress-nginx to Higress in Kubernetes environments. Use when (1) analyzing existing ingress-nginx setup (2) reading nginx Ingress resources and ConfigMaps (3) installing Higress via helm with proper ingressClass (4) identifying unsupported nginx annotations (5) generating WASM plugins for nginx…

higress-group/higress · 99 tokens

higress-openclaw-integration

Deploy and configure Higress AI Gateway for OpenClaw integration. Use when: (1) User wants to deploy Higress AI Gateway, (2) User wants to configure OpenClaw to use more model providers, (3) User mentions 'higress', 'ai gateway', 'model gateway', 'AI网关', (4) User wants to set up model routing or auto-routing, (5) User…

higress-group/higress · 103 tokens

higress-wasm-go-plugin

Develop Higress WASM plugins using Go 1.24+. Use when creating, modifying, or debugging Higress gateway plugins for HTTP request/response processing, external service calls, Redis integration, or custom gateway logic.

higress-group/higress · 52 tokens

higress-daily-report

生成 Higress 项目每日报告,追踪 issue/PR 动态,沉淀问题处理经验,驱动社区问题闭环。用于生成日报、跟进 issue、记录解决方案。.

higress-group/higress · 50 tokens

higress-auto-router

Configure automatic model routing using the get-ai-gateway.sh CLI tool for Higress AI Gateway. Use when: (1) User wants to configure automatic model routing, (2) User mentions 'route to', 'switch model', 'use model when', 'auto routing', (3) User describes scenarios that should trigger specific models, (4) User wants…

higress-group/higress · 88 tokens