intentdna 1.5.15 → 1.5.16

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.
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
3
+ "name": "intentdna",
4
+ "description": "Intent DNA plugin marketplace for Claude Code",
5
+ "owner": {
6
+ "name": "Samuel"
7
+ },
8
+ "plugins": [
9
+ {
10
+ "name": "intentdna",
11
+ "description": "Declarative policy layer for AI agent behavior with plugin-managed hook runtime for Claude Code.",
12
+ "version": "1.5.16",
13
+ "author": {
14
+ "name": "Samuel"
15
+ },
16
+ "source": "./",
17
+ "category": "development",
18
+ "homepage": "https://github.com/lushan1314/intentdna-repo",
19
+ "tags": [
20
+ "agent",
21
+ "policy",
22
+ "guardrails",
23
+ "hooks",
24
+ "development"
25
+ ]
26
+ }
27
+ ],
28
+ "version": "1.5.16"
29
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "intentdna",
3
+ "version": "1.5.16",
4
+ "description": "Declarative policy layer for AI agent behavior",
5
+ "author": {
6
+ "name": "Samuel"
7
+ },
8
+ "repository": "https://github.com/lushan1314/intentdna-repo",
9
+ "homepage": "https://github.com/lushan1314/intentdna-repo",
10
+ "license": "Apache-2.0",
11
+ "keywords": [
12
+ "claude-code",
13
+ "plugin",
14
+ "agent",
15
+ "policy",
16
+ "dna",
17
+ "guardrails"
18
+ ]
19
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "hooks": {
3
+ "PreToolUse": [{ "matcher": "*", "hooks": [{ "type": "command", "command": "dna-hook PreToolUse", "timeout": 5 }] }],
4
+ "PostToolUse": [{ "matcher": "*", "hooks": [{ "type": "command", "command": "dna-hook PostToolUse", "timeout": 3 }] }],
5
+ "UserPromptSubmit": [{ "matcher": "*", "hooks": [{ "type": "command", "command": "dna-hook UserPromptSubmit", "timeout": 5 }] }],
6
+ "SubagentStop": [{ "matcher": "*", "hooks": [{ "type": "command", "command": "dna-hook SubagentStop", "timeout": 3 }] }],
7
+ "PreCompact": [{ "matcher": "*", "hooks": [{ "type": "command", "command": "dna-hook PreCompact", "timeout": 3 }] }],
8
+ "Notification": [{ "matcher": "*", "hooks": [{ "type": "command", "command": "dna-hook Notification", "timeout": 3 }] }],
9
+ "Stop": [{ "matcher": "*", "hooks": [{ "type": "command", "command": "dna-hook Stop", "timeout": 3 }] }],
10
+ "SessionStart": [{ "matcher": "*", "hooks": [{ "type": "command", "command": "dna-hook SessionStart", "timeout": 5 }] }]
11
+ }
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intentdna",
3
- "version": "1.5.15",
3
+ "version": "1.5.16",
4
4
  "description": "Intent DNA — Declarative policy layer for AI agent behavior",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -36,6 +36,7 @@
36
36
  "dist",
37
37
  "spec",
38
38
  ".claude-plugin",
39
+ "hooks",
39
40
  "README.md",
40
41
  "LICENSE"
41
42
  ],