feat: add 15 commands from fuji — cart, index, issue, pass, receive, recall, remember, search, status, summary, plan, work, why, insight, ask

This commit is contained in:
2026-06-09 17:39:17 +02:00
parent a08d7a0223
commit b8d7ed5674
15 changed files with 269 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
---
description: Store a memory in EEMS (with sane defaults)
---
The user invoked `/remember` with argument: `$ARGUMENTS`
Parse the argument:
- If it contains a `:` separator, take everything before the first `:` as `subject` (trim
whitespace, lowercase, replace spaces with `.`) and everything after as `content`.
- If no `:` is present, use `note.<unix-seconds>` as the synthetic subject and treat the
entire argument as content.
- If `$ARGUMENTS` is empty, stop and ask the user to pass `subject: content`.
Then call `memory_store` with:
- `subject` = the parsed subject
- `content` = the parsed content (trimmed)
Report the result as one line: `stored #<id> as <subject>` and nothing else.