@agentdeck/hooks 1.0.13 → 1.0.15

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.
Files changed (3) hide show
  1. package/README.md +15 -0
  2. package/package.json +18 -6
  3. package/LICENSE +0 -21
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @agentdeck/hooks
2
+
3
+ Agent lifecycle hook installers for **[AgentDeck](https://github.com/puritysb/AgentDeck)** — Claude Code hooks (`~/.claude/settings.json`), Codex lifecycle hooks (`~/.codex/config.toml`), and the OpenCode observer plugin.
4
+
5
+ This is an internal dependency of [`@agentdeck/bridge`](https://www.npmjs.com/package/@agentdeck/bridge) and is published only so that package can resolve it. It has no standalone use and no API stability guarantees between versions.
6
+
7
+ To install AgentDeck, use:
8
+
9
+ ```bash
10
+ npx @agentdeck/setup
11
+ ```
12
+
13
+ ## License
14
+
15
+ MIT
package/package.json CHANGED
@@ -1,8 +1,20 @@
1
1
  {
2
2
  "name": "@agentdeck/hooks",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
+ "engines": {
5
+ "node": ">=22"
6
+ },
4
7
  "private": false,
8
+ "description": "Agent lifecycle hook installers for AgentDeck (internal dependency of @agentdeck/bridge)",
5
9
  "type": "module",
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/puritysb/AgentDeck.git",
14
+ "directory": "hooks"
15
+ },
16
+ "homepage": "https://github.com/puritysb/AgentDeck#readme",
17
+ "bugs": "https://github.com/puritysb/AgentDeck/issues",
6
18
  "files": [
7
19
  "dist",
8
20
  "!dist/__tests__"
@@ -15,13 +27,13 @@
15
27
  "types": "./dist/install.d.ts"
16
28
  }
17
29
  },
18
- "devDependencies": {
19
- "@types/node": "^25.6.0",
20
- "typescript": "^6.0.3"
21
- },
22
30
  "scripts": {
23
31
  "build": "tsc",
24
32
  "clean": "rm -rf dist",
25
33
  "install-hooks": "node dist/install.js"
34
+ },
35
+ "devDependencies": {
36
+ "@types/node": "^25.6.0",
37
+ "typescript": "^6.0.3"
26
38
  }
27
- }
39
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 SerendipityBound
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.