@citedy/game-sounds 1.0.1 → 1.0.2
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.
- package/.claude-plugin/plugin.json +8 -5
- package/README.md +5 -4
- package/hooks/hooks.json +43 -23
- package/package.json +1 -1
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@citedy/game-sounds",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Game sound effects for Claude Code — Warcraft, StarCraft, Diablo & more. Work work!
|
|
5
|
-
"author":
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Game sound effects for Claude Code — Warcraft, StarCraft, Diablo & more. Work work!",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Citedy",
|
|
7
|
+
"email": "hello@citedy.com"
|
|
8
|
+
},
|
|
6
9
|
"homepage": "https://www.citedy.com",
|
|
7
|
-
"repository": "https://github.com/
|
|
8
|
-
}
|
|
10
|
+
"repository": "https://github.com/Citedy/game-sounds"
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -7,19 +7,20 @@ Game sound effects for [Claude Code](https://docs.anthropic.com/en/docs/claude-c
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
claude plugin add
|
|
10
|
+
claude plugin marketplace add Citedy/claude-plugins
|
|
11
|
+
claude plugin install game-sounds@citedy
|
|
11
12
|
```
|
|
12
13
|
|
|
13
14
|
<details>
|
|
14
15
|
<summary>Alternative install methods</summary>
|
|
15
16
|
|
|
16
17
|
```bash
|
|
18
|
+
# Git clone (no marketplace needed)
|
|
19
|
+
git clone https://github.com/Citedy/game-sounds.git ~/.claude/plugins/game-sounds
|
|
20
|
+
|
|
17
21
|
# npm
|
|
18
22
|
npm i -g @citedy/game-sounds
|
|
19
23
|
claude --plugin-dir $(npm root -g)/@citedy/game-sounds
|
|
20
|
-
|
|
21
|
-
# Git clone
|
|
22
|
-
git clone https://github.com/Citedy/game-sounds.git ~/.claude/plugins/game-sounds
|
|
23
24
|
```
|
|
24
25
|
|
|
25
26
|
</details>
|
package/hooks/hooks.json
CHANGED
|
@@ -1,24 +1,44 @@
|
|
|
1
1
|
{
|
|
2
|
-
"hooks":
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
2
|
+
"hooks": {
|
|
3
|
+
"SessionStart": [
|
|
4
|
+
{
|
|
5
|
+
"hooks": [
|
|
6
|
+
{
|
|
7
|
+
"type": "command",
|
|
8
|
+
"command": "bash ${CLAUDE_PLUGIN_ROOT}/scripts/play-sound.sh session-start"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"UserPromptSubmit": [
|
|
14
|
+
{
|
|
15
|
+
"hooks": [
|
|
16
|
+
{
|
|
17
|
+
"type": "command",
|
|
18
|
+
"command": "bash ${CLAUDE_PLUGIN_ROOT}/scripts/play-sound.sh task-acknowledge"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"Stop": [
|
|
24
|
+
{
|
|
25
|
+
"hooks": [
|
|
26
|
+
{
|
|
27
|
+
"type": "command",
|
|
28
|
+
"command": "bash ${CLAUDE_PLUGIN_ROOT}/scripts/play-sound.sh task-complete"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"Notification": [
|
|
34
|
+
{
|
|
35
|
+
"hooks": [
|
|
36
|
+
{
|
|
37
|
+
"type": "command",
|
|
38
|
+
"command": "bash ${CLAUDE_PLUGIN_ROOT}/scripts/play-sound.sh permission"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
}
|