C

teltel-automation

作者 ComposioHQ

teltel-automation 通过 Composio Rube MCP 帮助代理自动化 Teltel 工作流:先检查 Teltel 连接,优先搜索当前工具 schema,再使用必需输入执行操作。

Stars67.5k
收藏0
评论0
收录时间2026年7月12日
分类工作流自动化
安装命令
npx skills add ComposioHQ/awesome-claude-skills --skill teltel-automation
编辑评分

该 skill 得分为 64/100,适合收录但能力有限。目录用户可以获得足够信息,了解何时触发它,以及代理应如何通过 Rube MCP 启动 Teltel 自动化;但由于缺少 Teltel 专属工作流细节,也没有配套示例或文件,安装决策的说服力有所减弱。

64/100
亮点
  • 有效的 frontmatter 清晰声明了 skill 名称、Teltel 自动化用途,以及必需的 Rube MCP 依赖。
  • 前置条件和设置步骤说明,在使用前需要 Rube MCP、RUBE_SEARCH_TOOLS,以及通过 RUBE_MANAGE_CONNECTIONS 建立的有效 Teltel 连接。
  • 该 skill 提供了可重复的“先发现再执行”模式,包括在执行工作流前搜索工具和检查 Teltel 连接的示例调用。
注意点
  • 仓库证据显示仅包含一个 SKILL.md,没有脚本、参考资料、示例或配套资源,因此执行效果很大程度上依赖实时的 Rube 工具发现。
  • 指引主要是通用的 Composio/Rube 工具包使用模式,未展示具体的 Teltel 专属工作流或预期任务示例。
概览

teltel-automation skill 概览

teltel-automation 能做什么

teltel-automation 是一个 Claude skill,用于通过 Composio 的 Rube MCP server 执行 Teltel 相关操作。它的核心价值不在于提供一组写死的固定动作,而是教会 agent 先发现当前可用的 Teltel tool schema,确认用户的 Teltel 连接状态,然后再用所需输入调用正确的 Rube tool。

这一点很重要,因为 MCP tool schema 可能会变化。这个 skill 的核心运行规则是:在尝试执行任何 Teltel 操作前,先使用 RUBE_SEARCH_TOOLS

最适合的用户和工作流

teltel-automation skill 适合已经在 Claude 中使用 MCP tools,并希望以可重复方式自动化 Teltel 任务的用户,避免每次都手动查阅 Composio 文档。它适用于运营人员、支持团队、增长团队和工作流搭建者,尤其是那些需要 AI assistant 通过已认证的 tool connection 协助执行 Teltel 相关动作的团队。

当你的任务目标很明确,但不确定具体的 Rube tool 名称或输入 schema 时,它尤其有用。

这个 skill 有什么不同

很多自动化 prompt 会预设 tool 名称和参数。这个 skill 采用的是更安全的“先发现、再执行”模式:

  • 验证 Rube MCP 是否可用。
  • 确认 teltel toolkit connection 处于 active 状态。
  • 搜索当前的 Teltel tools 和 schemas。
  • 只有在明确必填字段后才执行。
  • 清晰汇报结果,并明确暴露 tool error。

这让 teltel-automation 比普通的“自动化 Teltel”prompt 更具韧性。

采用前提

在使用 teltel-automation skill 之前,你需要一个支持 MCP 的客户端,并且能够访问位于 https://rube.app/mcp 的 Rube MCP。你还需要通过 RUBE_MANAGE_CONNECTIONS 为 toolkit teltel 建立一个 active 的 Teltel connection。

上游 skill 只包含一个 SKILL.md 文件,因此没有 helper scripts、examples folder 或额外的 rule files 可供检查。是否安装,主要取决于你是否希望把这套 Rube MCP 工作流模式内置到自己的 assistant 中。

如何使用 teltel-automation skill

teltel-automation 安装上下文

从 Composio skill collection 安装该 skill,然后在你的 AI client 中配置 Rube MCP:

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

添加 MCP server endpoint:

https://rube.app/mcp

安装后,确认 assistant 可以访问 RUBE_SEARCH_TOOLS。如果该 tool 不可用,teltel-automation skill 就无法正常运行,因为“发现 tool”是它必须执行的第一步。

运行工作流前先连接 Teltel

使用 RUBE_MANAGE_CONNECTIONS 搭配 teltel toolkit,并确认 connection status 为 ACTIVE。如果连接不是 active 状态,请按照返回的 authorization link 完成设置,再让 assistant 执行业务任务。

一个实用的起始 prompt 是:

“Use the teltel-automation skill. Check whether Rube MCP is available, confirm my teltel toolkit connection is active, and do not execute any Teltel action until you have searched for the current tool schema.”

