@codyswann/lisa 1.37.0 → 1.39.0
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/all/copy-overwrite/.claude/README.md +11 -5
- package/all/copy-overwrite/.claude/agents/agent-architect.md +0 -1
- package/all/copy-overwrite/.claude/agents/{architecture-planner.md → architecture-specialist.md} +7 -12
- package/all/copy-overwrite/.claude/agents/debug-specialist.md +204 -0
- package/all/copy-overwrite/.claude/agents/implementer.md +35 -23
- package/all/copy-overwrite/.claude/agents/learner.md +0 -1
- package/all/copy-overwrite/.claude/agents/performance-specialist.md +95 -0
- package/all/copy-overwrite/.claude/agents/{product-planner.md → product-specialist.md} +19 -14
- package/all/copy-overwrite/.claude/agents/{tech-reviewer.md → quality-specialist.md} +9 -11
- package/all/copy-overwrite/.claude/agents/{security-planner.md → security-specialist.md} +8 -13
- package/all/copy-overwrite/.claude/agents/{test-strategist.md → test-specialist.md} +20 -15
- package/all/copy-overwrite/.claude/agents/verification-specialist.md +189 -0
- package/all/copy-overwrite/.claude/commands/plan/create.md +1 -1
- package/all/copy-overwrite/.claude/commands/plan/execute.md +7 -0
- package/all/copy-overwrite/.claude/hooks/README.md +2 -2
- package/all/copy-overwrite/.claude/hooks/setup-jira-cli.sh +2 -2
- package/all/copy-overwrite/.claude/hooks/sync-tasks.sh +3 -0
- package/all/copy-overwrite/.claude/hooks/ticket-sync-reminder.sh +3 -0
- package/all/copy-overwrite/.claude/hooks/track-plan-sessions.sh +3 -0
- package/all/copy-overwrite/.claude/rules/lisa.md +2 -4
- package/all/copy-overwrite/.claude/rules/verfication.md +104 -1
- package/all/copy-overwrite/.claude/settings.json +219 -26
- package/all/copy-overwrite/.claude/skills/agent-design-best-practices/SKILL.md +219 -0
- package/all/copy-overwrite/.claude/skills/plan-add-test-coverage/SKILL.md +1 -1
- package/all/copy-overwrite/.claude/skills/plan-execute/SKILL.md +89 -0
- package/all/copy-overwrite/.claude/skills/plan-fix-linter-error/SKILL.md +1 -1
- package/all/copy-overwrite/.claude/skills/plan-lower-code-complexity/SKILL.md +1 -1
- package/all/copy-overwrite/.claude/skills/plan-reduce-max-lines/SKILL.md +1 -1
- package/all/copy-overwrite/.claude/skills/plan-reduce-max-lines-per-function/SKILL.md +1 -1
- package/all/copy-overwrite/CLAUDE.md +1 -0
- package/all/copy-overwrite/README.md +6 -2
- package/dist/utils/fibonacci.d.ts +30 -22
- package/dist/utils/fibonacci.d.ts.map +1 -1
- package/dist/utils/fibonacci.js +40 -34
- package/dist/utils/fibonacci.js.map +1 -1
- package/package.json +1 -1
- package/rails/copy-overwrite/.claude/rules/lisa.md +5 -1
- package/rails/copy-overwrite/.claude/skills/action-controller-best-practices/SKILL.md +374 -0
- package/rails/copy-overwrite/.claude/skills/action-view-best-practices/SKILL.md +335 -0
- package/rails/copy-overwrite/.claude/skills/active-record-model-best-practices/SKILL.md +166 -0
- package/rails/copy-overwrite/.claude/skills/plan-add-test-coverage/SKILL.md +1 -1
- package/rails/copy-overwrite/.claude/skills/plan-fix-linter-error/SKILL.md +1 -1
- package/rails/copy-overwrite/.claude/skills/plan-lower-code-complexity/SKILL.md +1 -1
- package/rails/copy-overwrite/.claude/skills/plan-reduce-max-lines/SKILL.md +1 -1
- package/rails/copy-overwrite/.claude/skills/plan-reduce-max-lines-per-function/SKILL.md +1 -1
- package/rails/copy-overwrite/.versionrc +48 -0
- package/rails/copy-overwrite/CLAUDE.md +1 -0
- package/rails/copy-overwrite/config/initializers/version.rb +5 -0
- package/rails/create-only/.github/workflows/quality.yml +22 -1
- package/rails/create-only/.github/workflows/release.yml +94 -0
- package/rails/create-only/.reek.yml +3 -0
- package/rails/create-only/.rubocop.local.yml +17 -4
- package/rails/create-only/VERSION +1 -0
- package/typescript/copy-contents/.husky/pre-push +1 -5
- package/typescript/copy-overwrite/.claude/settings.json +112 -78
- package/typescript/copy-overwrite/.github/workflows/quality.yml +1 -5
- package/all/copy-overwrite/.claude/REFERENCE.md +0 -519
- package/all/copy-overwrite/.claude/agents/codebase-analyzer.md +0 -146
- package/all/copy-overwrite/.claude/agents/codebase-locator.md +0 -125
- package/all/copy-overwrite/.claude/agents/codebase-pattern-finder.md +0 -237
- package/all/copy-overwrite/.claude/agents/consistency-checker.md +0 -58
- package/all/copy-overwrite/.claude/agents/product-reviewer.md +0 -47
- package/all/copy-overwrite/.claude/agents/spec-analyst.md +0 -41
- package/all/copy-overwrite/.claude/agents/test-coverage-agent.md +0 -17
- package/all/copy-overwrite/.claude/commands/plan/implement.md +0 -6
- package/all/copy-overwrite/.claude/rules/plan-governance.md +0 -96
- package/all/copy-overwrite/.claude/rules/plan.md +0 -79
- package/all/copy-overwrite/.claude/skills/plan-create/SKILL.md +0 -238
- package/all/copy-overwrite/.claude/skills/plan-implement/SKILL.md +0 -114
- /package/typescript/copy-overwrite/.claude/hooks/{install_pkgs.sh → install-pkgs.sh} +0 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main, staging]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
release:
|
|
13
|
+
name: Release
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: webfactory/ssh-agent@v0.9.0
|
|
17
|
+
with:
|
|
18
|
+
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
|
|
19
|
+
|
|
20
|
+
- uses: actions/checkout@v4
|
|
21
|
+
with:
|
|
22
|
+
fetch-depth: 0
|
|
23
|
+
ssh-key: ${{ secrets.DEPLOY_KEY }}
|
|
24
|
+
|
|
25
|
+
- name: Check for skip conditions
|
|
26
|
+
id: skip
|
|
27
|
+
run: |
|
|
28
|
+
COMMIT_MSG=$(git log -1 --pretty=%B)
|
|
29
|
+
|
|
30
|
+
# Skip if last commit is a version bump
|
|
31
|
+
if echo "$COMMIT_MSG" | grep -q "^chore(release):"; then
|
|
32
|
+
echo "skip=true" >> $GITHUB_OUTPUT
|
|
33
|
+
exit 0
|
|
34
|
+
fi
|
|
35
|
+
|
|
36
|
+
# Skip promotion merges (environment branch → main) only on main
|
|
37
|
+
if [ "$GITHUB_REF_NAME" = "main" ]; then
|
|
38
|
+
ENV_BRANCHES="dev|staging"
|
|
39
|
+
|
|
40
|
+
# Message-based detection: merge commits
|
|
41
|
+
# Pattern: "Merge branch 'staging' into main"
|
|
42
|
+
if echo "$COMMIT_MSG" | grep -qiE "^Merge branch ['\"]?($ENV_BRANCHES)['\"]? into"; then
|
|
43
|
+
echo "skip=true" >> $GITHUB_OUTPUT
|
|
44
|
+
exit 0
|
|
45
|
+
fi
|
|
46
|
+
|
|
47
|
+
# Pattern: "Merge pull request #123 from org/staging"
|
|
48
|
+
if echo "$COMMIT_MSG" | grep -qiE "^Merge pull request.*from .*/($ENV_BRANCHES)$"; then
|
|
49
|
+
echo "skip=true" >> $GITHUB_OUTPUT
|
|
50
|
+
exit 0
|
|
51
|
+
fi
|
|
52
|
+
|
|
53
|
+
# Git-based detection: squash/fast-forward promotions
|
|
54
|
+
for ENV_BRANCH in dev staging; do
|
|
55
|
+
git fetch origin "$ENV_BRANCH" 2>/dev/null || continue
|
|
56
|
+
if git merge-base --is-ancestor HEAD "origin/$ENV_BRANCH" 2>/dev/null; then
|
|
57
|
+
echo "skip=true" >> $GITHUB_OUTPUT
|
|
58
|
+
exit 0
|
|
59
|
+
fi
|
|
60
|
+
done
|
|
61
|
+
fi
|
|
62
|
+
|
|
63
|
+
echo "skip=false" >> $GITHUB_OUTPUT
|
|
64
|
+
|
|
65
|
+
- uses: actions/setup-node@v4
|
|
66
|
+
if: steps.skip.outputs.skip != 'true'
|
|
67
|
+
with:
|
|
68
|
+
node-version: '22'
|
|
69
|
+
|
|
70
|
+
- name: Configure Git
|
|
71
|
+
if: steps.skip.outputs.skip != 'true'
|
|
72
|
+
run: |
|
|
73
|
+
git config user.name "github-actions[bot]"
|
|
74
|
+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
75
|
+
|
|
76
|
+
- name: Bump version and create tag
|
|
77
|
+
if: steps.skip.outputs.skip != 'true'
|
|
78
|
+
run: npx standard-version@9
|
|
79
|
+
|
|
80
|
+
- name: Push changes
|
|
81
|
+
if: steps.skip.outputs.skip != 'true'
|
|
82
|
+
run: |
|
|
83
|
+
git remote set-url origin git@github.com:${{ github.repository }}.git
|
|
84
|
+
git push --follow-tags origin ${{ github.ref_name }}
|
|
85
|
+
|
|
86
|
+
- name: Create GitHub Release
|
|
87
|
+
if: steps.skip.outputs.skip != 'true' && github.ref_name == 'main'
|
|
88
|
+
env:
|
|
89
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
90
|
+
run: |
|
|
91
|
+
VERSION=$(cat VERSION)
|
|
92
|
+
gh release create "v${VERSION}" \
|
|
93
|
+
--title "v${VERSION}" \
|
|
94
|
+
--generate-notes
|
|
@@ -2,8 +2,21 @@
|
|
|
2
2
|
# This file is NOT managed by Lisa — edit freely.
|
|
3
3
|
# Add or override any RuboCop cops below.
|
|
4
4
|
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# Align with Reek's UncommunicativeVariableName (which rejects single-char names)
|
|
6
|
+
Naming/RescuedExceptionsVariableName:
|
|
7
|
+
PreferredName: error
|
|
8
|
+
|
|
9
|
+
# Add staging to known environments if your app uses a staging Rails env
|
|
10
|
+
# Rails/UnknownEnv:
|
|
11
|
+
# Environments:
|
|
12
|
+
# - development
|
|
13
|
+
# - test
|
|
14
|
+
# - staging
|
|
15
|
+
# - production
|
|
16
|
+
|
|
17
|
+
# Auto-generated schema files can exceed block length limits
|
|
18
|
+
# Metrics/BlockLength:
|
|
8
19
|
# Exclude:
|
|
9
|
-
# - '
|
|
20
|
+
# - 'db/queue_schema.rb'
|
|
21
|
+
# - 'db/cable_schema.rb'
|
|
22
|
+
# - 'db/cache_schema.rb'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.1
|
|
@@ -85,11 +85,7 @@ elif [ "$PACKAGE_MANAGER" = "bun" ]; then
|
|
|
85
85
|
# Parent packages pin ^4.4.1; fix requires major version 5.x (incompatible)
|
|
86
86
|
# Risk: None - CLI build tool, not a production runtime dependency
|
|
87
87
|
|
|
88
|
-
|
|
89
|
-
# Transitive dependency via aws-amplify > @aws-amplify/api-rest > axios
|
|
90
|
-
# bun overrides/resolutions cannot reach nested node_modules copies
|
|
91
|
-
# Risk: Low - only affects server-side mergeConfig with attacker-controlled input
|
|
92
|
-
if ! bun audit --audit-level=high --ignore GHSA-5j98-mcp5-4vw2 --ignore GHSA-8qq5-rm4j-mr97 --ignore GHSA-37qj-frw5-hhjh --ignore GHSA-43fc-jf86-j433; then
|
|
88
|
+
if ! bun audit --audit-level=high --ignore GHSA-5j98-mcp5-4vw2 --ignore GHSA-8qq5-rm4j-mr97 --ignore GHSA-37qj-frw5-hhjh; then
|
|
93
89
|
echo "⚠️ Security audit failed. Please fix high/critical vulnerabilities before pushing."
|
|
94
90
|
exit 1
|
|
95
91
|
fi
|
|
@@ -1,13 +1,31 @@
|
|
|
1
1
|
{
|
|
2
|
+
"attribution": {
|
|
3
|
+
"commit": "🤖 Generated with Claude Code\n\nCo-Authored-By: Claude",
|
|
4
|
+
"pr": "🤖 Generated with Claude Code"
|
|
5
|
+
},
|
|
6
|
+
"enabledPlugins": {
|
|
7
|
+
"typescript-lsp@claude-plugins-official": true,
|
|
8
|
+
"safety-net@cc-marketplace": true,
|
|
9
|
+
"code-simplifier@claude-plugins-official": true,
|
|
10
|
+
"code-review@claude-plugins-official": true,
|
|
11
|
+
"playwright@claude-plugins-official": true,
|
|
12
|
+
"coderabbit@claude-plugins-official": true
|
|
13
|
+
},
|
|
14
|
+
"env": {
|
|
15
|
+
"BASH_DEFAULT_TIMEOUT_MS": "1800000",
|
|
16
|
+
"BASH_MAX_TIMEOUT_MS": "7200000",
|
|
17
|
+
"CLAUDE_DEBUG": "0",
|
|
18
|
+
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
|
|
19
|
+
},
|
|
2
20
|
"hooks": {
|
|
3
|
-
"
|
|
21
|
+
"Notification": [
|
|
4
22
|
{
|
|
5
|
-
"matcher": "",
|
|
23
|
+
"matcher": "permission_prompt|idle_prompt",
|
|
6
24
|
"hooks": [
|
|
7
25
|
{
|
|
8
26
|
"type": "command",
|
|
9
|
-
"command": "
|
|
10
|
-
"timeout":
|
|
27
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/notify-ntfy.sh",
|
|
28
|
+
"timeout": 5
|
|
11
29
|
}
|
|
12
30
|
]
|
|
13
31
|
},
|
|
@@ -16,11 +34,13 @@
|
|
|
16
34
|
"hooks": [
|
|
17
35
|
{
|
|
18
36
|
"type": "command",
|
|
19
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/
|
|
37
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh",
|
|
20
38
|
"timeout": 5
|
|
21
39
|
}
|
|
22
40
|
]
|
|
23
|
-
}
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"PermissionRequest": [
|
|
24
44
|
{
|
|
25
45
|
"matcher": "",
|
|
26
46
|
"hooks": [
|
|
@@ -32,24 +52,26 @@
|
|
|
32
52
|
]
|
|
33
53
|
}
|
|
34
54
|
],
|
|
35
|
-
"
|
|
55
|
+
"PostToolUse": [
|
|
36
56
|
{
|
|
37
|
-
"matcher": "
|
|
57
|
+
"matcher": "Write|Edit",
|
|
38
58
|
"hooks": [
|
|
39
59
|
{
|
|
40
60
|
"type": "command",
|
|
41
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/
|
|
42
|
-
|
|
61
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/format-on-edit.sh"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": "command",
|
|
65
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/sg-scan-on-edit.sh"
|
|
43
66
|
}
|
|
44
67
|
]
|
|
45
68
|
},
|
|
46
69
|
{
|
|
47
|
-
"matcher": "",
|
|
70
|
+
"matcher": "TaskCreate|TaskUpdate",
|
|
48
71
|
"hooks": [
|
|
49
72
|
{
|
|
50
73
|
"type": "command",
|
|
51
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/
|
|
52
|
-
"timeout": 5
|
|
74
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/sync-tasks.sh"
|
|
53
75
|
}
|
|
54
76
|
]
|
|
55
77
|
},
|
|
@@ -58,13 +80,30 @@
|
|
|
58
80
|
"hooks": [
|
|
59
81
|
{
|
|
60
82
|
"type": "command",
|
|
61
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
62
|
-
|
|
83
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"matcher": "Task",
|
|
89
|
+
"hooks": [
|
|
90
|
+
{
|
|
91
|
+
"type": "command",
|
|
92
|
+
"command": "command -v entire >/dev/null 2>&1 && entire hooks claude-code post-task || true"
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"matcher": "TodoWrite",
|
|
98
|
+
"hooks": [
|
|
99
|
+
{
|
|
100
|
+
"type": "command",
|
|
101
|
+
"command": "command -v entire >/dev/null 2>&1 && entire hooks claude-code post-todo || true"
|
|
63
102
|
}
|
|
64
103
|
]
|
|
65
104
|
}
|
|
66
105
|
],
|
|
67
|
-
"
|
|
106
|
+
"PostToolUseFailure": [
|
|
68
107
|
{
|
|
69
108
|
"matcher": "",
|
|
70
109
|
"hooks": [
|
|
@@ -76,7 +115,7 @@
|
|
|
76
115
|
]
|
|
77
116
|
}
|
|
78
117
|
],
|
|
79
|
-
"
|
|
118
|
+
"PreCompact": [
|
|
80
119
|
{
|
|
81
120
|
"matcher": "",
|
|
82
121
|
"hooks": [
|
|
@@ -94,35 +133,42 @@
|
|
|
94
133
|
"hooks": [
|
|
95
134
|
{
|
|
96
135
|
"type": "command",
|
|
97
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
98
|
-
|
|
136
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"matcher": "Task",
|
|
142
|
+
"hooks": [
|
|
143
|
+
{
|
|
144
|
+
"type": "command",
|
|
145
|
+
"command": "command -v entire >/dev/null 2>&1 && entire hooks claude-code pre-task || true"
|
|
99
146
|
}
|
|
100
147
|
]
|
|
101
148
|
}
|
|
102
149
|
],
|
|
103
|
-
"
|
|
150
|
+
"SessionEnd": [
|
|
104
151
|
{
|
|
105
|
-
"matcher": "
|
|
152
|
+
"matcher": "",
|
|
106
153
|
"hooks": [
|
|
107
154
|
{
|
|
108
155
|
"type": "command",
|
|
109
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/
|
|
110
|
-
"timeout": 10
|
|
156
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
111
157
|
},
|
|
112
158
|
{
|
|
113
159
|
"type": "command",
|
|
114
|
-
"command": "
|
|
115
|
-
"timeout": 30
|
|
160
|
+
"command": "command -v entire >/dev/null 2>&1 && entire hooks claude-code session-end || true"
|
|
116
161
|
}
|
|
117
162
|
]
|
|
118
|
-
}
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"SessionStart": [
|
|
119
166
|
{
|
|
120
|
-
"matcher": "
|
|
167
|
+
"matcher": "startup",
|
|
121
168
|
"hooks": [
|
|
122
169
|
{
|
|
123
170
|
"type": "command",
|
|
124
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/
|
|
125
|
-
"timeout": 10
|
|
171
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/install-pkgs.sh"
|
|
126
172
|
}
|
|
127
173
|
]
|
|
128
174
|
},
|
|
@@ -131,25 +177,25 @@
|
|
|
131
177
|
"hooks": [
|
|
132
178
|
{
|
|
133
179
|
"type": "command",
|
|
134
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/
|
|
135
|
-
|
|
180
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/setup-jira-cli.sh"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"type": "command",
|
|
184
|
+
"command": "command -v entire >/dev/null 2>&1 && entire hooks claude-code session-start || true"
|
|
136
185
|
}
|
|
137
186
|
]
|
|
138
|
-
}
|
|
139
|
-
],
|
|
140
|
-
"PostToolUseFailure": [
|
|
187
|
+
},
|
|
141
188
|
{
|
|
142
189
|
"matcher": "",
|
|
143
190
|
"hooks": [
|
|
144
191
|
{
|
|
145
192
|
"type": "command",
|
|
146
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
147
|
-
"timeout": 5
|
|
193
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
148
194
|
}
|
|
149
195
|
]
|
|
150
196
|
}
|
|
151
197
|
],
|
|
152
|
-
"
|
|
198
|
+
"Setup": [
|
|
153
199
|
{
|
|
154
200
|
"matcher": "",
|
|
155
201
|
"hooks": [
|
|
@@ -161,41 +207,43 @@
|
|
|
161
207
|
]
|
|
162
208
|
}
|
|
163
209
|
],
|
|
164
|
-
"
|
|
210
|
+
"Stop": [
|
|
165
211
|
{
|
|
166
212
|
"matcher": "",
|
|
167
213
|
"hooks": [
|
|
168
214
|
{
|
|
169
215
|
"type": "command",
|
|
170
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/
|
|
171
|
-
|
|
216
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/notify-ntfy.sh"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"type": "command",
|
|
220
|
+
"command": "command -v entire >/dev/null 2>&1 && entire hooks claude-code stop || true"
|
|
172
221
|
}
|
|
173
222
|
]
|
|
174
|
-
}
|
|
175
|
-
],
|
|
176
|
-
"SubagentStop": [
|
|
223
|
+
},
|
|
177
224
|
{
|
|
178
225
|
"matcher": "",
|
|
179
226
|
"hooks": [
|
|
180
227
|
{
|
|
181
228
|
"type": "command",
|
|
182
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
183
|
-
"timeout": 5
|
|
229
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
184
230
|
}
|
|
185
231
|
]
|
|
186
232
|
}
|
|
187
233
|
],
|
|
188
|
-
"
|
|
234
|
+
"SubagentStart": [
|
|
189
235
|
{
|
|
190
|
-
"matcher": "
|
|
236
|
+
"matcher": "",
|
|
191
237
|
"hooks": [
|
|
192
238
|
{
|
|
193
239
|
"type": "command",
|
|
194
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/
|
|
240
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh",
|
|
195
241
|
"timeout": 5
|
|
196
242
|
}
|
|
197
243
|
]
|
|
198
|
-
}
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"SubagentStop": [
|
|
199
247
|
{
|
|
200
248
|
"matcher": "",
|
|
201
249
|
"hooks": [
|
|
@@ -207,14 +255,17 @@
|
|
|
207
255
|
]
|
|
208
256
|
}
|
|
209
257
|
],
|
|
210
|
-
"
|
|
258
|
+
"UserPromptSubmit": [
|
|
211
259
|
{
|
|
212
260
|
"matcher": "",
|
|
213
261
|
"hooks": [
|
|
214
262
|
{
|
|
215
263
|
"type": "command",
|
|
216
|
-
"command": "
|
|
217
|
-
|
|
264
|
+
"command": "echo 'REMINDER: Start your response with \"I'\\''m tired boss\" as required by CLAUDE.md.'"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"type": "command",
|
|
268
|
+
"command": "command -v entire >/dev/null 2>&1 && entire hooks claude-code user-prompt-submit || true"
|
|
218
269
|
}
|
|
219
270
|
]
|
|
220
271
|
},
|
|
@@ -223,42 +274,25 @@
|
|
|
223
274
|
"hooks": [
|
|
224
275
|
{
|
|
225
276
|
"type": "command",
|
|
226
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/
|
|
227
|
-
"timeout": 5
|
|
277
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/enforce-plan-rules.sh"
|
|
228
278
|
}
|
|
229
279
|
]
|
|
230
|
-
}
|
|
231
|
-
],
|
|
232
|
-
"PreCompact": [
|
|
280
|
+
},
|
|
233
281
|
{
|
|
234
282
|
"matcher": "",
|
|
235
283
|
"hooks": [
|
|
236
284
|
{
|
|
237
285
|
"type": "command",
|
|
238
|
-
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
239
|
-
"timeout": 5
|
|
286
|
+
"command": "$CLAUDE_PROJECT_DIR/.claude/hooks/debug-hook.sh"
|
|
240
287
|
}
|
|
241
288
|
]
|
|
242
289
|
}
|
|
243
290
|
]
|
|
244
291
|
},
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
|
|
250
|
-
},
|
|
251
|
-
"attribution": {
|
|
252
|
-
"commit": "🤖 Generated with Claude Code\n\nCo-Authored-By: Claude",
|
|
253
|
-
"pr": "🤖 Generated with Claude Code"
|
|
292
|
+
"permissions": {
|
|
293
|
+
"deny": [
|
|
294
|
+
"Read(./.entire/metadata/**)"
|
|
295
|
+
]
|
|
254
296
|
},
|
|
255
|
-
"plansDirectory": "./plans"
|
|
256
|
-
|
|
257
|
-
"typescript-lsp@claude-plugins-official": true,
|
|
258
|
-
"safety-net@cc-marketplace": true,
|
|
259
|
-
"code-simplifier@claude-plugins-official": true,
|
|
260
|
-
"code-review@claude-plugins-official": true,
|
|
261
|
-
"playwright@claude-plugins-official": true,
|
|
262
|
-
"coderabbit@claude-plugins-official": true
|
|
263
|
-
}
|
|
264
|
-
}
|
|
297
|
+
"plansDirectory": "./plans"
|
|
298
|
+
}
|
|
@@ -1015,11 +1015,7 @@ jobs:
|
|
|
1015
1015
|
# Parent packages pin ^4.4.1; fix requires major version 5.x (incompatible)
|
|
1016
1016
|
# Risk: None - CLI build tool, not a production runtime dependency
|
|
1017
1017
|
|
|
1018
|
-
|
|
1019
|
-
# Transitive dependency via aws-amplify > @aws-amplify/api-rest > axios
|
|
1020
|
-
# bun overrides/resolutions cannot reach nested node_modules copies
|
|
1021
|
-
# Risk: Low - only affects server-side mergeConfig with attacker-controlled input
|
|
1022
|
-
if ! bun audit --audit-level=high --ignore GHSA-5j98-mcp5-4vw2 --ignore GHSA-8qq5-rm4j-mr97 --ignore GHSA-37qj-frw5-hhjh --ignore GHSA-43fc-jf86-j433; then
|
|
1018
|
+
if ! bun audit --audit-level=high --ignore GHSA-5j98-mcp5-4vw2 --ignore GHSA-8qq5-rm4j-mr97 --ignore GHSA-37qj-frw5-hhjh; then
|
|
1023
1019
|
echo "::warning::Found high or critical vulnerabilities"
|
|
1024
1020
|
exit 1
|
|
1025
1021
|
fi
|