
Ce Compound
- 7 installs
- 23.9k repo stars
- Updated August 5, 2026
- everyinc/every-marketplace
This is a copy of ce-compound by everyinc - installs and ranking accrue to the original listing.
Helps with ai & agent building tasks.
About
ce-compound is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- ce-compound
- AI & Agent Building
- AI-coding skill
Ce Compound by the numbers
- 7 all-time installs (skills.sh)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/everyinc/every-marketplace --skill ce-compoundAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 7 |
|---|---|
| repo stars | ★ 23.9k |
| Last updated | August 5, 2026 |
| Repository | everyinc/every-marketplace ↗ |
What it does
Helps with ai & agent building tasks.
Files
/ce-compound
Coordinate multiple subagents working in parallel to document a recently solved problem.
Purpose
Captures problem solutions while context is fresh, creating structured documentation in docs/solutions/ with YAML frontmatter for searchability and future reference. Uses parallel subagents for maximum efficiency.
Why "compound"? Each documented solution compounds your team's knowledge. The first time you solve a problem takes research. Document it, and the next occurrence takes minutes. Knowledge compounds.
Usage
/ce-compound # Document the most recent fix
/ce-compound [brief context] # Provide additional context hintPre-resolved context
Git branch (pre-resolved): !git rev-parse --abbrev-ref HEAD 2>/dev/null || true
If the line above resolved to a plain branch name (like feat/my-branch), pass it into the Session Historian dispatch in Phase 1 so the agent does not waste a turn deriving it. If it still contains a backtick command string or is empty, omit it and let the agent derive it at runtime.
Support Files
These files are the durable contract for the workflow. Read them on-demand at the step that needs them — do not bulk-load at skill start.
references/schema.yaml— canonical frontmatter fields and enum values (read when validating YAML)references/yaml-schema.md— category mapping from problem_type to directory (read when classifying)assets/resolution-template.md— section structure for new docs (read when assembling)
When spawning subagents, pass the relevant file contents into the task prompt so they have the contract without needing cross-skill paths.
Execution Strategy
Present the user with two options before proceeding, using the platform's blocking question tool: AskUserQuestion in Claude Code (call ToolSearch with select:AskUserQuestion first if its schema isn't loaded), request_user_input in Codex, ask_user in Gemini, ask_user in Pi (requires the pi-ask-user extension). Fall back to presenting options in chat only when no blocking tool exists in the harness or the call errors (e.g., Codex edit modes) — not because a schema load is required. Never silently skip the question.
1. Full (recommended) — the complete compound workflow. Researches,
cross-references, and reviews your solution to produce documentation
that compounds your team's knowledge.
2. Lightweight — same documentation, single pass. Faster and uses
fewer tokens, but won't detect duplicates or cross-reference
existing docs. Best for simple fixes or long sessions nearing
context limits.Do NOT pre-select a mode. Do NOT skip this prompt. Wait for the user's choice before proceeding.
If the user chooses Full, ask one follow-up question before proceeding. Detect which harness is running (Claude Code, Codex, or Cursor) and ask:
Would you also like to search your [harness name] session history
for relevant knowledge to help the Compound process? This adds
time and token usage.If the user says yes, dispatch the Session Historian in Phase 1. If no, skip it. Do not ask this in lightweight mode.
---
Full Mode
<critical_requirement> The primary output is ONE file - the final documentation.
Phase 1 subagents return TEXT DATA to the orchestrator. They must NOT use Write, Edit, or create any files. Only the orchestrator writes files: the solution doc in Phase 2, and — if the Discoverability Check finds a gap — a small edit to a project instruction file (AGENTS.md or CLAUDE.md). The instruction-file edit is maintenance, not a second deliverable; it ensures future agents can discover the knowledge store. </critical_requirement>
Phase 0.5: Auto Memory Scan
Before launching Phase 1 subagents, check the auto-memory block injected into your system prompt for notes relevant to the problem being documented.
1. Look for a block labeled "user's auto-memory" (Claude Code only) already present in your system prompt context — MEMORY.md's entries are inlined there 2. If the block is absent, empty, or this is a non-Claude-Code platform, skip this step and proceed to Phase 1 unchanged 3. Scan the entries for anything related to the problem being documented -- use semantic judgment, not keyword matching 4. If relevant entries are found, prepare a labeled excerpt block:
## Supplementary notes from auto memory
Treat as additional context, not primary evidence. Conversation history
and codebase findings take priority over these notes.
[relevant entries here]5. Pass this block as additional context to the Context Analyzer and Solution Extractor task prompts in Phase 1. If any memory notes end up in the final documentation (e.g., as part of the investigation steps or root cause analysis), tag them with "(auto memory [claude])" so their origin is clear to future readers.
If no relevant entries are found, proceed to Phase 1 without passing memory context.
Phase 1: Research
Launch research subagents. Each returns text data to the orchestrator.
Dispatch order:
- Launch
Context Analyzer,Solution Extractor, andRelated Docs Finderin parallel (background) - Then dispatch
ce-session-historianin foreground — it reads session files outside the working directory that background agents may not have access to - The foreground dispatch runs while the background agents work, adding no wall-clock time
<parallel_tasks>
1. Context Analyzer
- Extracts conversation history
- Reads
references/schema.yamlfor enum validation and track classification - Determines the track (bug or knowledge) from the problem_type
- Identifies problem type, component, and track-appropriate fields:
- Bug track: symptoms, root_cause, resolution_type
- Knowledge track: applies_when (symptoms/root_cause/resolution_type optional)
- Incorporates auto memory excerpts (if provided by the orchestrator) as supplementary evidence
- Reads
references/yaml-schema.mdfor category mapping intodocs/solutions/ - Suggests a filename using the pattern
[sanitized-problem-slug]-[date].md - Returns: YAML frontmatter skeleton (must include
category:field mapped from problem_type), category directory path, suggested filename, and which track applies - Does not invent enum values, categories, or frontmatter fields from memory; reads the schema and mapping files above
- Does not force bug-track fields onto knowledge-track learnings or vice versa
2. Solution Extractor
- Reads
references/schema.yamlfor track classification (bug vs knowledge) - Adapts output structure based on the problem_type track
- Incorporates auto memory excerpts (if provided by the orchestrator) as supplementary evidence -- conversation history and the verified fix take priority; if memory notes contradict the conversation, note the contradiction as cautionary context
Bug track output sections:
- Problem: 1-2 sentence description of the issue
- Symptoms: Observable symptoms (error messages, behavior)
- What Didn't Work: Failed investigation attempts and why they failed
- Solution: The actual fix with code examples (before/after when applicable)
- Why This Works: Root cause explanation and why the solution addresses it
- Prevention: Strategies to avoid recurrence, best practices, and test cases. Include concrete code examples where applicable (e.g., gem configurations, test assertions, linting rules)
Knowledge track output sections:
- Context: What situation, gap, or friction prompted this guidance
- Guidance: The practice, pattern, or recommendation with code examples when useful
- Why This Matters: Rationale and impact of following or not following this guidance
- When to Apply: Conditions or situations where this applies
- Examples: Concrete before/after or usage examples showing the practice in action
3. Related Docs Finder
- Searches
docs/solutions/for related documentation - Identifies cross-references and links
- Finds related GitHub issues
- Flags any related learning or pattern docs that may now be stale, contradicted, or overly broad
- Assesses overlap with the new doc being created across five dimensions: problem statement, root cause, solution approach, referenced files, and prevention rules. Score as:
- High: 4-5 dimensions match — essentially the same problem solved again
- Moderate: 2-3 dimensions match — same area but different angle or solution
- Low: 0-1 dimensions match — related but distinct
- Returns: Links, relationships, refresh candidates, and overlap assessment (score + which dimensions matched)
Search strategy (grep-first filtering for efficiency):
1. Extract keywords from the problem context: module names, technical terms, error messages, component types 2. If the problem category is clear, narrow search to the matching docs/solutions/<category>/ directory 3. Use the native content-search tool (e.g., Grep in Claude Code) to pre-filter candidate files BEFORE reading any content. Run multiple searches in parallel, case-insensitive, targeting frontmatter fields. These are template patterns -- substitute actual keywords:
title:.*<keyword>tags:.*(<keyword1>|<keyword2>)module:.*<module name>component:.*<component>
4. If search returns >25 candidates, re-run with more specific patterns. If <3, broaden to full content search 5. Read only frontmatter (first 30 lines) of candidate files to score relevance 6. Fully read only strong/moderate matches 7. Return distilled links and relationships, not raw file contents
GitHub issue search:
Prefer the gh CLI for searching related issues: gh issue list --search "<keywords>" --state all --limit 5. If gh is not installed, fall back to the GitHub MCP tools (e.g., unblocked data_retrieval) if available. If neither is available, skip GitHub issue search and note it was skipped in the output.
</parallel_tasks>
4. Session Historian (foreground, after launching the above — only if the user opted in)
- Skip entirely if the user declined session history in the follow-up question
- Dispatched as
ce-session-historian - Dispatch in foreground — this agent reads session files outside the working directory (
~/.claude/projects/,~/.codex/sessions/,~/.cursor/projects/) which background agents may not have access to - Omit the
modeparameter so the user's configured permission settings apply - Dispatch on the mid-tier model (e.g.,
model: "sonnet"in Claude Code) — the synthesis feeds into compound assembly and doesn't need frontier reasoning
Dispatch prompt — keep tight. A long, keyword-rich prompt licenses the agent to keep widening. Use this shape:
- Pre-resolved context (only if values resolved cleanly above; otherwise omit and let the agent derive): repo name, current git branch.
- Time window: explicit
7 daysunless the documented problem clearly spans a longer arc. - Problem topic: one sentence naming the concrete issue — error message, module name, what broke and how it was fixed. Not a paragraph; not a bullet list of related topics.
- Filter rule (one line): "Only surface findings directly relevant to this specific problem. Ignore unrelated work from the same sessions or branches."
- Output schema:
Structure your response with these sections (omit any with no findings):
- What was tried before
- What didn't work
- Key decisions
- Related contextDo not append additional context blocks, exclusion lists, or topic-keyword bullets — verbose dispatch prompts give the agent license to keep widening the search and rapidly compound wall time. If the agent needs keyword search, it owns that decision via the --keyword mode on ce-session-inventory.
- Returns: structured digest of findings from prior sessions, or "no relevant prior sessions" if none found
Phase 2: Assembly & Write
<sequential_tasks>
WAIT for all Phase 1 subagents to complete before proceeding.
The orchestrating agent (main conversation) performs these steps:
1. Collect all text results from Phase 1 subagents 2. Check the overlap assessment from the Related Docs Finder before deciding what to write:
| Overlap | Action |
|---|---|
| High — existing doc covers the same problem, root cause, and solution | Update the existing doc with fresher context (new code examples, updated references, additional prevention tips) rather than creating a duplicate. The existing doc's path and structure stay the same. |
| Moderate — same problem area but different angle, root cause, or solution | Create the new doc normally. Flag the overlap for Phase 2.5 to recommend consolidation review. |
| Low or none | Create the new doc normally. |
The reason to update rather than create: two docs describing the same problem and solution will inevitably drift apart. The newer context is fresher and more trustworthy, so fold it into the existing doc rather than creating a second one that immediately needs consolidation.
When updating an existing doc, preserve its file path and frontmatter structure. Update the solution, code examples, prevention tips, and any stale references. Add a last_updated: YYYY-MM-DD field to the frontmatter. Do not change the title unless the problem framing has materially shifted.
3. Incorporate session history findings (if available). When the Session History Researcher returned relevant prior-session context:
- Fold investigation dead ends and failed approaches into the What Didn't Work section (bug track) or Context section (knowledge track)
- Use cross-session patterns to enrich the Prevention or Why This Matters sections
- Tag session-sourced content with "(session history)" so its origin is clear to future readers
- If findings are thin or "no relevant prior sessions," proceed without session context
4. Assemble complete markdown file from the collected pieces, reading assets/resolution-template.md for the section structure of new docs 5. Validate YAML frontmatter against references/schema.yaml, including the YAML-safety quoting rule for array items (see references/yaml-schema.md > YAML Safety Rules) 6. Create directory if needed: mkdir -p docs/solutions/[category]/ 7. Write the file: either the updated existing doc or the new docs/solutions/[category]/[filename].md 8. Run `python3 scripts/validate-frontmatter.py <output-path>` to catch silent-corruption parser-safety issues that the prose rules miss: malformed --- delimiter lines, unquoted # in scalar values (silent comment truncation), and unquoted : in scalar values (silent mapping confusion). Exit 0 means the doc is parser-safe; exit 1 means the script's stderr names the offending field(s) and what to fix — quote the value(s), re-write the doc, and re-run until exit 0. Do not declare success while validation fails. The script does not enforce schema rules and does not flag YAML reserved-indicator characters (those produce loud parser errors downstream rather than silent corruption — out of scope). Uses Python 3 stdlib only (no PyYAML or other deps).
When creating a new doc, preserve the section order from assets/resolution-template.md unless the user explicitly asks for a different structure.
</sequential_tasks>
Phase 2.5: Selective Refresh Check
After writing the new learning, decide whether this new solution is evidence that older docs should be refreshed.
ce-compound-refresh is not a default follow-up. Use it selectively when the new learning suggests an older learning or pattern doc may now be inaccurate.
It makes sense to invoke ce-compound-refresh when one or more of these are true:
1. A related learning or pattern doc recommends an approach that the new fix now contradicts 2. The new fix clearly supersedes an older documented solution 3. The current work involved a refactor, migration, rename, or dependency upgrade that likely invalidated references in older docs 4. A pattern doc now looks overly broad, outdated, or no longer supported by the refreshed reality 5. The Related Docs Finder surfaced high-confidence refresh candidates in the same problem space 6. The Related Docs Finder reported moderate overlap with an existing doc — there may be consolidation opportunities that benefit from a focused review
It does not make sense to invoke ce-compound-refresh when:
1. No related docs were found 2. Related docs still appear consistent with the new learning 3. The overlap is superficial and does not change prior guidance 4. Refresh would require a broad historical review with weak evidence
Use these rules:
- If there is one obvious stale candidate, invoke
ce-compound-refreshwith a narrow scope hint after the new learning is written - If there are multiple candidates in the same area, ask the user whether to run a targeted refresh for that module, category, or pattern set
- If context is already tight or you are in lightweight mode, do not expand into a broad refresh automatically; instead recommend
ce-compound-refreshas the next step with a scope hint
When invoking or recommending ce-compound-refresh, be explicit about the argument to pass. Prefer the narrowest useful scope:
- Specific file when one learning or pattern doc is the likely stale artifact
- Module or component name when several related docs may need review
- Category name when the drift is concentrated in one solutions area
- Pattern filename or pattern topic when the stale guidance lives in
docs/solutions/patterns/
Examples:
/ce-compound-refresh plugin-versioning-requirements/ce-compound-refresh payments/ce-compound-refresh performance-issues/ce-compound-refresh critical-patterns
A single scope hint may still expand to multiple related docs when the change is cross-cutting within one domain, category, or pattern area.
Do not invoke ce-compound-refresh without an argument unless the user explicitly wants a broad sweep.
Always capture the new learning first. Refresh is a targeted maintenance follow-up, not a prerequisite for documentation.
Discoverability Check
After the learning is written and the refresh decision is made, check whether the project's instruction files would lead an agent to discover and search docs/solutions/ before starting work in a documented area. This runs every time — the knowledge store only compounds value when agents can find it.
1. Identify which root-level instruction files exist (AGENTS.md, CLAUDE.md, or both). Read the file(s) and determine which holds the substantive content — one file may just be a shim that @-includes the other (e.g., CLAUDE.md containing only @AGENTS.md, or vice versa). The substantive file is the assessment and edit target; ignore shims. If neither file exists, skip this check entirely. 2. Assess whether an agent reading the instruction files would learn three things:
- That a searchable knowledge store of documented solutions exists
- Enough about its structure to search effectively (category organization, YAML frontmatter fields like
module,tags,problem_type) - When to search it (before implementing features, debugging issues, or making decisions in documented areas — learnings may cover bugs, best practices, workflow patterns, or other institutional knowledge)
This is a semantic assessment, not a string match. The information could be a line in an architecture section, a bullet in a gotchas section, spread across multiple places, or expressed without ever using the exact path docs/solutions/. Use judgment — if an agent would reasonably discover and use the knowledge store after reading the file, the check passes.
3. If the spirit is already met, no action needed — move on. 4. If not: a. Based on the file's existing structure, tone, and density, identify where a mention fits naturally. Before creating a new section, check whether the information could be a single line in the closest related section — an architecture tree, a directory listing, a documentation section, or a conventions block. A line added to an existing section is almost always better than a new headed section. Only add a new section as a last resort when the file has clear sectioned structure and nothing is even remotely related. b. Draft the smallest addition that communicates the three things. Match the file's existing style and density. The addition should describe the knowledge store itself, not the plugin — an agent without the plugin should still find value in it.
Keep the tone informational, not imperative. Express timing as description, not instruction — "relevant when implementing or debugging in documented areas" rather than "check before implementing or debugging." Imperative directives like "always search before implementing" cause redundant reads when a workflow already includes a dedicated search step. The goal is awareness: agents learn the folder exists and what's in it, then use their own judgment about when to consult it.
Examples of calibration (not templates — adapt to the file):
When there's an existing directory listing or architecture section — add a line:
docs/solutions/ # documented solutions to past problems (bugs, best practices, workflow patterns), organized by category with YAML frontmatter (module, tags, problem_type)When nothing in the file is a natural fit — a small headed section is appropriate:
## Documented Solutions
`docs/solutions/` — documented solutions to past problems (bugs, best practices, workflow patterns), organized by category with YAML frontmatter (`module`, `tags`, `problem_type`). Relevant when implementing or debugging in documented areas.c. In full mode, explain to the user why this matters — agents working in this repo (including fresh sessions, other tools, or collaborators without the plugin) won't know to check docs/solutions/ unless the instruction file surfaces it. Show the proposed change and where it would go, then use the platform's blocking question tool to get consent before making the edit: AskUserQuestion in Claude Code (call ToolSearch with select:AskUserQuestion first if its schema isn't loaded), request_user_input in Codex, ask_user in Gemini, ask_user in Pi (requires the pi-ask-user extension). Fall back to presenting the proposal in chat only when no blocking tool exists in the harness or the call errors (e.g., Codex edit modes) — not because a schema load is required. Never silently skip the question. In lightweight mode, output a one-liner note and move on
Phase 3: Optional Enhancement
WAIT for Phase 2 to complete before proceeding.
<parallel_tasks>
Based on problem type, optionally invoke specialized agents to review the documentation:
- performance_issue →
ce-performance-oracle - security_issue →
ce-security-sentinel - database_issue →
ce-data-integrity-guardian - Any code-heavy issue → always run
ce-code-simplicity-reviewer, and additionally run the kieran reviewer that matches the repo's primary stack: - Ruby/Rails → also run
ce-kieran-rails-reviewer - Python → also run
ce-kieran-python-reviewer - TypeScript/JavaScript → also run
ce-kieran-typescript-reviewer - Other stacks → no kieran reviewer needed
</parallel_tasks>
---
Lightweight Mode
<critical_requirement> Single-pass alternative — same documentation, fewer tokens.
This mode skips parallel subagents entirely. The orchestrator performs all work in a single pass, producing the same solution document without cross-referencing or duplicate detection. </critical_requirement>
The orchestrator (main conversation) performs ALL of the following in one sequential pass:
1. Extract from conversation: Identify the problem and solution from conversation history. Also scan the "user's auto-memory" block injected into your system prompt, if present (Claude Code only) -- use any relevant notes as supplementary context alongside conversation history. Tag any memory-sourced content incorporated into the final doc with "(auto memory [claude])" 2. Classify: Read references/schema.yaml and references/yaml-schema.md, then determine track (bug vs knowledge), category, and filename 3. Write minimal doc: Create docs/solutions/[category]/[filename].md using the appropriate track template from assets/resolution-template.md, with:
- YAML frontmatter with track-appropriate fields, applying the YAML-safety quoting rule for array items (see
references/yaml-schema.md> YAML Safety Rules) - Bug track: Problem, root cause, solution with key code snippets, one prevention tip
- Knowledge track: Context, guidance with key examples, one applicability note
4. Skip specialized agent reviews (Phase 3) to conserve context
Lightweight output:
✓ Documentation complete (lightweight mode)
File created:
- docs/solutions/[category]/[filename].md
[If discoverability check found instruction files don't surface the knowledge store:]
Tip: Your AGENTS.md/CLAUDE.md doesn't surface docs/solutions/ to agents —
a brief mention helps all agents discover these learnings.
Note: This was created in lightweight mode. For richer documentation
(cross-references, detailed prevention strategies, specialized reviews),
re-run /ce-compound in a fresh session.No subagents are launched. No parallel tasks. One file written.
In lightweight mode, the overlap check is skipped (no Related Docs Finder subagent). This means lightweight mode may create a doc that overlaps with an existing one. That is acceptable — ce-compound-refresh will catch it later. Only suggest ce-compound-refresh if there is an obvious narrow refresh target. Do not broaden into a large refresh sweep from a lightweight session.
---
What It Captures
- Problem symptom: Exact error messages, observable behavior
- Investigation steps tried: What didn't work and why
- Root cause analysis: Technical explanation
- Working solution: Step-by-step fix with code examples
- Prevention strategies: How to avoid in future
- Cross-references: Links to related issues and docs
Preconditions
<preconditions enforcement="advisory"> <check condition="problem_solved"> Problem has been solved (not in-progress) </check> <check condition="solution_verified"> Solution has been verified working </check> <check condition="non_trivial"> Non-trivial problem (not simple typo or obvious error) </check> </preconditions>
What It Creates
Organized documentation:
- File:
docs/solutions/[category]/[filename].md
Categories auto-detected from problem:
Bug track:
- build-errors/
- test-failures/
- runtime-errors/
- performance-issues/
- database-issues/
- security-issues/
- ui-bugs/
- integration-issues/
- logic-errors/
Knowledge track:
- architecture-patterns/ — architectural or structural patterns (agent/skill/pipeline/workflow shape decisions)
- design-patterns/ — reusable non-architectural design approaches (content generation, interaction patterns, prompt shapes)
- tooling-decisions/ — language, library, or tool choices with durable rationale
- conventions/ — team-agreed way of doing something, captured so it survives turnover
- workflow-issues/
- developer-experience/
- documentation-gaps/
- best-practices/ — fallback only, use when no narrower knowledge-track value applies
Common Mistakes to Avoid
| ❌ Wrong | ✅ Correct |
|---|---|
Subagents write files like context-analysis.md, solution-draft.md | Subagents return text data; orchestrator writes one final file |
| Research and assembly run in parallel | Research completes → then assembly runs |
| Multiple files created during workflow | One solution doc written or updated: docs/solutions/[category]/[filename].md (plus an optional small edit to a project instruction file for discoverability) |
| Creating a new doc when an existing doc covers the same problem | Check overlap assessment; update the existing doc when overlap is high |
Success Output
✓ Documentation complete
Auto memory: 2 relevant entries used as supplementary evidence
Subagent Results:
✓ Context Analyzer: Identified performance_issue in brief_system, category: performance-issues/
✓ Solution Extractor: 3 code fixes, prevention strategies
✓ Related Docs Finder: 2 related issues
✓ Session History: 3 prior sessions on same branch, 2 failed approaches surfaced
Specialized Agent Reviews (Auto-Triggered):
✓ ce-performance-oracle: Validated query optimization approach
✓ ce-kieran-rails-reviewer: Code examples meet Rails conventions
✓ ce-code-simplicity-reviewer: Solution is appropriately minimal
File created:
- docs/solutions/performance-issues/n-plus-one-brief-generation.md
This documentation will be searchable for future reference when similar
issues occur in the Email Processing or Brief System modules.
What's next?
1. Continue workflow (recommended)
2. Link related documentation
3. Update other references
4. View documentation
5. OtherAfter displaying the success output, present the "What's next?" options using the platform's blocking question tool: AskUserQuestion in Claude Code (call ToolSearch with select:AskUserQuestion first if its schema isn't loaded), request_user_input in Codex, ask_user in Gemini, ask_user in Pi (requires the pi-ask-user extension). Fall back to numbered options in chat only when no blocking tool exists in the harness or the call errors (e.g., Codex edit modes) — not because a schema load is required. Never silently skip the question. Do not continue the workflow or end the turn without the user's selection.
Alternate output (when updating an existing doc due to high overlap):
✓ Documentation updated (existing doc refreshed with current context)
Overlap detected: docs/solutions/performance-issues/n-plus-one-queries.md
Matched dimensions: problem statement, root cause, solution, referenced files
Action: Updated existing doc with fresher code examples and prevention tips
File updated:
- docs/solutions/performance-issues/n-plus-one-queries.md (added last_updated: 2026-03-24)The Compounding Philosophy
This creates a compounding knowledge system:
1. First time you solve "N+1 query in brief generation" → Research (30 min) 2. Document the solution → docs/solutions/performance-issues/n-plus-one-briefs.md (5 min) 3. Next time similar issue occurs → Quick lookup (2 min) 4. Knowledge compounds → Team gets smarter
The feedback loop:
Build → Test → Find Issue → Research → Improve → Document → Validate → Deploy
↑ ↓
└──────────────────────────────────────────────────────────────────────┘Each unit of engineering work should make subsequent units of work easier—not harder.
Auto-Invoke
<auto_invoke> <trigger_phrases> - "that worked" - "it's fixed" - "working now" - "problem solved" </trigger_phrases>
<manual_override> Use /ce-compound [context] to document immediately without waiting for auto-detection. </manual_override> </auto_invoke>
Output
Writes the final learning directly into docs/solutions/.
Applicable Specialized Agents
Based on problem type, these agents can enhance documentation:
Code Quality & Review
- ce-kieran-rails-reviewer: Reviews code examples for Rails best practices
- ce-kieran-python-reviewer: Reviews code examples for Python best practices
- ce-kieran-typescript-reviewer: Reviews code examples for TypeScript best practices
- ce-code-simplicity-reviewer: Ensures solution code is minimal and clear
- ce-pattern-recognition-specialist: Identifies anti-patterns or repeating issues
Specific Domain Experts
- ce-performance-oracle: Analyzes performance_issue category solutions
- ce-security-sentinel: Reviews security_issue solutions for vulnerabilities
- ce-data-integrity-guardian: Reviews database_issue migrations and queries
Enhancement & Research
- ce-best-practices-researcher: Enriches solution with industry best practices
- ce-framework-docs-researcher: Links to framework/library documentation references
When to Invoke
- Auto-triggered (optional): Agents can run post-documentation for enhancement
- Manual trigger: User can invoke agents after /ce-compound completes for deeper review
Related Commands
/research [topic]- Deep investigation (searches docs/solutions/ for patterns)/ce-plan- Planning workflow (references documented solutions)
Resolution Templates
Choose the template matching the problem_type track (see references/schema.yaml).
---
Bug Track Template
Use for: build_error, test_failure, runtime_error, performance_issue, database_issue, security_issue, ui_bug, integration_issue, logic_error
<!-- YAML safety: array items (symptoms, applies_when, tags, related_components) starting with ` [ * & ! | > % @ ? or containing ": " must be wrapped in double quotes. See references/yaml-schema.md > "YAML Safety Rules". -->
---
title: [Clear problem title]
date: [YYYY-MM-DD]
category: [docs/solutions subdirectory]
module: [Module or area]
problem_type: [schema enum]
component: [schema enum]
symptoms:
- [Observable symptom 1]
root_cause: [schema enum]
resolution_type: [schema enum]
severity: [schema enum]
tags: [keyword-one, keyword-two]
---
# [Clear problem title]
## Problem
[1-2 sentence description of the issue and user-visible impact]
## Symptoms
- [Observable symptom or error]
## What Didn't Work
- [Attempted fix and why it failed]
## Solution
[The fix that worked, including code snippets when useful]
## Why This Works
[Root cause explanation and why the fix addresses it]
## Prevention
- [Concrete practice, test, or guardrail]
## Related Issues
- [Related docs or issues, if any]---
Knowledge Track Template
Use for: best_practice, documentation_gap, workflow_issue, developer_experience
<!-- YAML safety: array items (symptoms, applies_when, tags, related_components) starting with ` [ * & ! | > % @ ? or containing ": " must be wrapped in double quotes. See references/yaml-schema.md > "YAML Safety Rules". -->
---
title: [Clear, descriptive title]
date: [YYYY-MM-DD]
category: [docs/solutions subdirectory]
module: [Module or area]
problem_type: [schema enum]
component: [schema enum]
severity: [schema enum]
applies_when:
- [Condition where this applies]
tags: [keyword-one, keyword-two]
---
# [Clear, descriptive title]
## Context
[What situation, gap, or friction prompted this guidance]
## Guidance
[The practice, pattern, or recommendation with code examples when useful]
## Why This Matters
[Rationale and impact of following or not following this guidance]
## When to Apply
- [Conditions or situations where this applies]
## Examples
[Concrete before/after or usage examples showing the practice in action]
## Related
- [Related docs or issues, if any]# Documentation schema for learnings written by ce-compound
# Treat this as the canonical frontmatter contract for docs/solutions/.
#
# The schema has two tracks based on problem_type:
# Bug track — problem_type is a defect or failure (build_error, test_failure, etc.)
# Knowledge track — problem_type is guidance or practice (best_practice, workflow_issue, etc.)
#
# Both tracks share the same required core fields. The tracks differ in which
# additional fields are required vs optional (see track_rules below).
# --- Track classification ---------------------------------------------------
tracks:
bug:
description: "Defects, failures, and errors that were diagnosed and fixed"
problem_types:
- build_error
- test_failure
- runtime_error
- performance_issue
- database_issue
- security_issue
- ui_bug
- integration_issue
- logic_error
knowledge:
description: "Practices, patterns, conventions, decisions, workflow improvements, and documentation"
problem_types:
- best_practice
- documentation_gap
- workflow_issue
- developer_experience
- architecture_pattern
- design_pattern
- tooling_decision
- convention
# --- Fields required by BOTH tracks -----------------------------------------
required_fields:
module:
type: string
description: "Module or area affected"
date:
type: string
pattern: '^\d{4}-\d{2}-\d{2}$'
description: "Date documented (YYYY-MM-DD)"
problem_type:
type: enum
values:
- build_error
- test_failure
- runtime_error
- performance_issue
- database_issue
- security_issue
- ui_bug
- integration_issue
- logic_error
- developer_experience
- workflow_issue
- best_practice
- documentation_gap
- architecture_pattern
- design_pattern
- tooling_decision
- convention
description: "Primary category — determines track (bug vs knowledge). Prefer the narrowest applicable value; best_practice is the fallback when no narrower knowledge-track value fits."
component:
type: enum
values:
- rails_model
- rails_controller
- rails_view
- service_object
- background_job
- database
- frontend_stimulus
- hotwire_turbo
- email_processing
- brief_system
- assistant
- authentication
- payments
- development_workflow
- testing_framework
- documentation
- tooling
description: "Component involved"
severity:
type: enum
values:
- critical
- high
- medium
- low
description: "Impact severity"
# --- Track-specific rules ----------------------------------------------------
track_rules:
bug:
required:
symptoms:
type: array[string]
min_items: 1
max_items: 5
description: "Observable symptoms such as errors or broken behavior"
root_cause:
type: enum
values:
- missing_association
- missing_include
- missing_index
- wrong_api
- scope_issue
- thread_violation
- async_timing
- memory_leak
- config_error
- logic_error
- test_isolation
- missing_validation
- missing_permission
- missing_workflow_step
- inadequate_documentation
- missing_tooling
- incomplete_setup
description: "Fundamental technical cause of the problem"
resolution_type:
type: enum
values:
- code_fix
- migration
- config_change
- test_fix
- dependency_update
- environment_setup
- workflow_improvement
- documentation_update
- tooling_addition
- seed_data_update
description: "Type of fix applied"
knowledge:
optional:
applies_when:
type: array[string]
max_items: 5
description: "Conditions or situations where this guidance applies"
symptoms:
type: array[string]
max_items: 5
description: "Observable gaps or friction that prompted this guidance (optional for knowledge track)"
root_cause:
type: enum
values:
- missing_association
- missing_include
- missing_index
- wrong_api
- scope_issue
- thread_violation
- async_timing
- memory_leak
- config_error
- logic_error
- test_isolation
- missing_validation
- missing_permission
- missing_workflow_step
- inadequate_documentation
- missing_tooling
- incomplete_setup
description: "Underlying cause, if there is a specific one (optional for knowledge track)"
resolution_type:
type: enum
values:
- code_fix
- migration
- config_change
- test_fix
- dependency_update
- environment_setup
- workflow_improvement
- documentation_update
- tooling_addition
- seed_data_update
description: "Type of change, if applicable (optional for knowledge track)"
# --- Fields optional for BOTH tracks ----------------------------------------
optional_fields:
related_components:
type: array[string]
description: "Other components involved"
tags:
type: array[string]
max_items: 8
description: "Search keywords, lowercase and hyphen-separated"
# --- Fields optional for bug track only -------------------------------------
bug_optional_fields:
rails_version:
type: string
pattern: '^\d+\.\d+\.\d+$'
description: "Rails version in X.Y.Z format. Only relevant for bug-track docs."
# --- Backward compatibility --------------------------------------------------
# Docs created before the track system was introduced may have bug-track
# fields (symptoms, root_cause, resolution_type) on knowledge-type
# problem_types. These are valid legacy docs:
# - Bug-track fields present on a knowledge-track doc are harmless. Do not
# strip them during refresh unless the doc is being rewritten for other reasons.
# - When creating NEW docs, follow the track rules above.
# --- Validation rules --------------------------------------------------------
validation_rules:
- "Determine track from problem_type using the tracks section above"
- "All shared required_fields must be present"
- "Bug-track required fields (symptoms, root_cause, resolution_type) must be present on bug-track docs"
- "Knowledge-track docs have no additional required fields beyond the shared ones"
- "Bug-track fields on existing knowledge-track docs are harmless (see backward compatibility note)"
- "Track-specific optional fields may be included but are not required"
- "Enum fields must match allowed values exactly"
- "Array fields must respect min_items/max_items when specified"
- "date must match YYYY-MM-DD format"
- "rails_version, if provided, must match X.Y.Z format and only applies to bug-track docs"
- "tags should be lowercase and hyphen-separated"
- "Array-of-strings frontmatter items (symptoms, applies_when, tags, related_components, or any future array field) must be wrapped in double quotes when the value starts with a YAML reserved indicator (`, [, *, &, !, |, >, %, @, ?) or contains the substring `: ` — otherwise strict YAML parsers reject the file"
YAML Frontmatter Schema
schema.yaml in this directory is the canonical contract for docs/solutions/ frontmatter written by ce-compound.
Use this file as the quick reference for:
- required fields
- enum values
- validation expectations
- category mapping
- track classification (bug vs knowledge)
Tracks
The problem_type determines which track applies. Each track has different required and optional fields.
| Track | problem_types | Description |
|---|---|---|
| Bug | build_error, test_failure, runtime_error, performance_issue, database_issue, security_issue, ui_bug, integration_issue, logic_error | Defects and failures that were diagnosed and fixed |
| Knowledge | best_practice, documentation_gap, workflow_issue, developer_experience, architecture_pattern, design_pattern, tooling_decision, convention | Practices, patterns, conventions, decisions, workflow improvements, and documentation. Prefer the narrowest applicable value; best_practice is the fallback. |
Required Fields (both tracks)
- module: Module or area affected
- date: ISO date in
YYYY-MM-DD - problem_type: One of the values listed in the Tracks table above
- component: One of
rails_model,rails_controller,rails_view,service_object,background_job,database,frontend_stimulus,hotwire_turbo,email_processing,brief_system,assistant,authentication,payments,development_workflow,testing_framework,documentation,tooling - severity: One of
critical,high,medium,low
Bug Track Fields
Required:
- symptoms: YAML array with 1-5 observable symptoms (errors, broken behavior)
- root_cause: One of
missing_association,missing_include,missing_index,wrong_api,scope_issue,thread_violation,async_timing,memory_leak,config_error,logic_error,test_isolation,missing_validation,missing_permission,missing_workflow_step,inadequate_documentation,missing_tooling,incomplete_setup - resolution_type: One of
code_fix,migration,config_change,test_fix,dependency_update,environment_setup,workflow_improvement,documentation_update,tooling_addition,seed_data_update
Knowledge Track Fields
No additional required fields beyond the shared ones. All fields below are optional:
- applies_when: Conditions or situations where this guidance applies
- symptoms: Observable gaps or friction that prompted this guidance
- root_cause: Underlying cause, if there is a specific one
- resolution_type: Type of change, if applicable
Optional Fields (both tracks)
- related_components: Other components involved
- tags: Search keywords, lowercase and hyphen-separated
Optional Fields (bug track only)
- rails_version: Rails version in
X.Y.Zformat
Backward Compatibility
Docs created before the track system may have symptoms/root_cause/resolution_type on knowledge-type problem_types. These are valid legacy docs:
- Bug-track fields present on a knowledge-track doc are harmless. Do not strip them during refresh unless the doc is being rewritten for other reasons.
- When creating new docs, follow the track rules above.
Category Mapping
build_error->docs/solutions/build-errors/test_failure->docs/solutions/test-failures/runtime_error->docs/solutions/runtime-errors/performance_issue->docs/solutions/performance-issues/database_issue->docs/solutions/database-issues/security_issue->docs/solutions/security-issues/ui_bug->docs/solutions/ui-bugs/integration_issue->docs/solutions/integration-issues/logic_error->docs/solutions/logic-errors/developer_experience->docs/solutions/developer-experience/workflow_issue->docs/solutions/workflow-issues/best_practice->docs/solutions/best-practices/documentation_gap->docs/solutions/documentation-gaps/architecture_pattern->docs/solutions/architecture-patterns/design_pattern->docs/solutions/design-patterns/tooling_decision->docs/solutions/tooling-decisions/convention->docs/solutions/conventions/
Validation Rules
1. Determine the track from problem_type using the Tracks table. 2. All shared required fields must be present. 3. Bug-track required fields (symptoms, root_cause, resolution_type) must be present on bug-track docs. 4. Knowledge-track docs have no additional required fields beyond the shared ones. 5. Bug-track fields on existing knowledge-track docs are harmless (see Backward Compatibility). 6. Enum fields must match the allowed values exactly. 7. Array fields must respect min/max item counts. 8. date must match YYYY-MM-DD. 9. rails_version, if present, must match X.Y.Z and only applies to bug-track docs.
YAML Safety Rules
Strict YAML 1.2 parsers (yq, js-yaml strict, PyYAML) reject array items that start with a reserved indicator character as unquoted scalars. When writing items for any array-of-strings field (symptoms, applies_when, tags, related_components, or any future array field), wrap the value in double quotes if it starts with any of:
` `, [, *, &, !, |, >, %, @, ?`
Also quote if the value contains the substring ": " — that punctuation confuses flow-style parsers.
Example — before (breaks strict YAML):
symptoms:
sudo dscacheutil -flushcachedoes not restore in-container mDNS
Example — after (parses cleanly):
symptoms:
- "
sudo dscacheutil -flushcachedoes not restore in-container mDNS"
This rule applies to all array-of-strings frontmatter fields. Scalar string fields like description: have their own quoting rules (see plugin AGENTS.md under "YAML Frontmatter").
#!/usr/bin/env python3
"""Validate ce-compound docs/solutions/ frontmatter for parser-safety issues.
Usage:
python3 validate-frontmatter.py <doc-path>
Exit codes:
0 — frontmatter passes all checks
1 — validation failure (diagnostics on stderr)
2 — usage error (bad arguments, missing file)
Scope: this script catches *parser-safety* issues — frontmatter that strict
YAML parsers will silently misread. It does NOT validate against the
schema's required-field or enum-value rules; that's a separate concern. The
intent is to prevent the silent-data-loss bug class where YAML's quoting
rules truncate or reframe scalar values without raising.
Checks (regex-based, no YAML parser dependency):
1. File starts and ends frontmatter with `---` lines (matched as full
lines, not substrings — `----` and `---extra` are rejected)
2. No top-level scalar value contains ` #` unquoted (silent comment
truncation — what Codex caught on PR #695)
3. No top-level scalar value contains `: ` unquoted (mapping confusion —
what surfaced in a 2026-04-16 plan doc's `title:` field)
The script does NOT flag values starting with YAML reserved indicators
(`` ` ``, `*`, `&`, `!`, etc.) because those produce loud parser errors
downstream rather than silent corruption — they're already caught by
whatever consumes the doc. This validator's purpose is silent-corruption
prevention, not lint.
Pure-stdlib (no PyYAML or other third-party deps). Runs in <50ms typical.
Designed to produce concrete, actionable error messages so the calling
agent can fix and retry without ambiguity.
"""
import os
import re
import sys
def usage_fail(msg: str) -> "NoReturn":
sys.stderr.write(f"validate-frontmatter: {msg}\n")
sys.exit(2)
def main(argv: list[str]) -> int:
if len(argv) != 2:
usage_fail(f"usage: {os.path.basename(argv[0])} <doc-path>")
doc_path = argv[1]
if not os.path.isfile(doc_path):
usage_fail(f"file not found: {doc_path}")
with open(doc_path) as f:
text = f.read()
issues: list[str] = []
# Check 1: frontmatter delimiters. Match the delimiter as a complete
# line whose stripped content is exactly `---` — substring matching
# (e.g. `text.find("\n---", 4)`) would falsely accept `----` or
# `---extra` as a terminator and let malformed docs slip through to
# downstream parsers that require a strict `---` line.
lines = text.split("\n")
if not lines or lines[0].rstrip() != "---":
sys.stderr.write(
f"FAIL: {doc_path}\n"
f" file does not start with '---' frontmatter delimiter line\n"
)
return 1
end_idx: int | None = None
for i in range(1, len(lines)):
if lines[i].rstrip() == "---":
end_idx = i
break
if end_idx is None:
sys.stderr.write(
f"FAIL: {doc_path}\n"
f" frontmatter not closed (no '---' line after the opening delimiter)\n"
)
return 1
fm_text = "\n".join(lines[1:end_idx])
# Checks 2 & 3: silent-corruption quoting risks on top-level scalar
# fields. We scan line-by-line and only flag top-level mapping entries
# (no leading whitespace) whose value isn't already quoted/structured.
for lineno, line in enumerate(fm_text.split("\n"), start=2):
stripped = line.lstrip()
if not stripped or stripped.startswith("#"):
continue
if ":" not in line:
continue
# Top-level mapping keys only — skip nested values, array items
if line.startswith((" ", "\t")):
continue
# Skip pure list-marker lines like "- item" (these can't be top-level
# in our frontmatter convention, but be defensive)
if stripped.startswith("- "):
continue
key, _, val = line.partition(":")
val_stripped = val.strip()
if not val_stripped:
# Key with no value on this line — likely a parent of a nested
# block (`tags:` followed by `- foo`). Nothing to validate here.
continue
# Already quoted or structured (block scalar, flow collection)
if val_stripped[0] in '"\'[{|>':
continue
if re.search(r"\s#", val_stripped):
issues.append(
f"line {lineno}: '{key.strip()}' value contains ' #' — quote it. "
"YAML treats space-then-# as a comment delimiter and silently "
"drops the rest of the value."
)
if re.search(r":\s", val_stripped):
issues.append(
f"line {lineno}: '{key.strip()}' value contains ': ' — quote it. "
"Strict YAML parsers may treat this as a nested mapping."
)
if issues:
sys.stderr.write(f"FAIL: {doc_path}\n")
for issue in issues:
sys.stderr.write(f" {issue}\n")
return 1
print(f"OK: {doc_path}")
return 0
if __name__ == "__main__":
sys.exit(main(sys.argv))