aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Manually evaluate a recent skill execution to record qualitative feedback.
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/evaluate-skillContext preview
What this command does when you run it.
Manually evaluate a recent skill execution to record qualitative feedback.
name: evaluate-skill description: Manually evaluate a recent skill execution to record qualitative feedback.
Manually evaluate a recent skill execution for qualitative feedback.
/abstract:evaluate-skill <skill-name> # Evaluate most recent execution /abstract:evaluate-skill <skill-name> --all # Evaluate all recent executions /abstract:evaluate-skill <skill-name> --date YYYY-MM-DD # Evaluate specific date
Captures human-in-loop qualitative feedback about skill effectiveness to improve the self-improvement loop. This data feeds into:
1. **Loads recent executions** from `~/.claude/skills/logs/<plugin>/<skill>/` 2. **Presents execution summary** (timestamp, duration, outcome, context preview) 3. **Prompts for evaluation**:
4. **Updates log entry** with evaluation metadata 5. **Tracks evaluation completion** (prevents duplicate evaluations)
What slowed you down or caused issues?
What would make this skill better?
Updates the log entry with:
{
"qualitative_evaluation": {
"evaluated_at": "2026-01-08T04:00:00Z",
"rating": 4,
"friction_points": ["Missing error handling for X", "Y was unclear"],
"improvement_suggestions": ["Add example for Z", "Simplify step 3"],
"evaluator_notes": "Worked well but needed clarification on..."
}
}/abstract:evaluate-skill proof-of-work # Output: # Found 3 executions of imbue:proof-of-work in the last 7 days # # Most recent execution: # - Timestamp: 2026-01-08 03:15:23 UTC # - Duration: 2.3s # - Outcome: success # - Context: Validated POW for PR #84 # # Rate effectiveness (1-5): _
/abstract:evaluate-skill proof-of-work --all # Evaluates all unevaluated executions from the last 7 days
/abstract:evaluate-skill proof-of-work --date 2026-01-07 # Evaluates executions from 2026-01-07
**Phase 3** (Log Aggregation):
**Phase 5** (Self-Improvement):
Captures initial execution data
None (manual invocation only).
1.0.0 (Phase 2 implementation)
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Scaffold new Claude Code skills with brainstorming, TDD methodology, and proper frontmatter and module structure.