Agent 生成器
- 作者仓库星标 435
- 作者仓库 nvim
Filetypes Skill
Thin wrapper that routes file format operations to the filetypes-router-agent, which then delegates to specialized sub-agents based on file type.
Context Pointers
Reference (do not load eagerly):
- Path:
.opencode/context/core/formats/subagent-return.md - Purpose: Return validation
- Load at: Subagent execution only
Note: This skill is a thin wrapper. Context is loaded by the delegated agents, not this skill.
Trigger Conditions
This skill activates when:
Direct Invocation
- User explicitly runs
/convertcommand - User requests file format conversion in conversation
Implicit Invocation (during task implementation)
When an implementing agent encounters any of these patterns:
Plan step language patterns:
- "Extract text from [file].pdf"
- "Extract content from [file]"
- "Convert [file] to markdown"
- "Convert [file] to PDF"
- "Generate PDF from [documentation/file]"
- "Read content from [file].docx"
- "Create PDF version of [file]"
- "Parse [file].pdf for content"
- "Import [file] content"
File extension detection:
- Source file has extension:
.pdf,.docx,.xlsx,.pptx,.html - Target mentions: "markdown", ".md", "PDF", ".pdf"
Task description keywords:
- "document conversion"
- "format transformation"
- "extract from PDF"
- "generate PDF"
When NOT to trigger
Do not invoke for:
- Reading source code files (.py, .js, .lean, etc.)
- Viewing images without extraction
- Operations that don't involve format conversion
- Files already in the target format
- Spreadsheet-specific operations (use skill-spreadsheet)
- Presentation-specific operations (use skill-presentation)
Execution
1. Input Validation
Validate required inputs:
source_path- Must be provided and file must existoutput_path- Optional, defaults to source dir with appropriate extension
# Validate source exists
if [ ! -f "$source_path" ]; then
return error "Source file not found: $source_path"
fi
# Determine output path if not provided
if [ -z "$output_path" ]; then
source_dir=$(dirname "$source_path")
source_base=$(basename "$source_path" | sed 's/\.[^.]*$//')
source_ext="${source_path##*.}"
# Infer target extension
case "$source_ext" in
pdf|docx|xlsx|pptx|html) output_path="${source_dir}/${source_base}.md" ;;
md) output_path="${source_dir}/${source_base}.pdf" ;;
*) return error "Cannot infer output format for .$source_ext" ;;
esac
fi
2. Context Preparation
Prepare delegation context:
{
"source_path": "/absolute/path/to/source.pdf",
"output_path": "/absolute/path/to/output.md",
"metadata": {
"session_id": "sess_{timestamp}_{random}",
"delegation_depth": 1,
"delegation_path": ["orchestrator", "convert", "skill-filetypes"]
}
}
3. Invoke Router Agent
CRITICAL: You MUST use the Task tool to spawn the router agent.
Required Tool Invocation:
Tool: Task (NOT Skill)
Parameters:
- subagent_type: "filetypes-router-agent"
- prompt: [Include source_path, output_path, metadata]
- description: "Convert {source_path} to {output_path}"
DO NOT use Skill(filetypes-router-agent) - this will FAIL.
Agents live in .opencode/agents/ or extension agent directories, not .opencode/skills/.
The Skill tool can only invoke skills from .opencode/skills/.
The router will:
- Detect source and target formats
- Select appropriate sub-agent (document, spreadsheet, presentation)
- Delegate to sub-agent for actual conversion
- Return standardized JSON result
4. Return Validation
Validate return matches subagent-return.md schema:
- Status is one of: converted, extracted, partial, failed
- Summary is non-empty and <100 tokens
- Artifacts array present with output file path
- Metadata contains session_id, agent_type, delegation info
5. Return Propagation
Return validated result to caller without modification.
Return Format
See .opencode/context/core/formats/subagent-return.md for full specification.
Expected successful return:
{
"status": "converted",
"summary": "Successfully converted document.pdf to document.md using markitdown",
"artifacts": [
{
"type": "implementation",
"path": "/absolute/path/to/document.md",
"summary": "Converted markdown document"
}
],
"metadata": {
"session_id": "sess_...",
"agent_type": "document-agent",
"delegation_depth": 2,
"delegation_path": ["orchestrator", "convert", "skill-filetypes", "filetypes-router-agent", "document-agent"],
"tool_used": "markitdown"
},
"next_steps": "Review converted document"
}
Error Handling
Input Validation Errors
Return immediately with failed status if source file not found.
Unsupported Format
Return failed status with clear message about supported formats.
Router/Subagent Errors
Pass through the router/subagent's error return verbatim.
Tool Not Available
Return failed status with installation instructions.
- 流狐分类
- AI 智能
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @benbrastmckie · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Reference (do not load eagerly): Path: .opencode/context/core/formats/subagent-return.md Purpose: Return validation
This skill activates when:
User explicitly runs /convert command User requests file format conversion in conversation
When an implementing agent encounters any of these patterns: Plan step language patterns: "Extract text from [file].pdf"
Do not invoke for: Reading source code files (.py, .js, .lean, etc.) Viewing images without extraction
Execution
# Filetypes Skill
Thin wrapper that routes file format operations to the `filetypes-router-agent`, which then delegates to specialized sub-agents based on file type.
## Context Pointers
Reference (do not load eagerly):
- Path: `.opencode/context/core/formats/subagent-return.md`
- Purpose: Return validation
- Load at: Subagent execution only
Note: This skill is a thin wrapper. Context is loaded by the delegated agents, not this skill.
## Trigger Conditions
This skill activates when:
### Direct Invocation
- User explicitly runs `/convert` command
- User requests file format conversion in conversation
### Implicit Invocation (during task implementation)
When an implementing agent encounters any of these patterns:
**Plan step language patterns**:
- "Extract text from [file].pdf"
- "Extract content from [file]"
- "Convert [file] to markdown"
- "Convert [file] to PDF"
- "Generate PDF from [documentation/file]"
- "Read content from [file].docx"
- "Create PDF version of [file]"
- "Parse [file].pdf for content"
- "Import [file] content"
**File extension detection**:
- Source file has extension: `.pdf`, `.docx`, `.xlsx`, `.pptx`, `.html`
- Target mentions: "markdown", ".md", "PDF", ".pdf"
**Task description keywords**:
- "document conversion"
- "format transformation"
- "extract from PDF"
- "generate PDF"
### When NOT to trigger
Do not invoke for:
- Reading source code files (.py, .js, .lean, etc.)
- Viewing images without extraction
- Operations that don't involve format conversion
- Files already in the target format
- Spreadsheet-specific operations (use skill-spreadsheet)
- Presentation-specific operations (use skill-presentation)
---
## Execution
### 1. Input Validation
Validate required inputs:
- `source_path` - Must be provided and file must exist
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Context Pointers → Trigger Conditions → Direct Invocation → Implicit Invocation (during task implementation) → When NOT to trigger → Execution
要点 -> Plan step language patterns · File extension detection · Task description keywords · CRITICAL · Task · Required Tool Invocation · DO NOT
文件/命令 -> filetypes-router-agent · .opencode/context/core/formats/subagent-return.md · /convert · .pdf · .docx · .xlsx · .pptx · .html
内容 SHA-256 -> 71f26fa3eb6b
原文结构
适用与边界
原文中的明确线索
filetypes-router-agent、.opencode/context/core/formats/subagent-return.md、/convert、.pdf、.docx、.xlsx、.pptx、.html