Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

helpscout-clihelpscout CLI 搜索

Agent Skill

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

总安装

9,474

周安装

387

GitHub Stars

公开资料未说明

下载量

3,065
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install helpscout-cli

简介

HelpScout API 命令行接口,用于管理客户对话与知识库内容。

  • 支持收件箱操作、文档编辑与客户信息查询功能。
  • 适用于客服系统自动化与工单流转场景。helpscout-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需配置有效 API Token 并遵守速率限制规则。
  • 建议定期审计操作日志以确保合规性与可追溯性。

SKILL.md

name
hs
description
CLI for the HelpScout API. Manage conversations, customers, mailboxes, knowledge base articles, and more from the terminal. Covers both Inbox and Docs APIs with full CRUD, PII redaction, permissions, and multiple output formats.
homepage
https://github.com/operator-kit/hs-cli
metadata
{"clawdbot":{"emoji":"📬","requires":{"bins":["hs"]},"install":[{"id":"brew","kind":"brew","formula":"operator-kit/tap/hs","bins":["hs"],"label":"Install hs (brew)"}]}}

hs

Use hs to interact with HelpScout from the terminal. Two API namespaces: hs inbox (Mailbox API — conversations, customers, users, teams, etc.) and hs docs (Docs API — sites, collections, categories, articles).

Auth

Inbox uses OAuth2 client credentials (App ID + App Secret). Docs uses an API key.

  • hs inbox auth login — interactive setup, validates against the API
  • hs docs auth login — prompt for Docs API key, validates
  • hs inbox auth status / hs docs auth status — check stored credentials
  • hs inbox auth logout / hs docs auth logout — remove credentials

Credential resolution order: OS keyringconfig file. For non-interactive auth, use hs inbox config set --inbox-app-id <id> --inbox-app-secret <secret>.

Inbox commands

Conversations (conv)

  • hs inbox conv list --status active --mailbox <id> --tag <name> --assigned-to <uid> --embed threads
  • hs inbox conv get <id> --embed threads
  • hs inbox conv create --mailbox <id> --subject "..." --customer <email> --body "..."
  • hs inbox conv update <id> --status closed --subject "..."
  • hs inbox conv delete <id>
  • hs inbox conv threads list <conv-id>
  • hs inbox conv threads reply <conv-id> --customer <email> --body "..." --status closed
  • hs inbox conv threads note <conv-id> --body "..."
  • hs inbox conv tags set <conv-id> --tag billing --tag urgent
  • hs inbox conv fields set <conv-id> --field <id>=<value>
  • hs inbox conv attachments upload <conv-id> --thread-id <id> --file ./path

Customers (cust)

  • hs inbox cust list --query "email:jane@example.com"
  • hs inbox cust get <id>
  • hs inbox cust create --first-name Jane --last-name Doe --email jane@example.com
  • hs inbox cust update <id> --last-name Smith
  • hs inbox cust delete <id>

Mailboxes (mb)

  • hs inbox mb list / hs inbox mb get <id>
  • hs inbox mb folders list <mb-id> / hs inbox mb custom-fields list <mb-id>

Users

  • hs inbox users list --email user@co.com / hs inbox users get <id> / hs inbox users me
  • hs inbox users status get <uid> / hs inbox users status set <uid> --status away

Teams

  • hs inbox teams list / hs inbox teams members <team-id>

Organizations

  • hs inbox organizations list --query "acme" / hs inbox organizations get <id>
  • hs inbox organizations create --name "Acme Corp" / hs inbox organizations delete <id>

Tags / Ratings

  • hs inbox tags list / hs inbox ratings list

Workflows (wf)

  • hs inbox wf list / hs inbox wf run <id> --conversation-ids id1,id2
  • hs inbox wf update-status <id> --status active

Webhooks (wh)

  • hs inbox wh list / hs inbox wh get <id>
  • hs inbox wh create --url https://... --events convo.created --secret s3cret
  • hs inbox wh delete <id>

Saved replies

  • hs inbox saved-replies list --mailbox-id <id>
  • hs inbox saved-replies create --mailbox-id <id> --name "Greeting" --body "Hello..."

Reports

  • hs inbox reports conversations --start 2025-01-01 --end 2025-01-31 --mailbox <id>
  • Subcommands: chats, company, conversations, customers, docs, email, productivity, ratings, users

Tools

  • hs inbox tools briefing — daily briefing summary
  • hs inbox tools briefing --assigned-to <uid> --embed threads — agent-specific briefing with thread content

Docs commands

Sites

  • hs docs sites list / hs docs sites get <id>
  • hs docs sites create --subdomain help --title "Help Center"

Collections

  • hs docs collections list --site <id> / hs docs collections get <id>
  • hs docs collections create --site <id> --name "Getting Started"

Categories

  • hs docs categories list <collection-id> / hs docs categories get <id>
  • hs docs categories create --collection <id> --name "FAQ"
  • hs docs categories reorder <collection-id> --categories id1,id2,id3

Articles

  • hs docs articles list --collection <id> or --category <id>
  • hs docs articles search --query "password reset" --site <id>
  • hs docs articles get <id> / hs docs articles get <id> --draft
  • hs docs articles create --collection <id> --name "How to reset" --text "Step 1..."
  • hs docs articles update <id> --text "Updated..." --status published
  • hs docs articles delete <id>
  • hs docs articles draft save <id> --text "..." / hs docs articles draft delete <id>
  • hs docs articles revisions list <id> / hs docs articles revisions get <id> <rev-id>
  • hs docs articles upload <id> --file ./image.png

Redirects

  • hs docs redirects list <site-id> / hs docs redirects find --site <id> --url /old-path
  • hs docs redirects create --site <id> --url-mapping /old --redirect /new

Assets

  • hs docs assets article upload --file ./img.png
  • hs docs assets settings upload --file ./logo.png

Output & global flags

  • --format table|json|json-full|csv — output format (default: table)
  • --no-paginate — fetch all pages automatically
  • --page <n> / --per-page <n> — pagination (defaults: 1, 25)
  • --debug — show HTTP request/response details

Config

  • hs config set --format json --inbox-default-mailbox 12345
  • hs config get [key] — print one or all config values
  • hs config path — print config file location
  • Default location: ~/.config/hs/config.yaml (Linux/macOS), %AppData%\hs\config.yaml (Windows)

PII redaction

Inbox commands redact customer/user PII with deterministic fake identities. Controlled via config key inbox_pii_mode.

ModeEffect
offNo redaction (default)
customersRedact customer names, emails, phones
allRedact both customers and users
  • --unredacted flag on hs inbox disables redaction for one call (requires inbox_pii_allow_unredacted: true in config)

Permissions

Allowlist model — restrict which commands an agent can run. Empty policy = unrestricted.

  • Set via config key inbox_permissions / docs_permissions — comma-separated resource:operation pairs
  • Wildcards: *:read, conversations:*
  • Operations: read, write, delete, *
  • hs inbox permissions — inspect current policy, shows ALLOW/DENY per command

Example: hs inbox config set --inbox-permissions "conversations:read,customers:read,mailboxes:read"

Notes

  • Self-update: hs update
  • Shell completions: hs completion bash|zsh|fish|powershell

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.77%
按下载量换算2,476

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills