synap 0.6.0 → 0.6.1
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.
|
@@ -435,6 +435,37 @@ After capture sessions, detect opportunities to group related entries:
|
|
|
435
435
|
- `synap add "[Topic] Project" --type project --tags "topic"`
|
|
436
436
|
- For each child: `synap link <child-id> <project-id> --as-parent`
|
|
437
437
|
|
|
438
|
+
### Daily Tracking Pattern
|
|
439
|
+
|
|
440
|
+
For projects requiring ongoing progress logging (standups, journals, learning logs):
|
|
441
|
+
|
|
442
|
+
| Signal | Action |
|
|
443
|
+
|--------|--------|
|
|
444
|
+
| Project mentions "daily", "track progress", "standup" | Suggest daily tracking setup |
|
|
445
|
+
| User says "I need to log progress on X" | Explain `synap log` workflow |
|
|
446
|
+
| Project has `--tags daily-tracking` | Ask for today's update |
|
|
447
|
+
|
|
448
|
+
**Daily tracking workflow:**
|
|
449
|
+
|
|
450
|
+
1. **Setup:** Create a project to track
|
|
451
|
+
```bash
|
|
452
|
+
synap add "Learn Rust" --type project --tags "learning,daily-tracking"
|
|
453
|
+
```
|
|
454
|
+
|
|
455
|
+
2. **Daily logging:** Add timestamped progress
|
|
456
|
+
```bash
|
|
457
|
+
synap log <project-id> "Completed chapter 3"
|
|
458
|
+
```
|
|
459
|
+
|
|
460
|
+
3. **Review progress:** View the log tree
|
|
461
|
+
```bash
|
|
462
|
+
synap tree <project-id>
|
|
463
|
+
```
|
|
464
|
+
|
|
465
|
+
**When to suggest:** User creates learning/progress project, mentions accountability, or asks about daily tracking.
|
|
466
|
+
|
|
467
|
+
**Do NOT auto-create** - always confirm with user first.
|
|
468
|
+
|
|
438
469
|
## Classification Rules
|
|
439
470
|
|
|
440
471
|
### Type Detection Heuristics
|