This is the MBR (MyBetterRates) KB vault (
D:\FSS\KB\MBR\). There is a separate FSS Business KB vault atD:\FSS\KB\Business\. Never write files from one vault into the other. Each has its own git repo and task system.
KB Task & Note Management — Claude Code Instructions
Section titled “KB Task & Note Management — Claude Code Instructions”Full guide: D:\FSS\KB\Business\03_Processes\Simple Markdown Task Management\SMTM_System.md
Location
Section titled “Location”WSL Path: /mnt/d/FSS/KB/MBR/_WorkingOn/
Windows Path: D:\FSS\KB\MBR\_WorkingOn\
Folder Structure
Section titled “Folder Structure”_WorkingOn/├── Tasks/│ ├── _tmp.md # Scratch file for quick/temporary tasks│ ├── Tasks-Template.md # SSoT template for task files│ └── Name.md # Named task files — no date prefix (active until complete)├── Projects/[name]/│ ├── STATUS.md # Phase tracking + feedback (AI reads first)│ ├── SPEC.md # Requirements (no date prefix, stays current)│ ├── PLAN.md # Approach + phases (stays current)│ ├── TASKS.md # Active task checklist (stays current)│ ├── LESSONS.md # Insights captured during project│ └── logs/ # YYYY-MM-DD_Description.md (session logs)└── Research/[topic]/Session Start (MANDATORY)
Section titled “Session Start (MANDATORY)”- Read
Tasks/_tmp.md - If working on a project: read
Projects/[name]/STATUS.md - Check
## Feedbackin STATUS.md — act on it before proceeding
Task Lifecycle
Section titled “Task Lifecycle”Quick task (no log needed): Add checkbox to Tasks/_tmp.md — tick when done, fill in Claude Response section, never delete history.
Substantive task (needs context across sessions):
- Create
Tasks/Task-Name.mdfromTasks-Template.md(no date prefix) - Single file for entire lifecycle — append Claude Response / Talbot Response to END, never delete history
- AI always appends
## Talbot Response+---after its section - Use
/task-continue [filename]to continue;/task-complete [filename]to close
Project Lifecycle
Section titled “Project Lifecycle”Session end:
- Tick completed checkboxes in STATUS.md, update Last Updated date
- Write log:
Projects/[name]/logs/YYYY-MM-DD_Description.md - Add blank
## Feedbacksection to log - Update
Tasks/_tmp.md
Log Naming
Section titled “Log Naming”YYYY-MM-DD_Description.md — no TYPE prefix on completed logs.
Git Commits (MANDATORY)
Section titled “Git Commits (MANDATORY)”After any session that adds or modifies KB content, suggest a git commit. Do not wait for the user to ask. Automatically propose the commit with a meaningful message covering what changed. The KB repo is /mnt/d/FSS/KB/MBR/.
Lessons
Section titled “Lessons”Favicon generation: adding a new brand to generate-favicon.mjs
Section titled “Favicon generation: adding a new brand to generate-favicon.mjs”Three places need updating when adding a brand to scripts/generate-favicon.mjs:
- Logo filename branch (
logoFileNameconditional) - Glyph-hiding block — SD hides
char-dollar, MBR hideschar-bar; match the element ID to the brand’s SVG structure brandNamesmap for thesite.webmanifest- The brand allowlist in
main()(if (!['sd', 'ts', 'mbr'].includes(brand)))
The neutral-color mapping (black→primary, gray→secondary) is a no-op for brands with actual colors already in the SVG — the script still works correctly without any special-casing.
SVG favicon verification: inline SVGs only in Playwright
Section titled “SVG favicon verification: inline SVGs only in Playwright”img src="file:///..." does not work in Playwright’s headless browser (page.setContent). To verify SVG rendering at multiple sizes, read the SVG files with fs.readFileSync and embed them directly as inline SVG in the HTML string. Use a sized() helper that replaces width="N" height="N" in the SVG tag to render at different display sizes.
Task file naming: no date prefix
Section titled “Task file naming: no date prefix”SMTM task files use Name.md format — never YYYY-MM-DD_Name.md. Dates belong in log files and project logs, not task files. Task files are active work; their creation date is captured in frontmatter or git history.
CSS keyframe animation: set explicit initial state in CSS
Section titled “CSS keyframe animation: set explicit initial state in CSS”When using @keyframes for logo/UI animations, the element’s state before the animation fires depends on the browser. Always set explicit CSS properties (e.g. opacity: 1 or opacity: 0) on the element itself — don’t rely solely on the 0% keyframe value. This prevents a flash-of-wrong-state on page load before the animation initialises. This is especially relevant for stacked elements (e.g. grid-area: 1/1) where the initial visibility must be correct before the first keyframe fires.
Design exploration → two artifacts
Section titled “Design exploration → two artifacts”Multi-session design tasks (logo iterations, UX explorations) should produce:
- Lean decision log in
09_Logs/Decisions/YYYY-MM-DD_Description.md— what was decided and why - Full task file moved to
_WorkingOn/Brainstorming/archive/YYYY-MM-DD_TaskName.md— full iteration history as design audit trail
The relevant spec doc (e.g., Brand.md) canonizes the final outcome. Never delete the iteration history — a single session’s reasoning can resolve future ambiguity about why a decision was made.
Closing Communication (MANDATORY)
Section titled “Closing Communication (MANDATORY)”After any task that produces a log or task file, the final message must include both paths:
📄 Task/log file: WSL: /mnt/d/FSS/KB/MBR/_WorkingOn/... Windows: D:\FSS\KB\MBR\_WorkingOn\...Skills
Section titled “Skills”| Skill | What it does |
|---|---|
/task-start [file] | First session on a task: read, execute, append first Claude Response |
/task-continue [file] | Process latest Talbot Response in task file, append Claude Response |
/task-complete [file] | Close task: LESSONS.md candidates, purge, log/delete, commit offer |
/session-close | Project session end: write log, update STATUS.md, update _tmp.md |
/project-start [name] | Create project folder with STATUS.md and initial structure |