-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 1.43 KB
/
manifest.json
File metadata and controls
32 lines (32 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"manifest_version": 1,
"slug": "cloudnative-starter",
"name": "CloudNative Starter",
"version": "2.0.0",
"description": "Comprehensive development bundle — code review, TDD, architecture, security, build resolution, and workflow orchestration. Adapted from cloudnative-co/claude-code-starter-kit.",
"hooks": {
"session-start": [
{ "name": "Auto Update", "script": "SCRIPTS/auto-update.mjs" },
{ "name": "Memory Restore", "script": "SCRIPTS/memory-session-start.mjs" }
],
"pre-tool-use": [
{ "name": "Safety Net", "script": "SCRIPTS/safety-net.mjs" },
{ "name": "Doc Blocker", "script": "SCRIPTS/doc-blocker.mjs" },
{ "name": "Git Push Review", "script": "SCRIPTS/git-push-review.mjs" },
{ "name": "Tmux Guard", "script": "SCRIPTS/tmux-guard.mjs" },
{ "name": "Strategic Compact", "script": "SCRIPTS/strategic-compact.mjs" }
],
"post-tool-use": [
{ "name": "Console Log Guard", "script": "SCRIPTS/console-log-guard.mjs" },
{ "name": "Prettier Format", "script": "SCRIPTS/prettier-format.mjs" },
{ "name": "PR Creation Log", "script": "SCRIPTS/pr-creation-log.mjs" }
],
"pre-compact": [
{ "name": "Pre-Compact Commit", "script": "SCRIPTS/pre-compact-commit.mjs" }
],
"stop": [
{ "name": "Console Log Check", "script": "SCRIPTS/console-log-check.mjs" },
{ "name": "Memory Save", "script": "SCRIPTS/memory-session-end.mjs" }
]
}
}