ワンクリックで
document-export
// Export text content to various formats (PDF, Excel, Markdown, Mermaid mindmap)
// Export text content to various formats (PDF, Excel, Markdown, Mermaid mindmap)
Run user-created frontend or backend services in the background and optionally expose them through a Cloudflare Quick Tunnel.
Use when working with spoon-bot's built-in EVM wallet, checking balances, transferring EVM assets, signing messages or transactions, rotating/exporting keys, or supporting skills that expect the legacy ~/.agent-wallet layout.
Search, install, and remove Agent Skills from skills.sh or confirmed skill GitHub sources
Use when creating, listing, steering, cancelling, or resuming spoon-bot persistent subagents through explicit tools or API calls.
A skill for performing automated code reviews with security and best practices analysis
A skill for automating common Git operations with safety checks
| name | document_export |
| description | Export text content to various formats (PDF, Excel, Markdown, Mermaid mindmap) |
| version | 1.0.0 |
| author | XSpoon Team |
| tags | ["document","export","pdf","excel","markdown","mermaid"] |
| triggers | [{"type":"keyword","keywords":["export","convert","generate pdf","generate excel","generate markdown","mindmap","mermaid"],"priority":80},{"type":"pattern","patterns":["(?i)(export|convert|generate) .*(pdf|excel|markdown|mermaid|mindmap)","(?i)(create|make) .*(document|report|spreadsheet)"],"priority":75}] |
| scripts | {"enabled":true,"definitions":[{"name":"document_export","description":"Export content to PDF, Excel, Markdown, or Mermaid mindmap format","type":"python","file":"scripts/export.py","timeout":60,"input_schema":{"type":"object","properties":{"content":{"type":"string","description":"Text content to export"},"format":{"type":"string","description":"Export format: markdown, pdf, excel, or mermaid"},"title":{"type":"string","description":"Document title"},"output_path":{"type":"string","description":"Output file path"}},"required":["content","format"]}}]} |
Export text content to various document formats.
Provide content and a target format. Optionally specify a title and output path.
{
"content": "Your text content here",
"format": "markdown|pdf|excel|mermaid",
"title": "Optional document title",
"output_path": "Optional output file path"
}
{
"success": true,
"file_path": "/path/to/exported/file",
"message": "Exported markdown: /path/to/file.md"
}