You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add comprehensive documentation explaining the context verification markers feature (SDD1️⃣-SDD4️⃣) across README, website homepage, and FAQ page.
Changes:
- Add context verification section to README.md explaining markers and context rot
- Add FAQ section in common-questions.html with detailed Q&A about emoji markers
- Add brief context verification section to index.html with link to FAQ
- Update wording to clarify markers are indicators, not guarantees
- Fix icon styling in FAQ cards
-**Prompt-first workflow:** Use curated prompts to go from idea → spec → task list → implementation-ready backlog.
44
44
-**Predictable delivery:** Every step emphasizes demoable slices, proof artifacts, and collaboration with junior developers in mind.
45
45
-**No dependencies required:** The prompts are plain Markdown files that work with any AI assistant.
46
+
-**Context verification:** Built-in emoji markers (SDD1️⃣-SDD4️⃣) detect when AI responses follow critical instructions, helping identify context rot issues early.
46
47
47
48
## Why Spec-Driven Development?
48
49
@@ -67,6 +68,14 @@ All prompts live in `prompts/` and are designed for use inside your preferred AI
67
68
68
69
Each prompt writes Markdown outputs into `docs/specs/[NN]-spec-[feature-name]/` (where `[NN]` is a zero-padded 2-digit number: 01, 02, 03, etc.), giving you a lightweight backlog that is easy to review, share, and implement.
69
70
71
+
### Context Verification Markers
72
+
73
+
Each prompt includes a context verification marker (SDD1️⃣ for spec generation, SDD2️⃣ for task breakdown, SDD3️⃣ for task management, SDD4️⃣ for validation) that appears at the start of AI responses. These markers help detect **context rot**—a phenomenon where AI performance degrades as input context length increases, even when tasks remain simple.
74
+
75
+
**Why this matters:** Context rot doesn't announce itself with errors. It creeps in silently, causing models to lose track of critical instructions. When you see the marker at the start of each response, it's an <strong>indicator</strong> that the AI is probably following the prompt's instructions. If the marker disappears, it's an immediate signal that context instructions may have been lost.
76
+
77
+
**What to expect:** You'll see responses like `SDD1️⃣ I'll help you generate a specification...` or `SDD3️⃣ Let me start implementing task 1.0...`. This is normal and indicates the verification system is working. For more details, see the [research documentation](docs/emoji-context-verification-research.md).
78
+
70
79
## How does it work?
71
80
72
81
The workflow is driven by Markdown prompts that function as reusable playbooks for the AI agent. Reference the prompts directly, or install them as slash commands using the [slash-command-manager](https://github.com/liatrio-labs/slash-command-manager), to keep the AI focused on structured outcomes.
0 commit comments