这样可以防止 assistant 猜测不受支持的字段,或调用已经过时的 tool 名称。

把粗略目标改写成可执行 prompt

较弱的 prompt:

“Automate my Teltel task.”

更好的 prompt:

“Use teltel-automation for Workflow Automation. I need to perform this Teltel task: [describe the exact operation]. First call RUBE_SEARCH_TOOLS for that use case, then tell me which tool you found, what required fields it needs, and what information you still need from me. After I confirm, execute the tool and summarize the result.”

这种写法效果更好,因为这个 skill 依赖具体 use case 来搜索相关 tools,并构建有效的执行计划。

优先阅读的仓库文件

在这个 repository 中,优先阅读 composio-skills/teltel-automation/SKILL.md。它包含实际的工作流约定:prerequisites、setup、tool discovery、connection checking 和 execution pattern。

该 skill 目录下没有本地 scripts/resources/references/README.md 文件,因此最重要的外部参考是位于 composio.dev/toolkits/teltel 的 Composio Teltel toolkit documentation。该文档只建议作为背景资料使用;运行时,应以 RUBE_SEARCH_TOOLS 返回的当前 schemas 为准。

teltel-automation skill 常见问题

teltel-automation 只能用于 Claude 吗?

这个 skill 是按 Claude-style skill usage 编写的,并依赖 MCP tool access。底层工作流基于 Rube MCP,因此实际要求是:AI client 能加载该 skill,并能调用 RUBE_SEARCH_TOOLSRUBE_MANAGE_CONNECTIONS 等 MCP tools。

teltel-automation 不会做什么?

它不包含自定义 Teltel scripts、本地 API clients 或静态 command-line utilities。它也不会替代 Teltel authentication。如果 teltel toolkit connection 未激活,该 skill 应停止执行,并要求你完成连接流程。

对于无法审查必填字段或无法确认敏感操作的场景,不应使用它进行盲目执行。

为什么不用普通 prompt?

普通 prompt 可能会编造 tool 名称、假设过时 schema,或跳过 connection checks。teltel-automation skill 为 agent 提供了一套明确的操作模式:先发现 tools,验证 Teltel connection,然后基于当前 schema 信息执行。这可以减少可避免的 tool-call 失败,也让 assistant 的行为更容易审计。

这个 skill 适合新手吗?

如果你已经启用了 MCP,它对新手是友好的;但它不是一个一键式 standalone app。新用户应先让 assistant 验证 Rube availability 和 Teltel connection status,然后再请求真实自动化。如果你不熟悉 MCP setup,那么主要障碍会是这一步配置,而不是 skill 内容本身。

如何改进 teltel-automation skill

用更好的输入提升 teltel-automation 结果

最好的输入应包括目标操作、业务上下文、已知的 IDs 或 records、约束条件,以及是否需要在执行前等待确认。

好的 prompt 模板:

“Use teltel-automation. My goal is [specific Teltel outcome]. I have these known fields: [IDs, names, dates, account context]. Search tools first, identify the exact schema, ask for missing required fields, and wait for my approval before executing.”

这能给 agent 足够的信息进行更精确的搜索,减少不必要的来回确认。

需要留意的常见失败模式

最常见的失败是跳过 RUBE_SEARCH_TOOLS,直接凭记忆调用某个 tool。另一个常见问题是在 teltel connection 尚未 active 时就尝试执行。第三类问题是 use case 描述过于模糊,导致返回过宽泛或不相关的 tool options。

如果第一次结果看起来不对,可以要求 assistant 用更具体的 use case 重新发现,并在 search query 中包含已知字段。

在第一次输出后继续迭代

assistant 发现 tool 后,执行前请检查三件事:

  • 该 tool 是否匹配你原本想完成的业务动作?
  • 所有必填 schema fields 是否都已提供?
  • 是否存在副作用,例如创建、更新、发送或删除某些内容?

如果有任何不清楚的地方,可以要求 dry-run 说明:“Before executing, explain the selected Teltel tool, required inputs, expected result, and possible failure cases.”

什么时候需要自定义这个 skill

如果你的团队反复运行同一类 Teltel workflow,可以考虑扩展这个 skill。有用的补充包括 approved prompt templates、敏感操作的 required confirmation rules、常见 Teltel use cases 示例,或组织内部特定的 field naming conventions。

请保留原始的“先发现、再执行”规则。teltel-automation 最大的优势在于它会适配当前 Rube schemas,而不是依赖过时的假设。

评分与评论

暂无评分
分享你的评价
登录后即可为这个技能评分并发表评论。
G
0/10000
最新评论
保存中...