Project tracking
Skill Yesterday-AI/skills/plugins/personal-agent/skills/project-tracking
Yesterday's PUBLIC plugin catalog for Claude Code and Cursor
npx -y skills add Yesterday-AI/skills --skill project-trackingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Standardisiertes Projekt-Tracking für Yesterday KI-Agenten. Use when: setting up a new agent workspace, responding to a status request from another agent or a human team member, or aggregating fleet-wide project status. Covers: PROJECTS_TRACKING.md structure, YAML frontmatter, responsibility matrix, status definitions, and the Project Status Report format.
SKILL.md
3.3 KB, as published. Nobody here has run it
Project Tracking
Dieser Skill definiert den verbindlichen Standard für das Projekt-Tracking innerhalb der Yesterday KI-Agenten-Flotte. Ziel ist eine maschinenlesbare und menschenfreundliche Übersicht über Zuständigkeiten und Fortschritte.
Setup
Lege im Root deines Agent-Workspaces eine Datei PROJECTS_TRACKING.md an.
1. YAML Frontmatter (Pflicht)
---
agent_id: "NAME_DES_AGENTS" # z.B. Yessy, Moss, Willi, Emmett, Manni
last_sync: YYYY-MM-DD
active_projects: ["Y-ID1", "Y-ID2"]
capabilities: ["skill-1", "skill-2"]
---
2. Tracking-Matrix (Pflicht)
| ID | Projekt | Lead (Human) | Lead (Agent) | Status | Kurzbeschreibung | Source of Truth |
| :--- | :--- | :--- | :--- | :--- | :--- | :--- |
| **Y-ID** | **Name** | Wer gibt vor? | Wer führt aus? | 🟢 | Was wird getan? | Repo / Slack / etc. |
3. Status-Definitionen
| Symbol | Name | Bedeutung |
|---|---|---|
| 🟢 | Active | Läuft nach Plan. |
| 🟡 | WIP/Blocked | In Arbeit oder wartet auf Input/Entscheidung. |
| ⚪ | Discovery | Recherche/Ideenphase, noch kein aktiver Output. |
| 🟣 | Skill-Dev | Fokus auf Entwicklung neuer KI-Fähigkeiten. |
| 🔴 | CRITICAL | Höchste Priorität, sofortiges Handeln erforderlich. |
| ✅ | Done | Abgeschlossen (bleibt zur Dokumentation im Board). |
Project Status Report Format
Wenn ein Agent nach seinem Projektstatus gefragt wird – egal ob durch einen anderen Agenten, einen Personal Assistant oder ein Human-Teammitglied –, antwortet er im folgenden Format:
### Agent Status Report: [AGENT_ID]
**agent_id:** name
**Rolle:** Kurze Beschreibung der Hauptaufgabe im Team.
**Datum:** YYYY-MM-DD
#### Projekte
| ID | Projekt | Lead (Human) | Status | Beschreibung | Source of Truth |
| :--- | :--- | :--- | :--- | :--- | :--- |
| Y-ID | Name | Human | 🟢 Active | Was machst du konkret? | Wo liegt der echte Status? |
#### Capabilities
- `skill-1`: Kurze Beschreibung.
- `skill-2`: Kurze Beschreibung.
#### Offene Punkte / Blockers (optional)
- [ ] Was brauche ich, um weiterzumachen?
Integrations-Logik
- ClawRAG: Das File wird regelmäßig indiziert, um teamübergreifende Abfragen zu ermöglichen ("Wer macht X?").
- Heartbeat: Agenten prüfen dieses File in ihren Heartbeat-Zyklen, um Proaktivität zu steuern.
- Handover: Bei Delegierung von Tasks wird die ID und der Status im Tracking beider beteiligter Agenten aktualisiert.
- Router: Jeder Personal Assistant aggregiert die für seinen Human relevanten Trackings.
Hinweise
- Die
PROJECTS_TRACKING.mdist kein Ersatz für den echten Projektstatus in Repos oder Slack. - Der YAML-Block und die Tabelle sind Pflicht. Weitere Sektionen sind optional.
last_syncwird bei jeder manuellen oder automatischen Aktualisierung gesetzt.- Die
Source of Truth-Spalte immer befüllen – sie ist der Kern des Routing-Konzepts.