skills$openclaw/feishu-docx-powerwrite
xiongjjlj6.5k

by xiongjjlj

feishu-docx-powerwrite – OpenClaw Skill

feishu-docx-powerwrite is an OpenClaw Skills integration for writing workflows. 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.

6.5k stars8.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

namefeishu-docx-powerwrite
descriptionHigh-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. OpenClaw Skills integration.
ownerxiongjjlj
repositoryxiongjjlj/feishu-docx-powerwrite
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @xiongjjlj/feishu-docx-powerwrite
last updatedFeb 7, 2026

Maintainer

xiongjjlj

xiongjjlj

Maintains feishu-docx-powerwrite in the OpenClaw Skills directory.

View GitHub profile
File Explorer
7 files
.
references
templates.md
572 B
troubleshooting.md
714 B
scripts
setup.sh
638 B
_meta.json
299 B
SKILL.md
2.0 KB
SKILL.md

name: feishu-docx-powerwrite description: 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.

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.

  1. Get document_id (Docx token)
  • From a Docx URL: https://.../docx/<document_id>
  1. Decide write mode
  • Append: add new content below existing content (most common)
  • Replace: overwrite the entire document (use carefully)
  1. 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.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install feishu-docx-powerwrite?

Run openclaw add @xiongjjlj/feishu-docx-powerwrite in your terminal. This installs feishu-docx-powerwrite into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/xiongjjlj/feishu-docx-powerwrite. Review commits and README documentation before installing.