# Status Reporter

> Generates automated reports on the status and health of the Skill Conglomerate.

- Skill: `scaleto/status-reporter` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add scaleto/status-reporter`
- Raw SKILL.md: https://api.skillmd.com/api/skills/scaleto/status-reporter/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: scaleto (https://skillmd.com/u/scaleto)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/scaleto/status-reporter

---


# Status Reporter Skill

This skill is responsible for gathering metrics and metadata from the entire system to generate a unified view of the project status.

## Purpose
To provide automated visibility into implementation progress, the number of active skills, and the current project phase by querying the "Global Memory" and the file structure.

## Capabilities

### 1. `generate_report`
Generates a `PROJECT_STATUS.md` file in the project root.

*   **Data Sources:**
    *   `project-memory`: To retrieve the current phase, version, and tech stack.
    *   `master-architect/registry.yaml`: To know the theoretical structure of the groups.
    *   `FileSystem`: To count physical skills in each directory.
*   **Output:** Generates/Updates `PROJECT_STATUS.md`.

## Usage (A2A)

```python
request = {
    "type": "TASK",
    "target": "status-reporter",
    "payload": {
        "action": "generate_report"
    }
}
```

## Scripts

### `scripts/generate_dashboard.py`
Python script that performs the gathering and generation logic. 
Can be executed manually or invoked by the orchestrator.

