summaryrefslogtreecommitdiffhomepage
path: root/.rules/plan/calendar-phase-8.md
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-03-29 13:44:05 +0900
committerAdam Malczewski <[email protected]>2026-03-29 13:44:05 +0900
commite8d107e454b3804e089a33ce5fe7c931040d4647 (patch)
tree4f8787fae670e86515baed54e00087ce3ef28da6 /.rules/plan/calendar-phase-8.md
parent67d7d50ee2b05f66de3ab6aea38ff5d7d56ce839 (diff)
downloadai-pulse-obsidian-plugin-e8d107e454b3804e089a33ce5fe7c931040d4647.tar.gz
ai-pulse-obsidian-plugin-e8d107e454b3804e089a33ce5fe7c931040d4647.zip
remove calendar and chat history
Diffstat (limited to '.rules/plan/calendar-phase-8.md')
-rw-r--r--.rules/plan/calendar-phase-8.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/.rules/plan/calendar-phase-8.md b/.rules/plan/calendar-phase-8.md
deleted file mode 100644
index 6b52347..0000000
--- a/.rules/plan/calendar-phase-8.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# Phase 8: System Prompt Update
-
-**Status:** Not started
-**Depends on:** Phase 7 (AI tools must exist for the prompt to reference them)
-**Modifies:** `src/context/system-prompt.json`
-
----
-
-## Overview
-
-Add a section to the system prompt that explains the date-based note structure to the AI, so it knows when and how to use the daily note tools.
-
----
-
-## Addition to `system-prompt.json`
-
-```json
-"dailyNotes": {
- "header": "DAILY NOTES — DATE-BASED NOTE STRUCTURE:",
- "description": "The vault uses a calendar-based daily note system. Notes are stored at Calendar/{YYYY}/{MM}/{DD}/{YYYY-MM-DD}.md.",
- "tools": "Use read_daily_note and write_daily_note to interact with daily notes by date. These accept natural date references like 'today', 'yesterday', 'tomorrow', or explicit YYYY-MM-DD dates.",
- "rules": [
- "When the user refers to 'today's note', 'my daily note', or a specific date, use read_daily_note or write_daily_note.",
- "Do NOT use create_file or read_file for daily notes — always use the dedicated daily note tools.",
- "The daily note tools handle folder creation and path computation automatically.",
- "When appending to a daily note, the content is added at the end of the file."
- ]
-}
-```
-
----
-
-## Notes
-
-- The `rootFolder` in the description should ideally reference the actual configured value, but since the system prompt is static JSON, use the default `"Calendar"` and note that it's configurable.
-- This section ensures the AI prefers the dedicated daily note tools over generic file operations for date-based notes.