@leeovery/claude-technical-workflows 2.0.13 → 2.0.14

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.
@@ -36,8 +36,9 @@ Scan the codebase for research and discussions:
36
36
  - If it exists, read it to get the stored checksum from the frontmatter
37
37
 
38
38
  5. **Compute current research checksum** (if research files exist):
39
- - Run: `cat $(ls docs/workflow/research/*.md | sort) 2>/dev/null | md5sum | cut -d' ' -f1`
40
- - This creates a combined checksum of all research files (sorted alphabetically)
39
+ - Run exactly: `cat docs/workflow/research/*.md 2>/dev/null | md5sum | cut -d' ' -f1`
40
+ - IMPORTANT: Use this exact command - glob expansion is alphabetically sorted by default
41
+ - Do NOT modify or "simplify" this command - checksum must be deterministic
41
42
  - Store this value to compare with the cached checksum
42
43
 
43
44
  ## Step 2: Present Workflow State and Options
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.0.13",
3
+ "version": "2.0.14",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",