Agent SkillsAgent Skills
githubnext

reporting

@githubnext/reporting
githubnext
4,416
373 forks
Updated 5/5/2026
View on GitHub

Guidelines for formatting reports using HTML details/summary tags

Installation

$npx agent-skills-cli install @githubnext/reporting
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Pathskills/reporting/SKILL.md
Branchmain
Scoped Name@githubnext/reporting

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

npx agent-skills-cli list

Skill Instructions


name: reporting description: Guidelines for formatting reports using HTML details/summary tags

Report Format Guidelines

This skill provides guidelines for formatting reports with collapsible sections.

Use HTML Details/Summary Tags

To prevent excessive scrolling and improve readability, wrap your reports in HTML <details> and <summary> tags. This allows users to expand and collapse sections as needed.

Basic Structure:

<details>
<summary>πŸ“Š Report Title - [Date]</summary>

## Report Content

Your detailed report content goes here...

### Section 1

Content for section 1...

### Section 2

Content for section 2...

</details>