Labsco
github logo

reporting

✓ Official4,700

by github · part of github/gh-aw

Guidelines for formatting reports using HTML details/summary tags

🔥🔥✓ VerifiedFreeQuick setup
🧰 Not standalone. This skill ships with github/gh-aw and only works together with that tool — install the tool first, then add this skill.

This is the playbook your agent receives when the skill activates — you don't need to read it to use the skill, but it's here to audit before installing.


name: reporting description: Format reports with HTML details/summary blocks for readable output.

Report Format Guidelines

Use these rules to format reports with collapsible sections.

Use HTML Details/Summary Tags

Reduce scrolling and improve readability: wrap reports in HTML <details> and <summary> tags so users can expand and collapse sections.

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>