C

conveyor-automation

作者 ComposioHQ

conveyor-automation 是一個 Claude skill,用於透過 Composio Rube MCP 自動化 Conveyor 任務。它會引導代理確認 Conveyor 連線、使用 RUBE_SEARCH_TOOLS 搜尋即時 tool schemas,並在執行前規劃安全的工作流程動作。

Stars67.5k
收藏0
評論0
加入時間2026年7月11日
分類工作流自動化
安裝指令
npx skills add ComposioHQ/awesome-claude-skills --skill conveyor-automation
編輯評分

評分:64/100。這是一個可接受但範圍有限的收錄候選項目:目錄使用者能理解何時適合使用,以及代理應如何透過 Rube MCP 安全起步;但 repository 證據顯示,它更偏向探索與連線模式,而不是完整豐富的 Conveyor 自動化操作手冊。對已在使用 Rube/Composio 的使用者有實用價值,也清楚提醒執行階段相依性與具體工作流程細節不足的限制。

64/100
亮點
  • 有效的 skill metadata 清楚標示觸發範圍:透過 Rube MCP 使用 Composio 的 Conveyor toolkit 來自動化 Conveyor 作業。
  • 先決條件與設定步驟說明明確,包括需要 Rube MCP、有效的 Conveyor connection,以及使用 RUBE_MANAGE_CONNECTIONS。
  • 此 skill 為代理提供重要的操作限制:執行工作流程前,務必先呼叫 RUBE_SEARCH_TOOLS 取得最新 tool schemas。
注意事項
  • 除了 SKILL.md 之外,沒有包含支援檔案、腳本、範例或 repository 內部參照,因此導入時高度仰賴 Rube MCP 在執行階段進行工具探索。
  • 目前可見的依據較像是通用的 Conveyor/Rube 工作流程模式,而不是具體的端到端 Conveyor 任務範本;使用者在處理特定操作時可能仍需要自行摸索。
總覽

conveyor-automation skill 概覽

conveyor-automation 的用途

conveyor-automation 是一個 Claude skill,可透過 Composio 的 Rube MCP server 執行 Conveyor workflow 任務。它的主要價值不在於提供固定腳本,而是給 agent 一套操作模式:連線到 Rube MCP、確認目前已有啟用中的 Conveyor toolkit connection、搜尋即時 tool catalog,接著使用 Rube 回傳的最新 schemas 來執行 Conveyor actions。

這點很重要,因為 Conveyor tool names 和 input fields 可能會變動。這個 skill 明確要求 agent 在動作前先呼叫 RUBE_SEARCH_TOOLS,可降低 prompts 脆弱、假設過時的風險。

最適合的使用者與情境

conveyor-automation skill 最適合已經在使用 Conveyor,並希望讓 Claude 或其他支援 skill 的 agent 透過 Composio 操作 Conveyor 的團隊。它適用於 workflow automation 任務,例如檢查可用的 Conveyor operations、準備執行計畫、執行已授權的 actions,以及在執行前排查連線狀態。

當你需要 agent 安全且反覆地與 Conveyor 互動時,這個 skill 特別有用;它比單次提出「use Conveyor to do X」這類泛用 prompt 更可靠。

這個 skill 的差異化重點

它的差異化在於「先做 tool discovery」的 workflow。這個 skill 不會硬編碼 Conveyor actions,而是要求 agent 從 Rube MCP 取得即時 tool slugs、schemas、recommended plans 和 pitfalls。這讓它更適合 Conveyor API surface 可能持續演進,或 tool availability 取決於 authenticated connection 的環境。

取捨是,這是一個輕量整合型 skill。除了 SKILL.md 之外,它沒有額外 scripts、examples、reference files,或特定領域的 Conveyor playbooks。

如何使用 conveyor-automation skill

conveyor-automation 安裝與設定脈絡

使用你的 skill manager 從 GitHub skill repository 安裝此 skill,例如:

npx skills add ComposioHQ/awesome-claude-skills --skill conveyor-automation

接著在你的 client 中設定 Rube MCP,加入 MCP server endpoint:

https://rube.app/mcp

此 skill 需要 Rube MCP,並預期 RUBE_SEARCH_TOOLS 可用。在要求任何 Conveyor action 之前,請使用 RUBE_MANAGE_CONNECTIONS 搭配 toolkit conveyor,並確認 connection 狀態為 ACTIVE。如果 connection 尚未啟用,請依照 Rube 回傳的 authentication link 完成驗證,然後重新檢查狀態。

可靠使用時需要提供的輸入

若要讓 conveyor-automation 發揮穩定效果,請提供 agent 明確的 Conveyor 目標、商業限制,以及預期輸出格式。避免使用像「automate Conveyor」這種模糊請求。較好的 prompt 例如:

Use the conveyor-automation skill to find the current Rube MCP tools for Conveyor, verify my Conveyor connection, and create an execution plan for updating the target workflow. Do not run changes until you show the tool slug, required fields, risks, and confirmation question.

