소스 정보
- 저장소
- sujian666666com-glitch/kk-skill
- 최근 소스 활동
- 2026년 3월 23일 10:04
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/sujian666666com-glitch/kk-skill --skill feishu-wiki명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Discover and filter 15,330 The Graph subgraphs by domain, network, protocol type, or natural language goal. Each result includes an x402 query URL — $0.01 USDC on Base per call, no API key required.
Audit and reduce AI agent runtime spend in dollars. Use for AI costs, agent spend, token waste, runtime attribution, detector coverage, and FinOps. Works with OpenClaw, Hermes, QM, Claude Code, Cursor, and generic event ingest.
Use this skill whenever the user is troubleshooting a VMware/vSphere problem — a reported error, an exception, a log dump, a slow or failed VM, a host that went sideways — and needs help locating the root cause. It is the diagnostic brain of the VMware family: it drives a systematic investigation, pulls the right signals from the other skills, correlates events into one timeline, ranks root-cause hypotheses, and tells you what to check next even when you don't know where to start. Always use this skill for "diagnose this VMware issue", "why is my VM slow", "troubleshoot this vSphere error", "what does this log mean", "help me figure out what broke" when the context is explicitly VMware/vSphere/ESXi/NSX. It is READ-ONLY: it never changes anything. Do NOT use it to execute fixes — single fixes go to vmware-aiops, multi-step gated remediation goes to vmware-pilot. Do NOT use it for routine inventory or health checks with no problem to solve — use vmware-monitor.
| name | feishu-wiki |
| description | 飞书知识库 Skill。创建知识空间、创建 Wiki 页面节点。当需要在飞书知识库中组织和沉淀文档时使用此 Skill。 |
| required_permissions | ["wiki:wiki","wiki:node:create"] |
你是飞书知识库管理专家,负责通过 Wiki v2 API 实现知识空间和页面节点的创建与管理。
| 项目 | 值 |
|---|---|
| Base URL | https://open.feishu.cn/open-apis/wiki/v2 |
| 认证方式 | Authorization: Bearer {tenant_access_token} |
| Content-Type | application/json |
POST /open-apis/wiki/v2/spaces
{ "name": "知识库名称" }
实测心法 (重要):
GET /open-apis/wiki/v2/spaces
POST /open-apis/wiki/v2/spaces/{space_id}/nodes
{
"obj_type": "docx",
"title": "页面标题",
"parent_node_token": "wikcnXXX"
}
实测心法:
obj_type 可选 docx(文档)、sheet(表格)、bitable(多维表格)等feishu-doc-writer Skill 向文档写入内容parent_node_token 为空则创建在根目录GET /open-apis/wiki/v2/spaces/{space_id}/nodes/{node_token}
POST /open-apis/wiki/v2/spaces/{space_id}/nodes/{node_token}/move
feishu-doc-writer| 功能维度 | 具体能力 | 说明 |
|---|---|---|
| 空间管理 | 空间感知与列表 | 支持一键检索当前应用可见的所有知识空间,实现跨部门的资产发现。 |
| 结构化建档 | 目录树自动化 | 支持通过 API 在指定空间内构建多级父子目录结构,实现知识资产的有序组织。 |
| 资产归档 | 外部文档挂载 | 支持将已存在的云文档 (Docx)、表格 (Sheet) 等外部资产一键“入库”挂载到 Wiki 节点。 |
| 动态治理 | 节点迁移与重命名 | 支持对已有的 Wiki 页面进行目录迁移、重命名及删除操作,确保持久化的知识治理能力。 |
企业级 SOP 自动化沉淀中心:
项目全生命周期建档:
智能资产整理与迁移:
空间授权的“群组法”穿透 (Critical):
Node Token 与 Obj Token 的本质区别:
node_token 代表 Wiki 目录上的一个“位置节点”;而 obj_token 才是背后真实的文档文件。get_node 接口获取 obj_token,否则无法调用文档写入接口。节点创建的“node_type”强制性:
node_type 字段通常是必传项。在自动化挂载场景下,一般固定设置为 origin 即可。跨空间移动的参数补全:
move_node(移动节点)时,飞书 API 要求同时提供 target_parent_token(目标目录)和 target_space_id(目标空间),即便是在同一个空间内移动,这两个参数也建议显式补全,否则极易触发 400 校验错误。注:以上内容已进行脱敏处理,所有私有项目信息已替换为通用互联网公司业务描述。已保存至:opensource/feishu-skills/feishu-wiki/SUMMARY.md