claudenv 1.0.1

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,28 @@
1
+ {
2
+ "hooks": {
3
+ "PostToolUse": [
4
+ {
5
+ "matcher": "Write",
6
+ "hooks": [
7
+ {
8
+ "type": "command",
9
+ "command": "bash -c 'FILE_PATH=$(echo $TOOL_INPUT | jq -r \".file_path // empty\"); if echo \"$FILE_PATH\" | grep -qE \"(CLAUDE\\.md|\\.claude/rules/|\\.claude/skills/)\"; then bash <%= validationScriptPath %> ; fi'",
10
+ "timeout": 30
11
+ }
12
+ ]
13
+ }
14
+ ]<% if (enableStopHook) { %>,
15
+ "Stop": [
16
+ {
17
+ "matcher": "",
18
+ "hooks": [
19
+ {
20
+ "type": "command",
21
+ "command": "bash -c 'if [ -f CLAUDE.md ]; then bash <%= validationScriptPath %> ; fi'",
22
+ "timeout": 15
23
+ }
24
+ ]
25
+ }
26
+ ]<% } %>
27
+ }
28
+ }
@@ -0,0 +1,23 @@
1
+ # Project State
2
+
3
+ > This file tracks project decisions, current focus, and known issues across Claude Code sessions.
4
+ > Update it when making significant changes. Review it at the start of each session.
5
+
6
+ ## Current Focus
7
+ <!-- What is being worked on right now -->
8
+
9
+ ## Key Decisions
10
+ <!-- Architecture and design decisions made -->
11
+ <% if (framework) { %>- Using **<%= framework %>**<% if (language) { %> with **<%= language %>**<% } %>
12
+ <% } -%>
13
+ <% if (deployment) { %>- Deploying to **<%= deployment %>**
14
+ <% } -%>
15
+ <% if (packageManager) { %>- Package manager: **<%= packageManager %>**
16
+ <% } -%>
17
+ <% if (testFramework) { %>- Testing with **<%= testFramework %>**
18
+ <% } %>
19
+ ## Known Issues
20
+ <!-- Bugs, tech debt, gotchas to be aware of -->
21
+
22
+ ## Session Notes
23
+ <!-- Updated between sessions to preserve context -->