Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

kimiKimi 搜索

Agent Skill

kimi 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,731

周安装

470

GitHub Stars

公开资料未说明

下载量

3,798
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:kimi(Kimi 搜索)
来源仓库:https://github.com/ivangdavila/kimi
安装命令:
openclaw skills install kimi
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install kimi

简介

通过实时模型检查、重试和安全路由,构建和调试用于聊天、编码、推理和工具调用的 Kimi API 工作流程。

SKILL.md

name
Kimi
slug
kimi
version
1.0.0
homepage
https://clawic.com/skills/kimi
description
Build and debug Kimi API workflows for chat, coding, reasoning, and tool-calling with live model checks, retries, and safe routing.
changelog
Initial release with Kimi workflow routing, OpenAI-compatible request patterns, migration guidance, and operational safety checks.
metadata
{"clawdbot":{"emoji":"🌙","requires":{"bins":["curl","jq"],"env":["MOONSHOT_API_KEY"]},"os":["linux","darwin","win32"],"configPaths":["~/kimi/"]}}

When to Use

User needs Kimi to work reliably for chat, coding, long-context research, structured outputs, or agent workflows. Agent handles live model verification, request shaping, migration from other OpenAI-compatible providers, and failure recovery before the workflow is trusted.

Architecture

Memory lives in ~/kimi/. If ~/kimi/ does not exist, run setup.md. See memory-template.md for structure.

~/kimi/
├── memory.md         # Status, activation rules, and stable defaults
├── routes.md         # Preferred route per workload
├── approvals.md      # Sensitive-send boundaries and redaction preferences
├── experiments.md    # Prompt, parser, and fallback notes
└── logs/             # Optional sanitized repro payloads

Quick Reference

Use the smallest file that resolves the blocker.

TopicFile
Setup processsetup.md
Memory templatememory-template.md
Minimal request patternsapi-patterns.md
Workload routing choicesrouting-matrix.md
OpenAI-compatible migrationmigration-playbook.md
Trust and redaction workflowssafety-workflows.md
Fast diagnosis and recoverytroubleshooting.md

Requirements

  • curl and jq for minimal endpoint checks
  • MOONSHOT_API_KEY kept in environment variables only
  • Kimi access through the official Moonshot API base URL
  • User approval before persisting local notes or sanitized logs

Core Rules

1. Verify Auth and Live Models Before Naming Any Route

  • Start with https://api.moonshot.ai/v1/models and copy live model IDs from the response.
  • Never trust remembered Kimi model names, screenshots, or stale blog examples when a workflow is failing now.

2. Lock the Job to One Workload Before Tuning Prompts

  • Classify the request as one of: fast chat, coding agent, long-context research, deterministic JSON, or migration debugging.
  • Most bad Kimi advice comes from mixing several jobs into one oversized prompt and then blaming the model.

3. Treat Structured Output as a Separate Reliability Path

  • If output feeds tools, code execution, or downstream writes, use strict schemas or a second normalization pass.
  • Do not ask one response to do open-ended reasoning and perfect machine-readable output at the same time.

4. Keep Sensitive Data Out Unless the User Explicitly Approves It

  • Redact secrets, customer identifiers, internal hostnames, and raw tokens before sending prompts externally.
  • If the user wants repeatable Kimi workflows, save the redaction rule and approval boundary in ~/kimi/approvals.md after confirming the first write.

5. Route by Deadline and Cost, Not Brand Habit

  • Use the smallest Kimi route that can finish the current job reliably.
  • For recurring workflows, save one primary route and one fallback route instead of debating models from scratch each time.

6. Separate Provider Migration Problems From Model Problems

  • When moving from OpenAI-compatible code to Kimi, isolate the variable: base URL, auth env var, model ID, parser, or retry policy.
  • Reproduce with one minimal payload before changing prompts, infrastructure, and business logic together.

7. Ask Before Creating Persistent State

  • Work statelessly by default.
  • Only create ~/kimi/ notes, approvals, or debug logs after the user wants continuity across Kimi tasks.

Common Traps

  • Hardcoding a remembered model ID -> fetch /models and use the live ID instead.
  • Treating Kimi as one generic route -> split coding, reasoning, JSON, and migration work.
  • Sending raw internal logs to the API -> redact first and preview what leaves the machine.
  • Combining creative reasoning with strict JSON output -> use a second deterministic pass.
  • Blaming the model for every failure -> verify auth, base URL, retries, and parser behavior first.

External Endpoints

Use only the official Moonshot API surface required for the current task.

EndpointData SentPurpose
https://api.moonshot.ai/v1/modelsAuth header onlyDiscover live Kimi models
https://api.moonshot.ai/v1/chat/completionsPrompt messages and optionsKimi chat, reasoning, coding, and structured-output requests

No other data is sent externally.

Security & Privacy

Data that leaves your machine:

  • Prompt content sent to the Moonshot API when the user asks for Kimi inference
  • Optional sanitized excerpts of code, logs, or documents sent for analysis after approval

Data that stays local:

  • Activation preferences, route defaults, and approval boundaries in ~/kimi/ after user approval
  • Optional sanitized repro payloads and troubleshooting notes saved for recurring workflows

This skill does NOT:

  • Store MOONSHOT_API_KEY in markdown or project files
  • Send data to undeclared endpoints
  • Persist raw secrets or sensitive prompts without explicit user approval
  • Modify its own skill files

Scope

This skill ONLY:

  • designs and debugs Kimi API workflows
  • routes Kimi usage across coding, reasoning, research, and deterministic-output jobs
  • hardens retries, validation, and migration from other OpenAI-compatible providers
  • stores lightweight local notes only after user approval

This skill NEVER:

  • invent live model availability without checking
  • persist secrets in ~/kimi/
  • execute destructive downstream automation from unvalidated output
  • treat cost-sensitive or sensitive-send boundaries as implicit

Trust

Using this skill sends prompt data to Moonshot's Kimi API. Only install if you trust Moonshot with that data, or keep sensitive preprocessing local and sanitized.

Related Skills

Install with clawhub install <slug> if user confirms:

  • api — debug auth, payloads, retries, and OpenAI-compatible request shapes
  • models — compare model families and cost tiers before locking Kimi into production
  • coding — tighten coding-agent behavior after the Kimi route itself is stable
  • backend — connect Kimi workflows to services, jobs, and API boundaries
  • fastapi — expose Kimi-backed endpoints with request validation and safer deployment defaults

Feedback

  • If useful: clawhub star kimi
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.7%
按下载量换算3,255

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills