@hegel-dev/companion 1.0.21 → 1.0.22
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
|
@@ -52,6 +52,10 @@ npx -p @hegel-dev/companion hegel-companion init .
|
|
|
52
52
|
|
|
53
53
|
The bundled sidebar VSIX declares **`engines.vscode` ^1.105.0** with **`@types/vscode` ~1.105.0**, aligned with Cursor builds that report VS Code **1.105.x** (see `hegel-vscode/package.json`).
|
|
54
54
|
|
|
55
|
+
**Current npm release:** The version in the root `package.json` is what ships to npm as [`@hegel-dev/companion`](https://www.npmjs.com/package/@hegel-dev/companion); use `CHANGELOG.md` for release notes.
|
|
56
|
+
|
|
57
|
+
**Developing this repository:** After `npm run build`, `node dist/setup.js . --force` (same as `hegel-companion init . --force`) regenerates `.cursor/hooks.json` and `.cursor/mcp.json` with **repo-root-relative** `dist/hook.js` and `dist/mcp.js` paths, so those files stay portable across machines when committed.
|
|
58
|
+
|
|
55
59
|
This single command will:
|
|
56
60
|
1. Generate `.cursor/hooks.json` to wire up the analysis layers.
|
|
57
61
|
2. Scaffold a default `hegel.config.json` in your project root.
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hegel-dev/companion",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.22",
|
|
4
4
|
"description": "Dialectical companion for AI-assisted development — real-time critical thinking oversight for Cursor IDE sessions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
"dialectical"
|
|
30
30
|
],
|
|
31
31
|
"license": "MIT",
|
|
32
|
+
"homepage": "https://github.com/CreatoR682/hegel#readme",
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/CreatoR682/hegel/issues"
|
|
35
|
+
},
|
|
32
36
|
"repository": {
|
|
33
37
|
"type": "git",
|
|
34
38
|
"url": "https://github.com/CreatoR682/hegel.git"
|