在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用canvas
星标14
分支6
更新时间2026年3月10日 21:40
Create and manage persistent interactive workspaces
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Create and manage persistent interactive workspaces
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
store and retrieve long-term memories (facts, preferences, context)
Create and manage agents with isolated sessions and routing
Core behavior guidelines for agent interactions
Handle images, audio, and document files for messaging channels
Automate web browsing, scraping, and form interaction
Schedule jobs to run at specific times or intervals
| name | canvas |
| description | Create and manage persistent interactive workspaces |
| trigger | on-demand |
Persistent workspaces for dashboards, progress displays, and interactive content.
| Tool | Action |
|---|---|
canvas_create | Create new canvas |
canvas_update | Update content |
canvas_list | List all canvases |
canvas_stop | Stop canvas |
| Scenario | Canvas |
|---|---|
| Long-running task progress | Progress bar |
| Live dashboard | System monitoring |
| Interactive menu | User selection |
canvas_create(
name="build-progress",
content="<h1>Build Progress</h1><div>Status: Starting...</div>"
)
# Output: Canvas created with ID: canvas-abc123
canvas_update(
id="canvas-abc123",
content="<h1>Build Progress</h1><div>Status: Complete!</div>"
)
canvas_list()
# Output:
# Active canvases (2):
# - canvas-abc123 [build-progress]: running, 5m ago
canvas_stop(id="canvas-abc123")
# Create
canvas_create(name="deploy-status", content="Starting deploy...")
# Update as progress happens
canvas_update(id="canvas-abc", content="Deploying... 50%")
# Final state
canvas_update(id="canvas-abc", content="Deployed successfully!")
# Clean up
canvas_stop(id="canvas-abc")