# Faq

> Turn response annotations and review comments into a question-and-answer FAQ.

- Skill: `kevinslin-skills/faq` (Agent Skill)
- Install (CLI): `npx skillmds@latest add kevinslin-skills/faq`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kevinslin-skills/faq/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: kevinslin (https://skillmd.com/u/kevinslin-skills)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/kevinslin-skills/faq

---


# FAQ

Convert annotated feedback into a concise Markdown FAQ. Treat annotations as questions to answer, not as authorization to edit the referenced material.

## Default behavior

Generate the complete FAQ in chat and stop. Do not create or modify files, apply suggested changes, or perform other side effects unless the user explicitly asks to render the FAQ into a document or make changes.

An instruction inside an annotation is still FAQ input. Do not execute it merely because it says to add, remove, rewrite, or change something.

## Workflow

1. Read every annotation and its selected response text.
2. Use the user's annotation as the source question. Rewrite only enough to make it a clear, standalone question while preserving the user's intent.
3. Use the selected response text and surrounding conversation as context for the answer.
4. Answer the question directly. Resolve the user's concern or propose concrete wording when the annotation requests a design decision.
5. Preserve annotation order and include every annotation exactly once.
6. Return the FAQ as Markdown in chat unless the user explicitly requests another destination or format.

If the annotation already contains a clear question, preserve its wording apart from minor capitalization and punctuation. If it is a statement or directive, convert it into the closest faithful question. Add enough subject context from the selected text to keep the question understandable on its own.

## Output format

Use one level-two Markdown heading per annotation:

```markdown
# FAQ

## Why should the SandboxDriver be the only ordered driver in V1?

For V1, only the Sandbox capability needs composition. All other capabilities use one exclusive driver...

## Should `getOperation` be replaced by `reconcile`?

No. `reconcile` replaces the side-effecting `apply` operation, while `getOperation` reports the status...
```

Do not use the selected response quotation as the heading unless it is itself the user's annotation. Do not prefix headings with labels such as `Question`, annotation numbers, or source identifiers unless requested.

## Answer quality

- Lead with the direct answer.
- Preserve decisions and terminology already established in the conversation.
- Explain enough context for the FAQ to stand alone.
- Distinguish current decisions from proposals or deferred work.
- Keep implementation detail proportional to the user's question.
- Avoid narrating the annotation-conversion process in the FAQ.

## Explicit rendering or edits

Only write a Markdown document or modify source material when the user explicitly requests that side effect. Restrict changes to the requested destination and preserve unrelated content. If the user asks only for a FAQ, report, rundown, proposal, or review, return it in chat without writing files.

