feishu-card

Send rich interactive cards to Feishu (Lark) users or groups. Supports Markdown (code blocks, tables), titles, color headers, and buttons.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "feishu-card" with this command: npx skills add ypyt1/all-skills/ypyt1-all-skills-feishu-card

Feishu Card Skill

Send rich interactive cards via Feishu Open API.

⚠️ CRITICAL FORMATTING RULES (READ BEFORE USING)

  1. Escape Newlines: If using --text via CLI, you MUST escape newlines as \\n.
    • ❌ Wrong: --text "Line 1\nLine 2" (Shell eats the backslash)
    • ✅ Right: --text "Line 1\\nLine 2"
  2. Prefer File Input: For any content longer than one line, ALWAYS use --text-file.
    • ✅ Best: echo "Line 1\nLine 2" > msg.md && node send.js ... --text-file msg.md
    • This avoids ALL shell escaping issues.
  3. Markdown Support: Supports Bold, Italic, Links.
    • ⚠️ Code Blocks: Support is limited. Use single backticks `code` for safety.

Usage

# 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

Options

  • -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.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Feishu Card JSON v2

发送飞书互动卡片(Card JSON 2.0)。当需要让飞书用户填写表单、做选择、确认操作、或查看 结构化数据时,发送交互卡片代替纯文字问答。需要 feishu-cards 插件工具: feishu_send_card / feishu_send_form / feishu_update_card。

Registry SourceRecently Updated
510Profile unavailable
Coding

Tencent Cloud Article Extractor

提取腾讯云开发者社区文章内容并转换为 Markdown 格式。支持自动提取标题、作者、发布时间、正文内容,并生成格式规范的 Markdown 文档。支持图片上传到飞书图床。触发词:腾讯云文章、抓取文章、解析文章、cloud.tencent.com/developer/article

Registry SourceRecently Updated
120Profile unavailable
Coding

Feishu Skills Kit 飞书技能全集

Complete Feishu (Lark) Skills collection for Claude Code / OpenClaw. Includes 10 skills covering: document management, messaging, spreadsheets, Bitable, inte...

Registry SourceRecently Updated
2830Profile unavailable
Coding

Feishu Agent

Feishu (Lark) CLI agent - Provides calendar, todo, and contact management capabilities for AI assistants

Registry SourceRecently Updated
2070Profile unavailable