Openclaw-bestroll-skills feishu-docx-powerwrite
High-quality Feishu/Lark Docx writing via OpenClaw. Use when you want to turn Markdown into well-formatted Feishu Docx (headings, lists, nesting, code blocks) using feishu_docx_write_markdown; includes safe workflows, templates, and troubleshooting. Trigger on Feishu doc/docx links, “write to Feishu doc”, “generate a Feishu doc”, “append/replace docx”, “convert markdown to feishu doc”, or when users want consistently good doc formatting.
git clone https://github.com/evan966890/openclaw-bestroll-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/evan966890/openclaw-bestroll-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/feishu-docx-powerwrite" ~/.claude/skills/evan966890-openclaw-bestroll-skills-feishu-docx-powerwrite && rm -rf "$T"
T=$(mktemp -d) && git clone --depth=1 https://github.com/evan966890/openclaw-bestroll-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/feishu-docx-powerwrite" ~/.openclaw/skills/evan966890-openclaw-bestroll-skills-feishu-docx-powerwrite && rm -rf "$T"
skills/feishu-docx-powerwrite/SKILL.mdFeishu Docx PowerWrite
This skill focuses on reliably writing great-looking Feishu Docx using OpenClaw’s Feishu OpenAPI tools.
Key idea: prefer
(Markdown → Docx blocks) for structure-preserving output.feishu_docx_write_markdown
Quick workflow
- Get
(Docx token)document_id
- From a Docx URL:
https://.../docx/<document_id>
- Decide write mode
- Append: add new content below existing content (most common)
- Replace: overwrite the entire document (use carefully)
- Write markdown
- Use headings + lists + short paragraphs
- Avoid huge single paragraphs (harder to read)
Recommended defaults
Append mode (safe)
Use when adding sections, meeting notes, daily logs.
mode: append- Keep each append chunk <= ~300-600 lines if possible
Replace mode (destructive)
Use when generating the full doc from scratch.
mode: replace- MUST set
confirm: true
Markdown patterns that render well
Title + summary
# <Title> **Summary** - Point 1 - Point 2 ---
Sections
## Section Short paragraph. - Bullet - Bullet ### Subsection 1) Step 2) Step
Code
Use fenced blocks.
```bash openclaw skills check
## Templates & references - Templates: `references/templates.md` - Troubleshooting: `references/troubleshooting.md` ## Safety / privacy - Never hardcode tokens, chat_id, open_id, or document links inside this skill. - Always use the user’s own Feishu app credentials and scopes.