claude-code-sync 0.1.11 → 0.1.12

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.
Files changed (2) hide show
  1. package/README.md +26 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -92,6 +92,32 @@ Ready! Start Claude Code and sessions will sync automatically.
92
92
 
93
93
  Sessions will now sync automatically when you use Claude Code.
94
94
 
95
+ ## Upgrading
96
+
97
+ To upgrade to the latest version:
98
+
99
+ ```bash
100
+ # Close Claude Code first (important for hooks to reload)
101
+ # Then upgrade the package
102
+ npm update -g claude-code-sync
103
+
104
+ # Verify the new version
105
+ claude-code-sync --version
106
+
107
+ # Check your configuration is still valid
108
+ claude-code-sync verify
109
+ ```
110
+
111
+ If you encounter issues after upgrading:
112
+
113
+ ```bash
114
+ # Re-run setup to ensure hooks are configured
115
+ claude-code-sync setup
116
+
117
+ # Test connectivity
118
+ claude-code-sync synctest
119
+ ```
120
+
95
121
  ## CLI Commands
96
122
 
97
123
  | Command | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-sync",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Sync your Claude Code sessions to OpenSync dashboard. Track coding sessions, analyze tool usage, and monitor token consumption across projects.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",