通过自动化执行 Helpwise 客服与协作任务,提升工单处理效率。
该技能本身是开源的 prompt-only 说明,来源于高社区信任的 GitHub 仓库,未见直接本地执行或本地文件读写红旗。主要安全关注点在于其依赖远程 Rube MCP 与 Helpwise 账户连接后,可能代表用户访问和操作 Helpwise 远程数据,因此整体以低到中等注意级别为主。
材料声明技能本身不需要本地 API key 或环境变量,但前提是通过 `RUBE_MANAGE_CONNECTIONS` 建立 Helpwise 活跃连接并完成外部认证链接流程。这意味着实际仍涉及第三方托管的账户连接/令牌授权,虽然未见明确凭证滥用描述,但应按需留意授权范围与会话管理。
README 明确要求添加远程 MCP 端点 `https://rube.app/mcp`,并通过 Composio/Helpwise 工具链执行操作;用户请求与 Helpwise 相关数据很可能经该远程服务中转或处理。网络外发目标与用途在文档中有声明,属于该类集成的常规能力,但仍意味着业务数据可能离开当前客户端环境。
就提供材料看,这是一个 prompt-only 技能说明,未包含可执行安装脚本、shell 命令或要求在本机启动进程的内容。它指导调用的是远程 MCP 工具接口,而非在本地执行任意代码,因此未见本机代码执行红旗。
该技能目标是“Automate Helpwise operations”,并通过已连接的 Helpwise 工具执行查询和操作,因此其数据访问范围主要是用户已授权的 Helpwise 账户数据与对象。材料未显示对本地文件系统、系统目录或无关资源的访问请求,但远程业务数据访问能力本身需要按最小权限原则审查。
来源为 GitHub 上的开源仓库,且社区采用度很高(64.7k stars),这些都是显著的降风险因素;当前材料也仅表现为技能文档而非闭源二进制。虽许可证未声明、维护状态未知,仍不足以单独构成高风险供应链信号,整体可审计性较好。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "helpwise-automation" 技能: 1. 下载 https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/helpwise-automation/SKILL.md 2. 保存为 ~/.claude/skills/helpwise-automation/SKILL.md 3. 装好后重载技能,告诉我可以用了
Automate Helpwise operations through Composio's Helpwise toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/helpwise
RUBE_MANAGE_CONNECTIONS with toolkit helpwiseRUBE_SEARCH_TOOLS first to get current tool schemasGet Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
RUBE_SEARCH_TOOLS respondsRUBE_MANAGE_CONNECTIONS with toolkit helpwiseAlways discover available tools before executing workflows:
RUBE_SEARCH_TOOLS
queries: [{use_case: "Helpwise operations", known_fields: ""}]
session: {generate_id: true}
This returns available tool slugs, input schemas, recommended execution plans, and known pitfalls.
RUBE_SEARCH_TOOLS
queries: [{use_case: "your specific Helpwise task"}]
session: {id: "existing_session_id"}
RUBE_MANAGE_CONNECTIONS
toolkits: ["helpwise"]
session_id: "your_session_id"
RUBE_MULTI_EXECUTE_TOOL
tools: [{
tool_slug: "TOOL_SLUG_FROM_SEARCH",
arguments: {/* schema-compliant args from search results */}
}]
memory: {}
session_id: "your_session_id"
RUBE_SEARCH_TOOLSRUBE_MANAGE_CONNECTIONS shows ACTIVE status before executing toolsmemory in RUBE_MULTI_EXECUTE_TOOL calls, even if empty ({})| Operation | Approach |
|---|---|
| Find tools | RUBE_SEARCH_TOOLS with Helpwise-specific use case |
| Connect | RUBE_MANAGE_CONNECTIONS with toolkit helpwise |
| Execute | RUBE_MULTI_EXECUTE_TOOL with discovered tool slugs |
| Bulk ops | RUBE_REMOTE_WORKBENCH with run_composio_tool() |
| Full schema | RUBE_GET_TOOL_SCHEMAS for tools with schemaRef |
Powered by Composio