@lucasschirm/claude-session-sync 0.2.1 → 0.2.2
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/.claude-plugin/plugin.json +1 -1
- package/README.md +36 -2
- package/bin/claude-sync +99 -72
- package/bin/hook +27 -27
- package/bin/session-end +29 -29
- package/bin/session-start +27 -27
- package/bin/transcript-watcher +23 -23
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -197,13 +197,37 @@ From the project directory, the CLI:
|
|
|
197
197
|
|
|
198
198
|
#### `list`
|
|
199
199
|
|
|
200
|
-
List
|
|
200
|
+
List objects in the configured storage. Supports five forms:
|
|
201
201
|
|
|
202
202
|
```bash
|
|
203
|
+
# List all projects in storage
|
|
203
204
|
claude-sync list
|
|
205
|
+
|
|
206
|
+
# List sessions for the current project (requires SAL_PROJECT_ID)
|
|
207
|
+
claude-sync list --current
|
|
208
|
+
|
|
209
|
+
# List sessions for a specific project
|
|
210
|
+
claude-sync list <project-id>
|
|
211
|
+
|
|
212
|
+
# List files in a session
|
|
213
|
+
claude-sync list <project-id> --session=<session-id>
|
|
214
|
+
|
|
215
|
+
# List files under a session sub-path
|
|
216
|
+
claude-sync list <project-id> --session=<session-id> --path=<path>
|
|
204
217
|
```
|
|
205
218
|
|
|
206
|
-
|
|
219
|
+
`--path` is relative to the session folder. For example, `--path=session` lists all files under the `session/` scope, and `--path=session/configs` lists files under that sub-path.
|
|
220
|
+
|
|
221
|
+
Examples:
|
|
222
|
+
|
|
223
|
+
```
|
|
224
|
+
PROJECT ID SESSIONS FILES SIZE LAST MODIFIED
|
|
225
|
+
-------------------------------------------------------------------------
|
|
226
|
+
session-analyzer 12 410 84.3 MB 2026-08-18 19:36
|
|
227
|
+
my-other-project 3 18 2.1 MB 2026-08-17 10:11
|
|
228
|
+
|
|
229
|
+
2 project(s), 410 files, 86.4 MB total
|
|
230
|
+
```
|
|
207
231
|
|
|
208
232
|
```
|
|
209
233
|
SESSION ID FILES SIZE LAST MODIFIED
|
|
@@ -214,6 +238,16 @@ test-summary-001 8 119.6 KB 2026-08-18 19:35
|
|
|
214
238
|
2 session(s), 51 files, 21.2 MB total
|
|
215
239
|
```
|
|
216
240
|
|
|
241
|
+
```
|
|
242
|
+
KEY SIZE LAST MODIFIED
|
|
243
|
+
-------------------------------------------------------------------------
|
|
244
|
+
manifest.json 2.4 KB 2026-08-18 19:36
|
|
245
|
+
session/transcript.jsonl 1.1 MB 2026-08-18 19:36
|
|
246
|
+
workspace/package.json 3.2 KB 2026-08-18 19:35
|
|
247
|
+
|
|
248
|
+
3 file(s), 1.1 MB total
|
|
249
|
+
```
|
|
250
|
+
|
|
217
251
|
#### `download`
|
|
218
252
|
|
|
219
253
|
Download session files from S3 to a local directory.
|