@operatorkit/hs 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -2
- package/bin/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
# @operatorkit/hs
|
|
2
2
|
|
|
3
|
-
A command-line interface for the [HelpScout](https://www.helpscout.com/) API. Manage mailboxes, conversations, customers, tags, users, workflows, webhooks, and knowledge base content from the terminal.
|
|
3
|
+
A command-line interface and [MCP](https://modelcontextprotocol.io/) server for the [HelpScout](https://www.helpscout.com/) API. Manage mailboxes, conversations, customers, tags, users, workflows, webhooks, and knowledge base content from the terminal.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**Built for automation and AI-assisted workflows**
|
|
6
|
+
- Ships with a deterministic, layered PII redaction pipeline (structured fields + free-text + source payload protection), plus strict per-command override controls.
|
|
7
|
+
- An allowlist-based permission system (`resource:operation` pairs) lets you restrict exactly which actions are permitted.
|
|
8
|
+
- See [PII Redaction Pipeline](#pii-redaction-pipeline) · [Permissions](#permissions).
|
|
6
9
|
|
|
7
10
|
## Install
|
|
8
11
|
|
package/bin/install.js
CHANGED
|
@@ -54,7 +54,7 @@ function isDevVersion(version) {
|
|
|
54
54
|
|
|
55
55
|
function releaseAssetURL(version, target) {
|
|
56
56
|
const tag = `v${version}`;
|
|
57
|
-
const asset = `hs_${
|
|
57
|
+
const asset = `hs_${version}_${target.os}_${target.arch}${target.archiveExt}`;
|
|
58
58
|
return {
|
|
59
59
|
tag,
|
|
60
60
|
asset,
|