Commit Graph

67 Commits

Author SHA1 Message Date
8d416abfa0 docs: 修复备份任务记录 + 精简 TOOLS.md 2026-03-24 10:15:57 -07:00
df7cdffc13 Daily backup 2026-03-24 10:02:50 2026-03-24 10:02:50 -07:00
33f0dac248 Daily backup 2026-03-24 09:58:36 -07:00
Yanxin Lu
b2ff8effd4 calendar: fix stale docs and remove unnecessary METHOD from todo add
- Remove duplicate email rule in TOOLS.md
- Add todo mutations to sync description in TOOLS.md
- Remove METHOD:REQUEST from todo add ICS (no longer emailed)
- Update todo check description in SKILL.md
2026-03-23 14:48:05 -07:00
Yanxin Lu
ab9f7da592 calendar: remove self-notification emails (CalDAV sync replaces them)
Remove three redundant email flows since all devices sync via CalDAV:
- Auto-adding mail@luyx.org as attendee on outgoing invites
- Forwarding invites to mail@luyx.org on accept/tentative
- Emailing todos to mail@luyx.org on todo add
2026-03-23 14:27:28 -07:00
48e179c8de Daily backup 2026-03-23 10:02:47 2026-03-23 10:02:47 -07:00
Yanxin Lu
13986aa3ab cleanup: remove old reminder system and unused crontab files
Todo management now lives entirely in skills/calendar/ via VTODO + todoman.
2026-03-23 09:53:49 -07:00
Yanxin Lu
31efcffb19 calendar: fix completed field name from todoman --porcelain output 2026-03-22 16:09:45 -07:00
Yanxin Lu
4ef7b1e05b calendar: use todoman --yes flag for delete instead of piping stdin 2026-03-22 16:03:12 -07:00
Yanxin Lu
912bcf53bd calendar: fix _days_until to handle Unix timestamps from todoman --porcelain 2026-03-22 15:50:43 -07:00
Yanxin Lu
cf8158c7cc calendar: update TESTING.md with todoman verification steps 2026-03-22 15:43:18 -07:00
Yanxin Lu
261544b50a docs: update TOOLS.md and MEMORY.md for calendar+todoman migration 2026-03-22 15:02:01 -07:00
Yanxin Lu
383b33cc30 calendar: use todoman for VTODO list/complete/delete/check
Replaces custom .ics parsing with todoman CLI (--porcelain for JSON).
todo add still uses icalendar directly (needs ICS creation + email).
Updates MIGRATION.md with todoman install/config instructions.
2026-03-22 15:00:20 -07:00
Yanxin Lu
1750a0d921 calendar: add migration guide from reminder_check.py to VTODO 2026-03-22 14:39:59 -07:00
Yanxin Lu
44fbbea29b VTODO skill 2026-03-22 14:10:54 -07:00
Yanxin Lu
ceb7af543b VTODO 2026-03-22 14:10:41 -07:00
Yanxin Lu
da26f84947 Merge branch 'main' of ssh://git.luyanxin.com:8103/lyx/youlu-openclaw-workspace
merge
2026-03-20 18:59:19 -07:00
Yanxin Lu
71672b31ca email-processor: fix concurrency bugs and several other issues
- Add fcntl file locking around read-modify-write cycles on both
  decision_history.json and pending_emails.json to prevent data
  corruption from parallel processes
- Pass --page-size 500 to himalaya envelope list to avoid silently
  missing emails beyond the default first page
- Use ollama.Client(host=...) so the config.json host setting is
  actually respected
- Fall back to sender-only matching in compute_confidence when LLM
  returns no valid taxonomy tags, instead of always returning 50%
- Fix _format_address to return empty string instead of literal
  "None" or "[]" for missing address fields
