@sallmarta/eye-hate-agent 1.0.1 → 1.0.2
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 +1 -1
- package/docs/project-docs/changelog.md +6 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ npx @sallmarta/eye-hate-agent doctor
|
|
|
71
71
|
npx @sallmarta/eye-hate-agent bootstrap
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
The published package exposes both `
|
|
74
|
+
The published package exposes both `eye-hate-agent` and `eha` as CLI entrypoints. The package-name entrypoint is kept first so bare scoped `npx` resolution prefers `eye-hate-agent`, while installed usage can still use `eha`.
|
|
75
75
|
|
|
76
76
|
Current runtime support tiers:
|
|
77
77
|
|
|
@@ -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.2] - 2026-05-26
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- **Bare scoped npx follow-up**: Reordered the package bin entries and bumped `package.json` to `1.0.2` so bare `npx @sallmarta/eye-hate-agent ...` should prefer `eye-hate-agent` before the installed `eha` alias.
|
|
10
|
+
|
|
5
11
|
## [1.18.1] - 2026-05-26
|
|
6
12
|
|
|
7
13
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sallmarta/eye-hate-agent",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Template-and-engine toolkit for AI-agent-assisted project workflows.",
|
|
5
5
|
"directories": {
|
|
6
6
|
"doc": "docs"
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"node": ">=18"
|
|
45
45
|
},
|
|
46
46
|
"bin": {
|
|
47
|
-
"
|
|
48
|
-
"
|
|
47
|
+
"eye-hate-agent": "./bin/eha.js",
|
|
48
|
+
"eha": "./bin/eha.js"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"commander": "^12.0.0",
|