Skip to content

Commit 4223d89

Browse files
committed
fix: npm postinstall asset filename mismatch
remove `v` prefix from asset name to match goreleaser output
1 parent 774c1df commit 4223d89

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

npm/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# @operatorkit/hs
22

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.
44

5-
Ships with an embedded [MCP](https://modelcontextprotocol.io/) server for AI-assisted workflows.
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).
69

710
## Install
811

npm/bin/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function isDevVersion(version) {
5454

5555
function releaseAssetURL(version, target) {
5656
const tag = `v${version}`;
57-
const asset = `hs_${tag}_${target.os}_${target.arch}${target.archiveExt}`;
57+
const asset = `hs_${version}_${target.os}_${target.arch}${target.archiveExt}`;
5858
return {
5959
tag,
6060
asset,

0 commit comments

Comments
 (0)