faq-generator
Generates a comprehensive FAQ section for any product, API, or documentation page.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generates a comprehensive FAQ section for any product, API, or documentation page.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Runs a systematic checklist review on any code diff or file, covering correctness, security, performance, and readability.
Writes a high-quality CLAUDE.md, .cursorrules, or .windsurfrules file that gives a coding agent the right project context, conventions, and constraints to work effectively.
Designs an eval suite for an LLM agent or pipeline including success metrics, trajectory scoring, LLM-as-judge setup, and regression test cases.
Designs a hybrid retrieval pipeline combining dense vector search and BM25 sparse search with reciprocal rank fusion, and explains when to use each configuration.
Converts a workflow description into a LangGraph node/edge graph with typed state, conditional routing, and human-in-the-loop checkpoints.
Audits an AI application for unnecessary token spend and recommends prompt caching, model routing, and token reduction techniques to cut costs.
| name | FAQ Generator |
| description | Generates a comprehensive FAQ section for any product, API, or documentation page. |
| category | writing |
| tags | ["faq","documentation","content","ux"] |
| author | simplyutils |
This skill generates a comprehensive, well-structured FAQ section for any product, API, feature, or documentation page. It anticipates the questions real users ask (not the questions you wish they'd ask), groups them logically, and writes clear, direct answers that actually resolve the doubt rather than redirecting to other pages. The output is ready to paste into documentation, a help center, or a landing page.
Use this when launching a new product or feature, when your support team keeps answering the same questions, when you want to reduce friction for new users, or when you're writing documentation and want to anticipate objections.
Copy this file to .agents/skills/faq-generator/SKILL.md in your project root.
Then ask:
Provide:
Add the instructions below to your .cursorrules or paste them into the Cursor AI pane. Provide the product description and any source material.
Paste the product description or documentation and ask Codex to follow the instructions below to generate the FAQ.
When asked to generate FAQs, follow these steps:
Before writing, identify:
Produce questions from these perspectives:
Getting started
How it works
Limitations and edge cases
Pricing and billing
Security and privacy
Troubleshooting
Rules for writing FAQ answers:
Group questions under logical headings. Common groupings:
Keep each section to 3–6 questions. If you have more, split into sub-sections.
Format each FAQ entry as:
### [Question?]
[Direct answer. Followed by any necessary detail.]
[Optional: link to more information]
Input to Agent:
"Use the FAQ Generator skill. Product: a file conversion API that converts PDFs to Word documents and vice versa. Target audience: developers. Free plan: 50 conversions/month, paid plan: $29/month for 5,000 conversions. Files are processed server-side and deleted after 1 hour."
Output from Agent:
Frequently Asked Questions
General
What does the ConvertAPI do?
ConvertAPI converts files between PDF and Word (DOCX) format via a simple REST API. You upload a file, specify the output format, and receive a download URL for the converted file.
What file formats are supported?
Currently PDF → DOCX and DOCX → PDF. Support for additional formats (XLSX, PPTX, HTML) is on the roadmap.
Getting Started
How do I get an API key?
Sign up at [dashboard link]. Your API key is available immediately on the dashboard — no approval needed.
Is there a free plan?
Yes. The free plan includes 50 conversions per month with no credit card required. Free plan conversions are rate-limited to 5 concurrent requests.
How It Works
How long does a conversion take?
Most conversions complete in 2–5 seconds. Complex documents with many images or embedded fonts may take up to 30 seconds.
How long is my file stored?
Uploaded files and converted outputs are automatically deleted from our servers after 1 hour. We do not retain any copies after deletion.
Pricing
What does the paid plan cost?
The paid plan is $29/month and includes 5,000 conversions. Additional conversions beyond 5,000 are billed at $0.006 each.
What happens if I exceed my monthly limit?
On the free plan, requests beyond 50 will return a 429 error until the next billing cycle. On the paid plan, you are automatically billed for overages at $0.006 per conversion.
Security & Privacy
Are my files secure?
Files are transferred over HTTPS, stored encrypted at rest, and automatically deleted after 1 hour. We do not share your files with any third party.
Is my data used to train AI models?
No. Your files are never used for training or any purpose other than performing the conversion you requested.
Troubleshooting
I'm getting a 413 error — what does it mean?
Your file exceeds the maximum allowed size of 50 MB. Split large documents or compress images before uploading.
My converted Word document has formatting issues — what can I do?
Complex PDF layouts (multi-column, embedded tables) may not convert perfectly. Try enabling the
preserveLayout: trueoption in your request, which uses a slower but more accurate conversion engine.