hermes-action-bridge 0.2.0 → 0.2.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +14 -9
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,16 @@ All notable changes to this project are documented here. The format is based on
4
4
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to
5
5
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.2.1] - 2026-06-30
8
+
9
+ ### Changed
10
+
11
+ - Documented the published npm install (`npm install -g hermes-action-bridge`) as the primary path.
12
+
13
+ ### Internal
14
+
15
+ - Release workflow publishes to npm via OIDC Trusted Publishing (no long-lived token) with provenance.
16
+
7
17
  ## [0.2.0] - 2026-06-30
8
18
 
9
19
  ### Added
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Hermes Action Bridge
2
2
 
3
- [![CI](https://github.com/TheBlueHouse75/hermes-action-bridge/actions/workflows/ci.yml/badge.svg)](https://github.com/TheBlueHouse75/hermes-action-bridge/actions/workflows/ci.yml)
3
+ [![npm](https://img.shields.io/npm/v/hermes-action-bridge)](https://www.npmjs.com/package/hermes-action-bridge) [![CI](https://github.com/TheBlueHouse75/hermes-action-bridge/actions/workflows/ci.yml/badge.svg)](https://github.com/TheBlueHouse75/hermes-action-bridge/actions/workflows/ci.yml)
4
4
 
5
5
  A configurable bridge that lets external agents delegate real-world actions to [Hermes Agent](https://hermes-agent.nousresearch.com/docs) without reimplementing Hermes skills, tools, platform integrations, browser automation, cron jobs, or messaging flows.
6
6
 
@@ -40,27 +40,32 @@ hermes --version
40
40
 
41
41
  ## Installation
42
42
 
43
- From a local checkout:
43
+ Install from npm:
44
44
 
45
45
  ```bash
46
- npm install
47
- npm run build
48
- npm link
46
+ npm install -g hermes-action-bridge
49
47
  ```
50
48
 
51
- Then:
49
+ Then check it works:
52
50
 
53
51
  ```bash
54
52
  hermes-action --version
55
- hermes-action status
53
+ hermes-action doctor
56
54
  ```
57
55
 
58
- When published to npm, installation will be:
56
+ <details>
57
+ <summary>From source (for development)</summary>
59
58
 
60
59
  ```bash
61
- npm install -g hermes-action-bridge
60
+ git clone https://github.com/TheBlueHouse75/hermes-action-bridge.git
61
+ cd hermes-action-bridge
62
+ npm install
63
+ npm run build
64
+ npm link
62
65
  ```
63
66
 
67
+ </details>
68
+
64
69
  ## Quick start
65
70
 
66
71
  Create a config file in your project:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hermes-action-bridge",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Configurable bridge for external agents to delegate actions to Hermes Agent via CLI or MCP.",
5
5
  "repository": {
6
6
  "type": "git",