
Feishu Docx Powerwrite
- 8 installs
- 33 repo stars
- Updated April 26, 2026
- bighardperson/computer-science-skills-collection
Feishu-docx-powerwrite is a skill that turns Markdown into well-formatted Feishu (Lark) Docx documents via OpenClaw's Feishu OpenAPI tools.
About
This skill writes well-formatted Feishu (Lark) Docx documents from Markdown using OpenClaw's Feishu OpenAPI tools. It prefers feishu_docx_write_markdown to preserve structure such as headings, lists, and code blocks. A developer uses it to append or replace content in a Feishu doc identified by its document_id, with the destructive replace mode gated behind a confirm flag.
- Converts Markdown into well-formatted Feishu/Lark Docx
- Append or replace write modes with a confirm gate
- Uses feishu_docx_write_markdown for structure-preserving output
Feishu Docx Powerwrite by the numbers
- 8 all-time installs (skills.sh)
- Ranked #500 of 687 Office & Documents skills by installs in the Skillselion catalog
- Data as of Jul 30, 2026 (Skillselion catalog sync)
feishu-docx-powerwrite capabilities & compatibility
- Capabilities
- docx writing · markdown conversion
- Use cases
- documentation
What feishu-docx-powerwrite says it does
High-quality Feishu/Lark Docx writing via OpenClaw.
prefer **`feishu_docx_write_markdown`** (Markdown → Docx blocks) for structure-preserving output.
Replace mode (destructive)
npx skills add https://github.com/bighardperson/computer-science-skills-collection --skill feishu-docx-powerwriteAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 8 |
|---|---|
| repo stars | ★ 33 |
| Last updated | April 26, 2026 |
| Repository | bighardperson/computer-science-skills-collection ↗ |
What it does
Turn Markdown into well-formatted Feishu Docx using append or replace write modes.
Who is it for?
Writing structured, well-formatted content into a Feishu Docx from Markdown.
When should I use this skill?
You want to write, append, or replace a Feishu doc from Markdown.
What you get
- formatted Feishu Docx content
By the numbers
- 2 write modes (append, replace)
Files
Feishu Docx PowerWrite
This skill focuses on reliably writing great-looking Feishu Docx using OpenClaw’s Feishu OpenAPI tools.
Key idea: prefer `feishu_docx_write_markdown` (Markdown → Docx blocks) for structure-preserving output.
Quick workflow
1) Get document_id (Docx token)
- From a Docx URL:
https://.../docx/<document_id>
2) Decide write mode
- Append: add new content below existing content (most common)
- Replace: overwrite the entire document (use carefully)
3) 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) StepCode
Use fenced blocks.
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.
{
"ownerId": "kn7218f3kv8jtq0pnsd21ezngd80gm42",
"slug": "feishu-docx-powerwrite",
"version": "0.1.0",
"publishedAt": 1770197180818
}{
"slug": "feishu-docx-powerwrite",
"name": "Feishu Docx PowerWrite",
"version": "0.1.0",
"installedAt": 1776152365069,
"source": "skillhub"
}Docx templates (Markdown)
Meeting notes
# <Meeting Title>
**When**: YYYY-MM-DD HH:MM–HH:MM
**Attendees**: A, B, C
## Agenda
1)
2)
## Notes
-
## Decisions
-
## Action items
- [ ] <owner> — <task> — <date>Weekly update
# Weekly Update — <Name> — YYYY-WW
## Highlights
-
## Metrics
-
## Challenges / Risks
-
## Next week
- Spec / proposal
# <Proposal>
## Context
## Problem
## Goals / Non-goals
**Goals**
-
**Non-goals**
-
## Approach
## Alternatives
## Risks
## Rollout
## Open questions
- Troubleshooting (Feishu Docx PowerWrite)
1) Permission / 403 / no access
Typical causes:
- Feishu app scopes missing docx/drive permissions
- The bot/app isn’t added as a collaborator to the target doc
Fix:
- Re-check Feishu app scopes
- Share the doc to the bot/app (or make it accessible via org policy)
2) Content not rendered as expected
Common causes:
- Markdown too dense (giant paragraphs)
- Incorrect list indentation
Fix:
- Keep paragraphs short
- Use consistent 2-space indentation for nested lists
3) Replace mode didn’t overwrite
- Replace requires
confirm: true(destructive)
4) Large docs
- Prefer chunked appends
- Append section-by-section (e.g., 1k–3k chars per chunk)
#!/usr/bin/env bash
set -euo pipefail
echo "[feishu-docx-powerwrite] Setup checklist"
echo "1) Verify OpenClaw sees Feishu skills/tools"
openclaw skills check | sed -n '1,80p' || true
echo
cat <<'EOF'
2) You must configure YOUR OWN Feishu app credentials.
Do NOT copy anyone else's tokens.
Minimum expectation:
- OpenClaw has Feishu channel configured
- Feishu OpenAPI tools are available
- Your app has Docx/Drive scopes enabled
3) Quick manual test (inside OpenClaw chat):
- Ask: "Create a Feishu docx and write a heading + bullets"
- Or provide an existing docx link and ask to append.
EOF
echo
echo "Done."