@agentdeck/hooks 1.0.12 → 1.0.14

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 (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +13 -1
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.12",
3
+ "version": "1.0.14",
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__"