這會改善輸出品質,因為此 skill 仰賴即時 schema discovery。agent 需要知道具體的 Conveyor 任務,RUBE_SEARCH_TOOLS 才能針對正確 use case 搜尋,而不是回傳過於寬泛或不相關的 tool set。

第一次執行建議流程

先閱讀 composio-skills/conveyor-automation/SKILL.md;這個 skill directory 中沒有輔助的 README.mdrules/references/ 或 scripts,因此主檔案就是主要依據。

安全的第一次 workflow 可以是:

  1. 確認 RUBE_SEARCH_TOOLS 有回應。
  2. 針對 toolkit conveyor 呼叫 RUBE_MANAGE_CONNECTIONS
  3. 如果尚未 active,完成 auth flow。
  4. 使用你的精確 Conveyor use case 搜尋 tools。
  5. 檢視回傳的 schemas 與 execution plan。
  6. 在呼叫 write actions 前,要求 agent 先提供 dry-run summary。
  7. 只有在確認 target、fields 與預期 side effects 後才執行。

能有效喚起此 skill 的 prompt 模式

使用能區分 discovery、planning 和 execution 的 prompt:

Use conveyor-automation for Workflow Automation. First call RUBE_SEARCH_TOOLS for this exact task: [describe task]. Then check the Conveyor connection. Summarize the available tool slugs, required parameters, and possible pitfalls. If a write action is needed, stop and ask me for approval before execution.

這種模式能讓 agent 對齊此 skill 的核心指令:先搜尋 tools,再依據目前 schemas 採取行動。

conveyor-automation skill 常見問題

conveyor-automation 只適合 Composio 使用者嗎?

實務上是。這個 skill 是圍繞 Composio 的 Rube MCP,以及透過它暴露的 Conveyor toolkit 所建立。如果你的 agent environment 無法連到 https://rube.app/mcp、無法呼叫 RUBE_SEARCH_TOOLS,或無法透過 RUBE_MANAGE_CONNECTIONS 驗證 Conveyor connection,這個 skill 就無法提供預期價值。

它比一般 Conveyor prompt 好在哪裡?

一般 prompt 可能會幻想不存在的 tool names、假設過時的 parameters,或跳過 authentication checks。conveyor-automation skill 會強制採用更安全的順序:先發現目前可用 tools、確認 connection status、檢查 schema requirements,然後再執行適當 operation。這也是安裝它,而不是只仰賴自然語言指令的主要原因。

這份 conveyor-automation guide 適合初學者嗎?

如果你已經了解 MCP 基礎並且有 Conveyor 存取權,它算是適合初學者。此 skill 本身內容精簡,因此初學者需要準備好檢視 RUBE_SEARCH_TOOLS 的即時輸出。agent 必須根據回傳的 schemas 推理,而不是照著一份很長的內建教學操作。

什麼情況不該使用這個 skill?

不要把它用在一般工廠輸送帶系統、實體機器人、PLC programming,或非 Composio 的 automation。這裡的名稱指的是作為 Composio toolkit target 的 Conveyor,不是工業輸送帶自動化。另外,如果你需要一套完整打包、附有 examples、tests 或 helper scripts 的 workflow,也不適合使用它;這個 skill 是一種連線與執行模式,不是一個完整 application。

如何改進 conveyor-automation skill 的使用效果

讓 conveyor-automation prompts 更具體

最常見的失敗模式,是要求一個過於寬泛、上下文不足的動作。你可以透過加入精確的 Conveyor object 或 workflow、agent 是否可以進行變更、哪些內容必須保留,以及你期待的輸出來改善結果。

較弱:

Use Conveyor to fix my workflow.

較強:

Use conveyor-automation to inspect available Conveyor tools for modifying workflow routing. Verify the connection, list required fields, and propose the safest update plan. Do not execute write actions until I approve.

以即時 schemas 作為決策依據

由於這個 skill 依賴 Rube MCP discovery,不要憑記憶或舊文件假設 field names。在 RUBE_SEARCH_TOOLS 之後,請讓 agent 重新說明所選 tool slug、required inputs、optional inputs,以及 Rube 回傳的任何已知 pitfalls。這能讓下一步動作可被稽核,也有助於在執行前抓出不一致之處。

在 write operations 前加入 guardrails

對 production workflow automation 來說,請要求一個 pre-execution checkpoint。checkpoint 應包含 target resource、intended mutation、rollback 或 recovery idea、missing inputs,以及 yes/no confirmation request。這點尤其重要,因為一旦 connection active,此 skill 就能把對話橋接到真實的 Conveyor actions。

在第一次輸出後持續迭代

如果第一版計畫太寬泛,請縮小 use case,並用更好的 query 重新執行 tool discovery。如果 agent 選錯 operation,請把相關 schema result 貼回對話,要求它比較替代方案。當你把 discovery output 當成工作脈絡,而不是隱藏的 implementation detail 時,conveyor-automation skill 的效果會更好。

評分與評論

尚無評分
分享你的評論
登入後即可為這項技能評分並留言。
G
0/10000
最新評論
儲存中...