Skip to content

Commit da4bd90

Browse files
committed
chore: fix claude-plugin
1 parent ed011af commit da4bd90

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
2-
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
32
"name": "xcsift",
4-
"version": "1.0.0",
3+
"version": "1.0.1",
54
"description": "Automatically pipe xcodebuild and swift build output through xcsift for structured TOON format optimized for LLM consumption",
6-
"hooks": "./hooks/hooks.json",
75
"skills": "./skills"
86
}
Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
2-
"hooks": [
3-
{
4-
"matcher": "Bash",
5-
"hooks": [
6-
{
7-
"type": "preToolUse",
8-
"command": "./scripts/pre-xcsift.sh"
9-
}
10-
]
11-
}
12-
]
2+
"description": "xcsift: automatically pipe xcodebuild/swift build commands through xcsift for structured TOON output",
3+
"hooks": {
4+
"PreToolUse": [
5+
{
6+
"matcher": "Bash",
7+
"hooks": [
8+
{
9+
"type": "command",
10+
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/pre-xcsift.sh",
11+
"timeout": 30
12+
}
13+
]
14+
}
15+
]
16+
}
1317
}

0 commit comments

Comments
 (0)