feishu-card/SKILL.md
Send rich interactive cards to Feishu (Lark) users or groups. Supports Markdown (code blocks, tables), titles, color headers, and buttons.
npx skillsauth add atxinsky/skills feishu-cardInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Send rich interactive cards via Feishu Open API.
--text via CLI, you MUST escape newlines as \\n.
--text "Line 1\nLine 2" (Shell eats the backslash)--text "Line 1\\nLine 2"--text-file.
echo "Line 1\nLine 2" > msg.md && node send.js ... --text-file msg.md# Via argument (Simple)
node skills/feishu-card/send.js --target "ou_..." --text "Hello **World**"
# Via file (Recommended for Reports/Long Text)
cat <<EOF > msg.md
**Status**: Ready
**Details**:
- Item 1
- Item 2
EOF
node skills/feishu-card/send.js --target "ou_..." --title "Report" --text-file msg.md
rm msg.md
-t, --target: User Open ID (ou_...) or Group Chat ID (oc_...).-x, --text: Markdown content.-f, --text-file: Read markdown from file.--title: Card header title.--color: Header color (blue, red, green, etc.).--button-text: Add a bottom button.--button-url: Button URL.development
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like "the xlsx in my downloads") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
documentation
Create detailed implementation plan with bite-sized tasks