moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
{
"name": "@waggle/hive-mind-hooks-codex-desktop",
"version": "0.1.0",
"description": "OpenAI Codex Desktop silent capture shim for hive-mind. A thin re-export of @waggle/hive-mind-hooks-codex — Codex Desktop shares the same ~/.codex/ config root as the Codex CLI, so install / uninstall / verify behave identically and write into the same ~/.codex/hooks.json + pointer. Exists as a distinct package so the dependency graph + subtree-split see the boundary and the launcher resolves hookPackageFor('codex-desktop').",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"codex-desktop-hooks": "dist/bin/codex-desktop-hooks.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.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-codex-desktop/tests",
"test:watch": "vitest"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@waggle/hive-mind-hooks-codex": "*"
},
"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-codex-desktop"
},
"homepage": "https://github.com/marolinik/waggle-os/tree/main/packages/hive-mind-hooks-codex-desktop#readme",
"bugs": {
"url": "https://github.com/marolinik/waggle-os/issues"
},
"author": "Egzakta Group d.o.o. <hello@egzakta.com> (https://egzakta.com)",
"keywords": [
"codex-desktop",
"codex",
"openai",
"hive-mind",
"memory",
"ai",
"hook",
"silent-capture"
],
"types": "dist/index.d.ts"
}