用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zgiai/zgi --skill internal-knowledge命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Navigate the visible console to a safe internal page when the user asks to open, switch to, or go to another module.
Generate downloadable files from provided content, including basic exports, SVG files, styled DOCX documents, HTML-rendered PDFs, and static editable PPTX decks.
Call workflows explicitly bound to the current Agent as structured process tools.
基于 SOC 职业分类
正在显示 SKILL.md
| name | internal-knowledge |
| description | Discover and retrieve from knowledge bases the current user can access. |
| when_to_use | Use this skill when an assistant answer needs factual context from workspace knowledge bases. |
| provider_type | builtin |
| provider_id | knowledge |
| runtime_type | tool |
| tools | ["list_accessible_knowledge_bases","retrieve_knowledge"] |
| max_calls_per_turn | 20 |
| timeout_seconds | 30 |
| tool_governance | {"list_accessible_knowledge_bases":{"tool_id":"knowledge.list_accessible","skill_id":"internal-knowledge","domain":"knowledge","effect":"read","asset_type":"knowledge_base","risk_level":"low","requires_asset_resolution":false,"reversible":false,"bulk_sensitive":false,"external_side_effect":false,"permission_scopes":["knowledge:read"],"default_approval_policy":"auto_by_permission_tier","allowed_permission_tiers":["basic","advanced","full"],"audit_required":true,"idempotency_required":false},"retrieve_knowledge":{"tool_id":"knowledge.retrieve","skill_id":"internal-knowledge","domain":"knowledge","effect":"read","asset_type":"knowledge_base","risk_level":"low","requires_asset_resolution":true,"reversible":false,"bulk_sensitive":false,"external_side_effect":false,"permission_scopes":["knowledge:read"],"default_approval_policy":"auto_by_permission_tier","allowed_permission_tiers":["basic","advanced","full"],"audit_required":true,"idempotency_required":false}} |
| display | {"icon":"library","category":"knowledge_retrieval","scenarios":["knowledge_research","office_collaboration"],"label":{"en_US":"Internal Knowledge","zh_Hans":"内部知识库"},"description":{"en_US":"Designed for answering from company policies, product material, or workspace documents; finds accessible knowledge bases and retrieves relevant facts with source context.","zh_Hans":"适用于根据公司制度、产品资料或工作区文档回答问题,可查找有权限访问的知识库并检索相关事实和来源上下文。"},"when_to_use":{"en_US":"Use when an assistant answer needs facts or source context from accessible knowledge bases.","zh_Hans":"当助手回复需要引用可访问知识库中的事实或来源上下文时使用。"},"tags":{"en_US":["Knowledge","Retrieval"],"zh_Hans":["知识库","检索"]}} |
Use this skill to answer internal assistant questions with context from knowledge bases the current user can access.
list_accessible_knowledge_bases with a short query derived from the user's topic, business domain, or explicitly named knowledge base.status, fallback_used, and returned knowledge base names/descriptions before selecting datasets:
status is success, select only the most relevant returned dataset_id values.status is fallback, treat the candidates as weak matches. Select a dataset only when its name or description is clearly related; otherwise refine the list query once or ask the user which knowledge base/domain to use.status is no_results, answer from conversation context if possible and say no relevant accessible knowledge base was found.retrieve_knowledge with the selected dataset_ids and a concise query. Do not use dataset IDs that were not returned by the list tool.status, source_summary, context_blocks, and scores before answering:
source_summary or retriever_resources when useful.list_accessible_knowledge_bases accepts:
query: optional search text for narrowing candidate knowledge bases.limit: optional maximum number of candidates. Defaults to 20 and is capped at 100.retrieve_knowledge accepts:
query: the user question or refined search query.dataset_ids: required selected knowledge base IDs returned by the list tool.top_k: optional maximum retrieved chunks. Defaults to 5 and is capped at 20.retrieval_mode: optional hybrid, vector, or graph. Omit it for the default hybrid mode; use graph only for relationship or entity questions.