create-sessions-dir 0.3.5 → 0.3.6

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/README.md CHANGED
@@ -65,7 +65,7 @@ Claude reads your context and asks what you want to work on. You can provide a G
65
65
  ```
66
66
  /end-session
67
67
  ```
68
- Claude updates your context with what happened. If you referenced PRs (like #123) and they're merged, Claude will offer to archive automatically. Then commits the changes.
68
+ Claude updates your context with session accomplishments and commits the changes.
69
69
 
70
70
  ### Plan Implementation
71
71
  ```
@@ -85,6 +85,8 @@ Claude launches an exploration agent to understand the topic, then creates docum
85
85
  ```
86
86
  Claude moves finished work to the archive to keep your context file clean.
87
87
 
88
+ **Automatic Prompts**: After merging to main, a git hook automatically prompts whether to archive completed sessions - archiving happens at the right moment without manual tracking.
89
+
88
90
  ### Change Git Strategy
89
91
  ```
90
92
  /change-git-strategy
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sessions-dir",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Scaffold a Sessions Directory for working with AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -87,6 +87,8 @@ Updates your session context with what happened. Claude will:
87
87
  - Set next session priorities
88
88
  - Commit the changes
89
89
 
90
+ **Note**: Archiving is prompted automatically by a git hook after merging to main - you don't need to manually track when to archive.
91
+
90
92
  ### `/document <topic>`
91
93
  Creates topic-specific documentation as your project grows. Claude will:
92
94
  - Create `.sessions/docs/` folder (first time only)
@@ -101,6 +103,8 @@ Archives completed work to keep your context file clean. Claude will:
101
103
  - Move finished notes to `.sessions/archive/`
102
104
  - Clean up completed items from index.md
103
105
 
106
+ **When to archive**: A git hook automatically prompts you after merging to main. This ensures archiving happens at the right moment (when work is complete and merged) without manual tracking.
107
+
104
108
  ---
105
109
 
106
110
  ## Conversational Prompts