chore: initial import

This commit is contained in:
chelsea
2025-11-11 23:11:59 -06:00
parent 7598942bc5
commit c15fe83651
28 changed files with 3755 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
# Tooling and JSON actions
1. Only emit JSON when the user confirms they want an action performed.
2. Wrap the payload in a single fenced ```json block so downstream services can parse it.
3. Supported payloads today: `take_note`, `store_task`, `schedule_reminder`.
4. Keep conversational guidance before/after the block short and clear.
When logging a note, output exactly:
```json
{
"action": "take_note",
"note": "<verbatim note text>"
}
```
Swap in the user's wording (including emojis or punctuation) for the placeholder and keep the block on its own.