Files
cd-browser/docs/ai-prompts.md
Saky 65508d263f feat: implement history mode and AI development logging
- add dedicated history mode UI (toggle with `h`)
- allow navigation inside history with arrows
- allow selecting history entries with Enter
- add tests for history mode behavior
- introduce AI development logs (`ai-worklog.md`, `ai-prompts.md`)
- add AI worklog policy to `instructions-agent.md`
2026-03-15 17:46:11 +01:00

808 B

AI Prompts Log

This file stores relevant prompts used during AI-assisted development.

Only store prompts that:

  • change architecture
  • introduce new behavior
  • modify important logic
  • affect project structure
  • debug complex issues

Do not store internal chain-of-thought reasoning. Store only the user prompt and a short result summary.

2026-03-15

  • prompt summary: Implement a dedicated history mode in src/app/ui.py so pressing h hides the tree, shows only history entries, supports Up/Down navigation, and uses Enter to select a history entry and return to the normal tree view.
  • result summary: Added a dedicated history mode with its own selection state, removed the temporary overlay behavior, preserved existing b/f and normal tree navigation behavior, and added focused UI tests.