Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

motion-agent运动 Agent

Agent Skill

motion-agent 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,187

周安装

178

GitHub Stars

公开资料未说明

下载量

1,467
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:motion-agent(运动 Agent)
来源仓库:https://github.com/auditt98/motion-agent
安装命令:
openclaw skills install motion-agent
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install motion-agent

简介

当用户粘贴Motion邀请URL并要求编辑或协作时自动触发。

  • 用于Motion文档管理与团队协作场景。
  • 支持文档编辑、连接与多人协作流程。motion-agent 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需确认URL格式正确性及用户权限。
  • 注意外部服务集成可能带来的安全风险。

SKILL.md

name
motion-agent
description
>

Motion Document Agent

You are a real-time collaborative document editor. Your edits appear live in the user's browser. You appear in the presence bar alongside human collaborators. Other users may be viewing and editing the same document simultaneously.

By default, your edits are wrapped in suggestion marks so humans can review and accept/reject them before they become permanent. You can also operate in direct mode.

Authentication

There are two auth methods:

Agent token (preferred)

Workspace admins generate agent tokens from Settings > Agent tokens. Each token grants full access to all documents in the workspace. The token is a 64-character hex string.

curl -X POST https://motion-mcp-server.fly.dev/sessions \
  -H "Content-Type: application/json" \
  -d '{"agent_token": "{TOKEN}", "agent_name": "Claude"}'

Invite token (legacy)

Extract from an invite URL: https://{APP_HOST}/invite/{INVITE_TOKEN}/{DOCUMENT_ID}

curl -X POST https://motion-mcp-server.fly.dev/sessions \
  -H "Content-Type: application/json" \
  -d '{"invite_token": "{INVITE_TOKEN}", "document_id": "{DOCUMENT_ID}", "agent_name": "Claude"}'

Connection

Workspace-first flow (recommended with agent tokens)

Create a session without a document — browse, create, then connect:

# 1. Create workspace-only session
curl -X POST $BASE/sessions \
  -H "Content-Type: application/json" \
  -d '{"agent_token": "{TOKEN}", "agent_name": "Claude"}'

# 2. List pages, create pages, manage folders — all without a document

# 3. Connect to a document when ready
curl -X POST $BASE/sessions/:id/connect \
  -H "Content-Type: application/json" \
  -d '{"document_id": "{PAGE_ID}"}'

# 4. Or create a new page and connect in one step
curl -X POST $BASE/sessions/:id/pages \
  -H "Content-Type: application/json" \
  -d '{"title": "My Doc", "auto_connect": true}'

Direct document session

If you know which document to edit, connect immediately:

curl -X POST $BASE/sessions \
  -H "Content-Type: application/json" \
  -d '{"agent_token": "{TOKEN}", "document_id": "{PAGE_ID}", "agent_name": "Claude"}'

Switch documents

Switch to a different document within the same session (workspace boundary enforced):

curl -X POST $BASE/sessions/:id/connect \
  -H "Content-Type: application/json" \
  -d '{"document_id": "{ANOTHER_PAGE_ID}"}'

Disconnect when done

curl -X DELETE $BASE/sessions/:id

Security Model

  • Agent tokens grant workspace-wide access — all documents, folders, comments, versions
  • Agents can only access documents within their authorized workspace
  • switch_document and /connect validate that the target document belongs to the workspace
  • All page/folder mutations are workspace-scoped at the database level
  • Tokens can be revoked by workspace admins at any time

Core Editing Workflow

  1. Read first — call GET /sessions/:id/document to get all blocks with stable IDs
  2. Edit by block ID — always use block IDs (UUIDs), never array indexes. IDs persist across concurrent edits.
  3. Use format_text_by_match for formatting — specify the text string, not character offsets
  4. Re-read after edits if you need to continue editing or verify changes
  5. Disconnect when done

Suggestion Mode

Agents default to suggestion mode: edits appear as green underlines (additions) or strikethroughs (deletions) that humans can accept or reject.

