@sallmarta/eye-hate-agent 1.0.0 → 1.0.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 CHANGED
@@ -71,6 +71,8 @@ npx @sallmarta/eye-hate-agent doctor
71
71
  npx @sallmarta/eye-hate-agent bootstrap
72
72
  ```
73
73
 
74
+ The published package exposes both `eha` and `eye-hate-agent` as CLI entrypoints so direct scoped `npx` execution and installed-command usage both work.
75
+
74
76
  Current runtime support tiers:
75
77
 
76
78
  - **Claude:** full repo-local command projection under `.claude/commands/eha/`
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to Eye Hate Agent are documented here. Keep in mind, `docs/project-docs/changelog.md` has to be updated whenever important things change in this repository.
4
4
 
5
+ ## [1.18.1] - 2026-05-26
6
+
7
+ ### Changed
8
+
9
+ - **npx entrypoint compatibility**: Added a package-name bin alias (`eye-hate-agent`) alongside `eha` and bumped `package.json` to `1.0.1` so `npx @sallmarta/eye-hate-agent ...` resolves correctly after republishing.
10
+
5
11
  ## [1.18.0] - 2026-05-26
6
12
 
7
13
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sallmarta/eye-hate-agent",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Template-and-engine toolkit for AI-agent-assisted project workflows.",
5
5
  "directories": {
6
6
  "doc": "docs"
@@ -44,7 +44,8 @@
44
44
  "node": ">=18"
45
45
  },
46
46
  "bin": {
47
- "eha": "./bin/eha.js"
47
+ "eha": "./bin/eha.js",
48
+ "eye-hate-agent": "./bin/eha.js"
48
49
  },
49
50
  "dependencies": {
50
51
  "commander": "^12.0.0",