feat: add af-status, af-score, af-dag, af-report slash command skills

This commit is contained in:
2026-04-06 21:10:22 +02:00
parent 43a147676e
commit 6bae80b874
6 changed files with 125 additions and 2 deletions

23
skills/af-score/SKILL.md Normal file
View File

@@ -0,0 +1,23 @@
---
name: af-score
description: |
Show archetype effectiveness scores across runs.
<example>User: "/af-score"</example>
---
# ArcheFlow Effectiveness Scores
1. Run `./lib/archeflow-score.sh list` if the script exists. Display its output.
2. If the script does not exist, read `.archeflow/memory/effectiveness.jsonl` directly.
3. Summarize per archetype as a table:
| Archetype | Runs | Signal/Noise | Fix Rate | Avg Cost |
|-----------|------|--------------|----------|----------|
| Guardian | ... | ... | ... | ... |
| Skeptic | ... | ... | ... | ... |
- **Signal/Noise**: findings that led to actual fixes vs total findings raised.
- **Fix Rate**: percentage of findings that were applied (not dismissed).
- **Avg Cost**: mean token cost per review across runs.
4. If no effectiveness data exists, say: "No effectiveness data yet. Run `/af-run` at least once."