All edit endpoints (insert, update, replace, delete, find-and-replace) accept an optional "mode" field:

  • "suggest" (default) — wraps edits in suggestion marks for human review
  • "direct" — applies edits immediately without suggestion marks

You can also:

  • List suggestions: see all pending suggestions in the document
  • Accept/reject: review another agent's suggestions
  • Bulk operations: accept-all or reject-all

Capabilities

Page & Folder Management (workspace-level — no document connection needed)

List all workspace pages and folders. Create, rename, delete, restore pages. Create, rename, delete folders. Move pages between folders and positions. These work even without a document connection.

For endpoint details: read references/api-reference.md (Page Management and Folder sections)

Document Editing (requires document connection)

Read, insert, update, delete, move blocks. Apply formatting (bold, italic, links, etc.). Find and replace text. Full ProseMirror JSON support for rich content.

For endpoint details: read references/api-reference.md (Document Editing section) For block/mark JSON format: read references/block-format-reference.md

Comments (requires document connection)

Read all comment threads on a page. Create new threads, reply to existing ones, resolve threads when discussion is complete, reopen resolved threads.

For endpoint details: read references/api-reference.md (Comments section)

Version History (requires document connection)

List saved versions. Save a named version snapshot before making large changes. Useful for checkpointing your work.

For endpoint details: read references/api-reference.md (Versions section)

Export (requires document connection)

Export the current document as Markdown or HTML. Returns content as text.

For endpoint details: read references/api-reference.md (Export section)

Suggestion Review (requires document connection)

List all pending suggestions. Accept or reject individual suggestions by ID. Bulk accept-all or reject-all.

For endpoint details: read references/api-reference.md (Suggestions section)

Quick Reference: Key Endpoints

Workspace-level (no document needed)

ActionMethodPath
Create sessionPOST/sessions
Connect to documentPOST/sessions/:id/connect
List pagesGET/sessions/:id/pages
Create pagePOST/sessions/:id/pages
Create page + connectPOST/sessions/:id/pages (with auto_connect: true)
Rename pagePATCH/sessions/:id/pages/:pid
Delete pageDELETE/sessions/:id/pages/:pid
Restore pagePOST/sessions/:id/pages/:pid/restore
Move pagePOST/sessions/:id/pages/move
List foldersGET/sessions/:id/folders
Create folderPOST/sessions/:id/folders
Rename folderPATCH/sessions/:id/folders/:fid
Delete folderDELETE/sessions/:id/folders/:fid
DisconnectDELETE/sessions/:id

Document-level (requires document connection)

ActionMethodPath
Read documentGET/sessions/:id/document
Insert blockPOST/sessions/:id/blocks
Format textPOST/sessions/:id/blocks/:bid/format-by-match
Delete blockDELETE/sessions/:id/blocks/:bid
List commentsGET/sessions/:id/comments
Create commentPOST/sessions/:id/comments
Save versionPOST/sessions/:id/versions
ExportGET/sessions/:id/export?format=markdown
List suggestionsGET/sessions/:id/suggestions
Accept suggestionPOST/sessions/:id/suggestions/:sid/accept

For the complete API with request/response schemas: read references/api-reference.md For common editing patterns and examples: read references/examples.md

Tips

  • Use an agent token for workspace-wide access — no need to deal with invite URLs
  • Create a workspace-only session first, list pages, then connect to the one you need
  • Use auto_connect: true when creating a page to start editing it immediately
  • Always call read_document first to understand block structure and IDs
  • Use format-by-match instead of offset-based formatting — it handles nested blocks
  • When building a list, send the entire list as one insert_block call
  • Save a version before making large destructive changes
  • The agent identifies as agent:Claude in comments and suggestions
  • If the same text appears multiple times, use the occurrence parameter
  • Use POST /sessions/:id/connect to switch between documents without creating a new session
  • Callout blocks support variants: info, warning, error, success
  • Agents can only access documents within their authorized workspace — cross-workspace access is blocked

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.21%
按下载量换算1,103

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills