AI & Agentslow risk

report-writer

Report writing skill that should be applied AFTER answering any user query. Whenever the deep agent produces a final answer, use this skill to also write a structured markdown report of the interaction (question, approach, findings, answer, sources) and save it as a file using the write_file tool. Use for every substantive answer, and especially when the user asks for a report, summary document, or saved output.

264Gaurav/DeepAgents·deepagents/skills/report-writer/SKILL.md
32/ 100Recommendation

Install this skill

Choose your coding agent and copy a project or personal installation command.

Pinned to the indexed commit
Project installation.agents/skills/report-writer
npx skills add https://github.com/264Gaurav/DeepAgents/tree/9a69ad9fb8eb2760e2a7886a51d7dc1e08d4a2ac/deepagents/skills/report-writer -a codex -y
Personal installation~/.agents/skills/report-writer
npx skills add https://github.com/264Gaurav/DeepAgents/tree/9a69ad9fb8eb2760e2a7886a51d7dc1e08d4a2ac/deepagents/skills/report-writer -a codex -g -y
Manual folder.agents/skills/report-writerOfficial docs ↗
Project installation.claude/skills/report-writer
npx skills add https://github.com/264Gaurav/DeepAgents/tree/9a69ad9fb8eb2760e2a7886a51d7dc1e08d4a2ac/deepagents/skills/report-writer -a claude-code -y
Personal installation~/.claude/skills/report-writer
npx skills add https://github.com/264Gaurav/DeepAgents/tree/9a69ad9fb8eb2760e2a7886a51d7dc1e08d4a2ac/deepagents/skills/report-writer -a claude-code -g -y
Manual folder.claude/skills/report-writerOfficial docs ↗
Project installation.agents/skills/report-writer
npx skills add https://github.com/264Gaurav/DeepAgents/tree/9a69ad9fb8eb2760e2a7886a51d7dc1e08d4a2ac/deepagents/skills/report-writer -a github-copilot -y
Personal installation~/.copilot/skills/report-writer
npx skills add https://github.com/264Gaurav/DeepAgents/tree/9a69ad9fb8eb2760e2a7886a51d7dc1e08d4a2ac/deepagents/skills/report-writer -a github-copilot -g -y
Manual folder.agents/skills/report-writerOfficial docs ↗
Project installation.agents/skills/report-writer
npx skills add https://github.com/264Gaurav/DeepAgents/tree/9a69ad9fb8eb2760e2a7886a51d7dc1e08d4a2ac/deepagents/skills/report-writer -a cursor -y
Personal installation~/.cursor/skills/report-writer
npx skills add https://github.com/264Gaurav/DeepAgents/tree/9a69ad9fb8eb2760e2a7886a51d7dc1e08d4a2ac/deepagents/skills/report-writer -a cursor -g -y
Manual folder.agents/skills/report-writerOfficial docs ↗
Project installation.agents/skills/report-writer
npx skills add https://github.com/264Gaurav/DeepAgents/tree/9a69ad9fb8eb2760e2a7886a51d7dc1e08d4a2ac/deepagents/skills/report-writer -a gemini-cli -y
Personal installation~/.gemini/skills/report-writer
npx skills add https://github.com/264Gaurav/DeepAgents/tree/9a69ad9fb8eb2760e2a7886a51d7dc1e08d4a2ac/deepagents/skills/report-writer -a gemini-cli -g -y
Native Gemini CLIgemini skills install https://github.com/264Gaurav/DeepAgents.git --scope workspace --path deepagents/skills/report-writer
Manual folder.agents/skills/report-writerOfficial docs ↗
⚠ Installation uses the open-source skills CLI. Inspect the source and permissions before running the command.

Skill instructions

View source on GitHub ↗
# Report Writer Skill

This is a **post-answer** skill: after you finish answering ANY substantive
user query, generate a structured report of what was asked, what you did,
and what you concluded — and save it to a file with the `write_file` tool.

## When to Use
- ALWAYS after producing a final answer to a substantive question
- When the user explicitly asks for a report, summary document, or saved output
- After research tasks, code generation tasks, or multi-step workflows
- Skip only for trivial exchanges (greetings, clarifying questions)

## Supporting Files (read these for deeper context)
- `instructions.md` — the exact report template, file-naming rules, and writing standards
- `examples.md` — sample reports showing the expected quality and structure

## Core Workflow
1. Answer the user's question first, as normal (possibly using other skills).
2. Read `instructions.md` in this skill folder for the report template.
3. Fill in the template: title, date, question, approach, key findings, answer, sources.
4. Save the report with `write_file` to `/reports/<topic-slug>-report.md`.
5. Tell the user the report was saved and where.

## Quick Standards
- Reports are markdown files saved under `/reports/`
- File name: kebab-case topic slug + `-report.md` (e.g., `/reports/lambda-cost-report.md`)
- Always include: Question, Approach, Key Findings, Answer, Sources/Tools Used
- Keep the report self-contained — readable without the chat transcript
- Be factual; do not add claims to the report that were not in your answer