aboutsummaryrefslogtreecommitdiff
path: root/.ai/workflows/triage-intake.org
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-23 13:02:47 -0500
committerCraig Jennings <c@cjennings.net>2026-05-23 13:02:47 -0500
commit3f802eb819bc9be572b230ac1bd142b7ce13d87f (patch)
tree60be68db7167d064669c608cfb8402812eeae5c2 /.ai/workflows/triage-intake.org
parent7f2aea1e022c93f3eb463e5222bdb0d8ae6288b9 (diff)
downloadrulesets-3f802eb819bc9be572b230ac1bd142b7ce13d87f.tar.gz
rulesets-3f802eb819bc9be572b230ac1bd142b7ce13d87f.zip
chore(ai): resync workflow and script mirror with canonical
The .ai/ mirror lagged claude-templates/.ai/ for three workflows (task-audit, task-review, triage-intake) and two scripts (screenshot.py and its test) — earlier commits updated the canonical copies without resyncing the mirror in the same commit. The startup rsync caught it up; this commit tracks the result so the two stay identical.
Diffstat (limited to '.ai/workflows/triage-intake.org')
-rw-r--r--.ai/workflows/triage-intake.org5
1 files changed, 4 insertions, 1 deletions
diff --git a/.ai/workflows/triage-intake.org b/.ai/workflows/triage-intake.org
index 36f9530..02e36e8 100644
--- a/.ai/workflows/triage-intake.org
+++ b/.ai/workflows/triage-intake.org
@@ -81,7 +81,10 @@ All three mail accounts are synced to local Maildirs and =mu=-indexed: =~/.mail/
1. Query every unread INBOX message across the three accounts:
#+begin_src bash
mu find 'flag:unread AND NOT flag:trashed AND (maildir:/gmail/INBOX OR maildir:/dmail/INBOX OR maildir:/cmail/INBOX)' \
- --fields='p'
+ --fields='l'
+ # --fields='l' is the file location (full path). Don't use 'p' — in current
+ # mu that's the priority field and returns "normal" for every row, which
+ # makes the flag manager error on every path (caught 2026-05-22).
#+end_src
2. Pass *all* the returned paths to the flag manager in one call:
#+begin_src bash