skillby matryer

Report Command

## Command: `report`

Installs: 0
Used in: 1 repos
Updated: 1mo ago
$npx ai-builder add skill matryer/report

Installs to .claude/skills/report/

# Report Command

## Command: `report`

Run a predefined report from the `/reports/` folder.

### Input

The user provides the name of the report to run (without the `.md` extension).

Example: `report team-overview`

### Steps

1. **Identify the report file**
   
   Look for the report file at `/reports/{name}.md` where `{name}` is the input provided by the user.

2. **Handle missing report**
   
   If the report file does not exist:
   
   - Show an error: `Report not found: {name}`
   - Read `/reports/README.md` to list available reports
   - Display the available reports to the user
   - Stop execution
   
   Example error:
   ```
   ❌ Report not found: weekly-summary
   
   Available reports:
   - team-overview — A concise overview of each person and their current focus.
   ```

3. **Execute the report**
   
   If the report file exists:
   
   - Read the report file
   - Find the `## Prompt` section
   - Execute the prompt against the knowledgebase
   - Output the results in the format specified by the report

4. **Handle missing prompt**
   
   If the report file exists but has no `## Prompt` section:
   
   - Show an error: `Report file found but contains no prompt: {name}`
   - Suggest the user add a `## Prompt` section to the report file

### Guidelines

- Report names are case-sensitive and match the filename (without `.md`)
- Reports should be executed exactly as specified in their `## Prompt` section
- Output should follow any format guidelines in the report file
- If the report references folders that don't exist (e.g., no `/people/` folder), produce appropriate empty output rather than an error

Quick Install

$npx ai-builder add skill matryer/report

Details

Type
skill
Author
matryer
Slug
matryer/report
Created
1mo ago