← 返回
未分类 Key 中文

Feishu Whiteboard

Create and manage Feishu Whiteboards by programmatically creating boards and adding shapes and connectors using authorized API calls.
使用授权 API 调用,编程创建和管理飞书白板,并添加形状与连接线。
autogame-17
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 231
下载
💾 4
安装
1
版本
#latest

概述

Feishu Whiteboard Skill

Allows creating and manipulating Feishu Whiteboards programmatically.

Configuration

Requires FEISHU_APP_ID and FEISHU_APP_SECRET in environment or config.json.

Scopes required: board:whiteboard:node:create

Usage

Create a Board

node skills/feishu-whiteboard/create.js "My Architecture Diagram"

Output: JSON containing whiteboard_id.

Add Nodes (Demo)

node skills/feishu-whiteboard/draw.js <whiteboard_id> demo

Adds a rectangle and a circle connected by a line.

Programmatic Usage

const { createWhiteboard } = require('./create');
const { addNodes, createShape, createConnector } = require('./draw');

const board = await createWhiteboard("System Design");
const nodes = [
  createShape("web", "rect", 0, 0, 200, 100, "Web Server"),
  createShape("db", "cylinder", 0, 300, 100, 100, "Database"),
  createConnector("link1", "web", "db")
];
await addNodes(board.whiteboard_id, nodes);

Troubleshooting

If you encounter 404 page not found, it usually means the Whiteboard API is not enabled for your tenant or the endpoint URL has changed. The current implementation uses /open-apis/board/v1/whiteboards.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-20 06:20

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

productivity

feishu-bitable

autogame-17
使用提供的应用凭证管理飞书多维表格,支持列出表格以及添加记录或任务。
★ 4 📥 7,595
ai-intelligence

Evolver

autogame-17
AI智能体自我进化引擎。分析运行时历史识别改进点,应用协议约束进化。与EvoMap通信...
★ 92 📥 77,098
ai-intelligence

Feishu Evolver Wrapper

autogame-17
飞书集成的包装器,用于能力演进器。管理演进循环的生命周期(启动/停止/确保),发送丰富的飞书卡片报告,并提供...
★ 16 📥 66,660