Files
Oleg Maslov 0c3e2ead3b
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled
moving
2026-09-02 10:10:29 +02:00

67 lines
2.2 KiB
JSON

{
"name": "@waggle/hive-mind-hooks-hermes",
"version": "0.1.0",
"description": "Hermes silent capture shim for hive-mind. Adds on_session_start / pre_llm_call / post_llm_call shell hooks that route conversation episodes into hive-mind frames via @waggle/hive-mind-shim-core. Reversible, create-if-missing install — additive marker-tagged merge into ~/.hermes/config.yaml with literal byte-identical uninstall (YAML round-trip is lossy). No PreCompact event (Hermes ships no compaction hook). Built on @waggle/hive-mind-hooks-core.",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"hermes-hooks": "dist/bin/hermes-hooks.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./hooks/session-start": "./dist/hooks/session-start.js",
"./hooks/user-prompt-submit": "./dist/hooks/user-prompt-submit.js",
"./hooks/stop": "./dist/hooks/stop.js"
},
"scripts": {
"build": "tsc --build",
"build:clean": "tsc --build --clean",
"typecheck": "tsc --build && tsc --noEmit -p tsconfig.test.json",
"test": "node ../../node_modules/vitest/vitest.mjs run --root ../.. --config vitest.config.ts packages/hive-mind-hooks-hermes/tests",
"test:watch": "vitest"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@waggle/hive-mind-hooks-core": "*",
"@waggle/hive-mind-shim-core": "*",
"yaml": "^2.9.0"
},
"peerDependencies": {
"@waggle/hive-mind-cli": "*"
},
"peerDependenciesMeta": {
"@waggle/hive-mind-cli": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/marolinik/waggle-os.git",
"directory": "packages/hive-mind-hooks-hermes"
},
"homepage": "https://github.com/marolinik/waggle-os/tree/main/packages/hive-mind-hooks-hermes#readme",
"bugs": {
"url": "https://github.com/marolinik/waggle-os/issues"
},
"author": "Egzakta Group d.o.o. <hello@egzakta.com> (https://egzakta.com)",
"keywords": [
"hermes",
"hive-mind",
"memory",
"ai",
"hook",
"silent-capture",
"yaml"
],
"types": "dist/index.d.ts"
}