report-writing

report-writing is a skill for Claude Code from zpower426/datapowers. It costs 30 tokens per session (1,375 once invoked), scanned A, original, MIT.

A guide for writing analysis reports and summaries that explain how results were produced, how certain they are, and what action they support.

In plain words
What is it for?
Writing reports for decision-makers, technical peers, and stakeholders, including methods, results, uncertainty, limitations, and next steps.
Why use it?
It helps prevent unsupported conclusions and makes analysis easier for others to reproduce and assess.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the datapowers plugin — 20 skills, 3 commands, 3 agents, 1 hook shipped together

Good fit Writing reports for decision-makers, technical peers, and stakeholders, including methods, results, uncertainty, limitations, and next steps.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zpower426/datapowers/report-writing
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zpower426/datapowers --skill report-writing
Clone the repo
git clone --depth 1 https://github.com/zpower426/datapowers

Made for: Claude Code.

Or install datapowers, the plugin that ships this one along with the rest of its 20 skills, 3 commands, 3 agents, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for report-writing

README.md
[![agentmods](https://agentmods.dev/badge/skills/zpower426/datapowers/report-writing/github.svg)](https://agentmods.dev/skills/zpower426/datapowers/report-writing)
Your own site
<a href="https://agentmods.dev/skills/zpower426/datapowers/report-writing"><img src="https://agentmods.dev/badge/skills/zpower426/datapowers/report-writing/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for report-writing

Your own site · 80×15
<a href="https://agentmods.dev/skills/zpower426/datapowers/report-writing"><img src="https://agentmods.dev/badge/skills/zpower426/datapowers/report-writing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,375 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.01375
Opus 5 $0.00015 $0.00687
Sonnet 5 $0.00006 $0.00275
Haiku 4.5 $0.00003 $0.00137

Measured 9d ago against content hash 7bedf40a165a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

report-writing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/report-writing/SKILL.md · 191 lines

How it starts

The opening of the file, as written. The whole thing — 191 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Report Writing

Produce reproducible, stakeholder-ready analysis reports that communicate findings honestly and lead to clear action.

Iron Law: NO CONCLUSIONS WITHOUT SUPPORTING EVIDENCE IN THE REPORT

Checklist

  1. Audience check — who will read this? What decisions will they make?
  2. Reproducibility header — code version, data snapshot, random seeds
  3. Executive summary — answer + confidence + key caveat, in 3 sentences
  4. Data section — what data was used, quality notes, limitations
  5. Methods section — what was done (enough to reproduce)
  6. Results section — findings with uncertainty (CIs, not just point estimates)
  7. Limitations section — what this analysis CANNOT tell us
  8. Recommendations section — concrete next actions with owners and timelines
  9. Appendix — detailed tables, full code reference

Audience Check

Before writing, answer:

  • Decision maker: Will read executive summary only? → 3-sentence summary must be self-contained
  • Technical peer: Will replicate the analysis? → Methods must include all parameters
  • Stakeholder: Needs to act on findings → Recommendations must be concrete and assigned

Adjust depth accordingly. Never write a 20-page report for a decision that can be summarized in 5 bullet points.

Report Template

# [Analysis Title]

**Date:** YYYY-MM-DD
**Analyst:** [name]
**Code version:** [git SHA]
**Data snapshot:** [date/version]
**Random seed:** 42
**Status:** DRAFT / FINAL

---

## Executive Summary

[Answer to the business question in one sentence.]
[Confidence level and key uncertainty in one sentence.]
[Recommended action in one sentence.]

---

## Business Context

[What decision does this analysis support?]
[What was the success criterion?]

---

## Data

| Dataset | Source | Date Range | Rows | Key Limitations |
|---|---|---|---|---|
| [name] | [source] | [range] | [count] | [limitation] |

Known data quality issues:
- [issue]: [impact on conclusions]

---

## Methods

[Describe what was done in enough detail to reproduce. Include:]
- Data preprocessing steps
- Feature engineering decisions
- Model(s) used and why
- Evaluation methodology (CV strategy, test set split date)
- Primary metric and why it was chosen

---

## Results

### Primary Metric
**[Metric Name]: [value] (95% CI: [lower, upper])**

[Is this better than the baseline? By how much? Is the improvement significant?]

### Secondary Metrics
| Metric | Value | Baseline | Improvement |
|---|---|---|---|
| [metric] | [value] | [baseline] | [delta] |

### Key Findings
1. **[Finding]:** [Evidence] — [implication]
2. **[Finding]:** [Evidence] — [implication]
3. **[Finding]:** [Evidence] — [implication]

---

## Limitations

Be explicit about what this analysis CANNOT tell us:

- **[Limitation]:** [Impact] — [What would be needed to address it]

Examples to always check:
- Correlation ≠ causation: if observational data, state it
- Temporal scope: findings may not hold for future time periods
- Population scope: if trained on a subset, may not generalize
- Missing data: imputation assumptions may affect conclusions

---

## Recommendations

| Action | Owner | Timeline | Expected Impact |
|---|---|---|---|
| [concrete action] | [person/team] | [date] | [measurable outcome] |

**Next analysis step:** [what should be done next, by whom]

---

## Appendix

### A. Full Metrics Table
[All computed metrics, not just the highlights]

### B. Confusion Matrix / Residual Plot
[Include actual plots or tables]

### C. Feature Importance
[Top 20 features with SHAP values]

### D. Code Reference
Full code: `[path/to/notebook or script]`

Read the full file on GitHub · 191 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 191 lines · 30 tokens per session scan A 7bedf40a165a

Subscribe to this mod's changes

report-writing is a skill published in the GitHub repository zpower426/datapowers (1 stars, last pushed 5mo ago), licensed MIT. It adds 30 tokens to every session and 1,375 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.