2026-03-20 18:58:13 -07:00
6bea16d391 Daily backup 2026-03-19 07:00 UTC 2026-03-19 00:00:47 -07:00
Yanxin Lu
4e3c6acab6 calendar-invite: strip METHOD from ICS before CalDAV storage
CalDAV servers (Migadu) reject ICS files with METHOD:REQUEST/REPLY
as it's an iTIP email concept, not a storage property. Strip it
when saving to local calendar, for both send and reply flows.
2026-03-18 14:54:33 -07:00
Yanxin Lu
b8ba4adec5 calendar-invite: add VALARM reminder, fix terminology, remove dead code
- Add 1-day reminder (VALARM) to all sent invites
- Fix datetime.utcnow() deprecation → datetime.now(timezone.utc)
- Rename "message ID" → "envelope ID" in SKILL.md for consistency
- Remove unused _himalaya() and _himalaya_with_account() helpers
2026-03-18 14:44:08 -07:00
Yanxin Lu
765825a8d1 using MIME instead of MML 2026-03-18 14:36:29 -07:00
c4125d1145 Merge branch 'main' of ssh://luyanxin.com:8103/lyx/youlu-openclaw-workspace
merge
2026-03-18 13:40:45 -07:00
0dea793b58 calendar sync 2026-03-18 13:40:04 -07:00
Yanxin Lu
de6528335c calendar invite 2026-03-18 13:36:25 -07:00
Yanxin Lu
d35e7b1475 Merge branch 'main' of ssh://git.luyanxin.com:8103/lyx/youlu-openclaw-workspace
merge
2026-03-13 11:19:23 -07:00
Yanxin Lu
36143fcd93 Add digest command to email processor
Read-only summary of recent decisions, grouped by action with
[auto]/[user] markers. Supports --recent N for multi-day lookback.
2026-03-13 11:17:43 -07:00
65872775e3 cleanup: remove all pilates monitor references from config files 2026-03-12 11:44:34 -07:00
9448abc8ab doc: remove deleted pilates monitor from MEMORY 2026-03-12 11:42:24 -07:00
d8191c9e86 doc: mark UCLA pilates monitor as deleted 2026-03-12 11:37:58 -07:00
17435aa7e4 doc: update backup config - remove workspace_backup.sh reference 2026-03-12 09:13:01 -07:00
c4b19b7664 Update: prune pilates monitor, update reminders, sync memory files 2026-03-12 09:10:56 -07:00
Yanxin Lu
3c54098b1d Remove scan_index, use envelope_id (IMAP UID) as single identifier
scan_index created confusion for the OpenClaw agent which would
sometimes reference emails by scan_index and sometimes by envelope_id.
Since himalaya's envelope ID is an IMAP UID (stable, never recycled),
it works as the sole identifier for review commands.
2026-03-07 22:01:02 -08:00
2c00649488 updated email processor 2026-03-05 16:24:35 -08:00
Yanxin Lu
723c47bbb3 Clean up stale comments, dead code, and code quality issues
- Remove dead code: unused PENDING_FILE, _extract_domain(), sender_domain
  field, imap_uid fallback, check_unseen_only config key
- Fix stale comments: removed tag references in README and docstrings,
  top_domains -> top_senders, 1-based number -> scan_index number
- Make _extract_email_address public (used by 3 modules)
- Extract _format_address helper to deduplicate from/to parsing
- Batch pending queue disk I/O in review act/accept (load once, save once)
- Reuse cleared pending dict in scan instead of redundant disk load
- Track envelope IDs during scan loop to catch duplicates
- Fix default confidence_threshold 75 -> 85 to match config and docs
- Update get_relevant_examples default n=10 -> n=5 to match caller
- Add graceful error for --recent with non-numeric value
2026-03-05 15:28:05 -08:00
Yanxin Lu
361e983b0f Stable review indices and deduplicate tag taxonomy
Review items now get a stable scan_index assigned during scan, so
sequential review commands don't target wrong emails after earlier
items are resolved. Indices reset on each new scan.

Deduplicate tag taxonomy from 21 to 14 tags: drop invoice/payment
(covered by billing), delivery (covered by shipping), discount/marketing
(covered by promotion), and generic notification/update tags.
2026-03-05 15:02:49 -08:00
Yanxin Lu
81bc42075f steps for tag refinement 2026-03-04 15:16:39 -08:00
Yanxin Lu
eb0310fc2d Compute confidence from decision history instead of LLM 2026-03-04 15:05:44 -08:00
Yanxin Lu
64e28b55d1 Compute confidence from decision history instead of LLM 2026-03-04 14:23:50 -08:00
720f4ef1ad update 2026-03-04 10:40:12 -08:00
07bf6c4b39 daily backup: update MEMORY.md, add data/logs to .gitignore, commit uv.lock 2026-02-28 08:02:42 -08:00
Yanxin Lu
8414ea4a0f Merge branch 'main' of ssh://git.luyanxin.com:8103/lyx/youlu-openclaw-workspace
merging
2026-02-27 07:34:21 -08:00
Yanxin Lu
cf115bb48a switched to uv 2026-02-27 07:34:07 -08:00
71ec969be2 daily backup: heartbeat updates, memory, tools, ucla monitor 2026-02-27 06:19:26 -08:00
Yanxin Lu
e8c8256967 removed migration 2026-02-26 21:05:27 -08:00
Yanxin Lu
1e3faa0b20 not marking seen when push to pending 2026-02-26 20:59:55 -08:00
Yanxin Lu
b14a93866e email processor 2026-02-26 20:54:07 -08:00
c5c9be3f00 Daily backup: email logs, reminders update, remove news digest 2026-02-26 00:00:13 -08:00
7a4b88ccc2 Daily sync: email checks, reminders, and memory 2026-02-25 07:48:28 -08:00
dc2207deaa daily backup: 2026-02-24 2026-02-24 00:00:15 -08:00