Log and query Aria's performance reviews and self-assessments.
Log and query Aria's performance reviews, self-assessments, and improvement tracking.
exec python3 /app/skills/run_skill.py performance <function> '<json_args>'
Log a performance review entry.
exec python3 /app/skills/run_skill.py performance perf_log '{"period": "daily", "score": 85, "summary": "Completed 5 tasks, helped with code reviews", "strengths": ["fast responses", "code quality"], "improvements": ["context retention"]}'
Get performance history.
exec python3 /app/skills/run_skill.py performance perf_list '{"period": "daily", "limit": 10}'
Get performance trends and statistics.
exec python3 /app/skills/run_skill.py performance perf_stats '{"days": 30}'
GET /performance - List performance logsPOST /performance - Create performance entryperformance_log:
| Column | Type | Description |
|---|---|---|
| id | SERIAL | Primary key |
| period | TEXT | Review period |
| score | NUMERIC | Performance score |
| summary | TEXT | Summary text |
| strengths | JSONB | Strengths array |
| improvements | JSONB | Improvements array |
| metadata | JSONB | Additional data |
| created_at | TIMESTAMP | Creation time |