hermes-agent 0.15.2 → 0.16.0
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/NOTICE +2 -0
- package/README.md +6 -0
- package/SECURITY.md +10 -0
- package/package.json +3 -3
package/NOTICE
CHANGED
|
@@ -3,6 +3,8 @@ Copyright (c) 2026 wyrtensi
|
|
|
3
3
|
License: MIT
|
|
4
4
|
|
|
5
5
|
This repository publishes an unofficial npm bridge for Hermes Agent.
|
|
6
|
+
The bridge tracks the latest published Hermes Agent package on PyPI for npm
|
|
7
|
+
release synchronization.
|
|
6
8
|
|
|
7
9
|
Hermes Agent is developed by Nous Research.
|
|
8
10
|
Upstream repository: https://github.com/NousResearch/hermes-agent
|
package/README.md
CHANGED
|
@@ -9,6 +9,8 @@ runtime.
|
|
|
9
9
|
|
|
10
10
|
This repository publishes the npm bridge for
|
|
11
11
|
[NousResearch/Hermes-Agent](https://github.com/NousResearch/Hermes-Agent).
|
|
12
|
+
The npm bridge follows the latest published `hermes-agent` release on PyPI,
|
|
13
|
+
because the npm `postinstall` step installs that Python package.
|
|
12
14
|
|
|
13
15
|
The npm package name is:
|
|
14
16
|
|
|
@@ -106,6 +108,10 @@ The workflow:
|
|
|
106
108
|
7. Publishes missing npm packages through npm trusted publishing with GitHub
|
|
107
109
|
Actions OIDC and npm provenance.
|
|
108
110
|
|
|
111
|
+
GitHub scheduled workflows are best-effort and can be delayed or skipped by
|
|
112
|
+
GitHub. The schedule checks four times per hour so new PyPI releases are picked
|
|
113
|
+
up quickly without requiring a paid service or upstream webhook access.
|
|
114
|
+
|
|
109
115
|
## GitHub setup
|
|
110
116
|
|
|
111
117
|
Create a GitHub repository named:
|
package/SECURITY.md
CHANGED
|
@@ -139,6 +139,16 @@ hermes-agent==<npm package version>
|
|
|
139
139
|
This avoids silently installing a newer Python Hermes runtime than the npm
|
|
140
140
|
wrapper was published for.
|
|
141
141
|
|
|
142
|
+
Release automation uses PyPI as the source of truth for the latest Hermes Agent
|
|
143
|
+
version because this package installs the upstream Python package from PyPI.
|
|
144
|
+
The upstream Git repository may update its source tree or tags on a different
|
|
145
|
+
timeline than PyPI package publication.
|
|
146
|
+
|
|
147
|
+
Scheduled GitHub Actions runs are best-effort and can be delayed or skipped by
|
|
148
|
+
GitHub. The publish workflow checks several times per hour, but manual
|
|
149
|
+
`workflow_dispatch` remains available when a release needs to be published
|
|
150
|
+
immediately.
|
|
151
|
+
|
|
142
152
|
## How to audit locally
|
|
143
153
|
|
|
144
154
|
Review the install script:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hermes-agent",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Unofficial npm bridge for Hermes Agent 0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
|
+
"description": "Unofficial npm bridge for Hermes Agent 0.16.0: The self-improving AI agent \u2014 creates skills from experience, improves them during use, and runs anywhere",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"bin": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"SECURITY.md"
|
|
37
37
|
],
|
|
38
38
|
"hermesAgent": {
|
|
39
|
-
"pythonPackageVersion": "0.
|
|
39
|
+
"pythonPackageVersion": "0.16.0",
|
|
40
40
|
"upstreamRepository": "nousresearch/hermes-agent"
|
|
41
41
|
}
|
|
42
42
|
}
|