exiftool-vendored 35.9.0 → 35.10.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/CHANGELOG.md CHANGED
@@ -35,11 +35,15 @@ vendored versions of ExifTool match the version that they vendor.
35
35
 
36
36
  ## History
37
37
 
38
- ### v35.8.0
38
+ ### v35.10.0
39
+
40
+ - 🌱 Upgraded ExifTool to version [13.51](https://exiftool.org/history.html#13.51).
39
41
 
40
- - 🌱 Upgraded ExifTool to version [150](https://exiftool.org/history.html#13.50).
42
+ ### v35.9.0
41
43
 
42
- ### v35.7.1
44
+ - 🌱 Upgraded ExifTool to version [13.50](https://exiftool.org/history.html#13.50).
45
+
46
+ ### v35.8.0
43
47
 
44
48
  - 📦 Pull in new [batch-cluster](https://github.com/photostructure/batch-cluster.js/releases/tag/v17.3.0), and run the new `findStreamFlushMillis()` on linux and windows. After examining ExifTool code, he always force-flushes stderr before emitting `{ready}` -- so we're updating the default for `streamFlushMillis` to `1`.
45
49
 
package/claude.sh ADDED
@@ -0,0 +1,32 @@
1
+ #!/bin/bash
2
+
3
+ # Claude Code wrapper: injects project TPP instructions into system prompt
4
+ #
5
+ # Details: https://photostructure.com/coding/claude-code-tpp/
6
+ #
7
+ # Setup: Add to ~/.bashrc, ~/.bash_aliases, or ~/.zshrc:
8
+ #
9
+ # claude() {
10
+ # if [ -f "./claude.sh" ]; then ./claude.sh "$@"; else command claude "$@"; fi
11
+ # }
12
+
13
+ echo "Adding project system prompt..."
14
+
15
+ DATE=$(date +%Y-%m-%d)
16
+
17
+ command claude --append-system-prompt "$(
18
+ cat ~/.claude/CLAUDE.md 2>/dev/null || true
19
+ echo "- Current date: $DATE"
20
+ cat <<'SYSTEM'
21
+
22
+ This project uses Technical Project Plans in _todo/*.md to share research,
23
+ design decisions, and next steps between sessions.
24
+
25
+ When exiting plan mode, write or update the relevant TPP using /handoff.
26
+
27
+ When context runs low while working on a TPP, run /handoff immediately.
28
+
29
+ Check _todo/ for existing TPPs before starting new work.
30
+
31
+ SYSTEM
32
+ )" "$@"