shared-things-daemon 1.0.5 → 2.0.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/README.md +12 -8
- package/dist/cli.js +1024 -405
- package/package.json +6 -2
- package/scripts/postinstall.js +76 -0
package/README.md
CHANGED
|
@@ -54,12 +54,14 @@ shared-things init
|
|
|
54
54
|
? Things auth token: ****
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
+
> **Note:** The Things project must be empty when you run `init`.
|
|
58
|
+
|
|
57
59
|
> **Things auth token:** Required for syncing updates to existing todos. Find it in Things → Settings → General → Things URLs → Enable Things URLs.
|
|
58
60
|
|
|
59
61
|
### After Setup
|
|
60
62
|
|
|
61
63
|
```bash
|
|
62
|
-
shared-things
|
|
64
|
+
shared-things start # Start daemon (auto-runs on login)
|
|
63
65
|
shared-things status # Check sync status
|
|
64
66
|
shared-things logs -f # Follow sync logs
|
|
65
67
|
```
|
|
@@ -69,13 +71,16 @@ shared-things logs -f # Follow sync logs
|
|
|
69
71
|
| Command | Description |
|
|
70
72
|
|---------|-------------|
|
|
71
73
|
| `init` | Setup wizard |
|
|
72
|
-
| `
|
|
73
|
-
| `
|
|
74
|
+
| `start` | Start launchd daemon (auto-starts on login) |
|
|
75
|
+
| `stop` | Stop launchd daemon |
|
|
74
76
|
| `status` | Show sync status & last sync time |
|
|
75
77
|
| `sync` | Force immediate sync |
|
|
76
78
|
| `logs [-f]` | Show logs (`-f` to follow) |
|
|
77
|
-
| `
|
|
78
|
-
| `
|
|
79
|
+
| `conflicts [--all]` | Show conflict history |
|
|
80
|
+
| `repair` | Diagnose state issues (no auto-fix) |
|
|
81
|
+
| `reset --local` | Clear local state |
|
|
82
|
+
| `reset --server` | Clear server data for this user |
|
|
83
|
+
| `doctor` | Comprehensive health check |
|
|
79
84
|
|
|
80
85
|
## Server Setup
|
|
81
86
|
|
|
@@ -143,9 +148,8 @@ things.yourdomain.com {
|
|
|
143
148
|
|
|
144
149
|
| Synced | Not Synced |
|
|
145
150
|
|--------|------------|
|
|
146
|
-
| Todo title, notes, due date, tags |
|
|
147
|
-
| Headings
|
|
148
|
-
| | Areas |
|
|
151
|
+
| Todo title, notes, due date, tags, status | Checklist items |
|
|
152
|
+
| | Headings, Areas |
|
|
149
153
|
|
|
150
154
|
> **Note:** The project must exist in each user's Things app. Only items within that project sync.
|
|
151
155
|
|