2026-04-04 15:21:29 -04:00
|
|
|
# Timmy Workflow Quick Reference
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
Updated: April 4, 2026
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
## What Lives Where
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
- `~/.timmy`: Timmy's workspace, lived data, heartbeat, archive artifacts
|
|
|
|
|
- `~/.timmy/timmy-config`: Timmy's identity and orchestration sidecar repo
|
|
|
|
|
- `~/.hermes`: Hermes harness, sessions, config overlay, helper scripts
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
## Most Useful Commands
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
### Workflow Status
|
2026-03-30 16:46:35 +00:00
|
|
|
|
|
|
|
|
```bash
|
2026-04-04 15:21:29 -04:00
|
|
|
~/.hermes/bin/ops-panel.sh
|
|
|
|
|
~/.hermes/bin/ops-gitea.sh
|
|
|
|
|
~/.hermes/bin/timmy-dashboard
|
2026-03-30 16:46:35 +00:00
|
|
|
```
|
|
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
### Workflow Helpers
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
```bash
|
|
|
|
|
source ~/.hermes/bin/ops-helpers.sh
|
|
|
|
|
ops-help
|
|
|
|
|
ops-review-queue
|
|
|
|
|
ops-unassigned all
|
|
|
|
|
ops-queue codex-agent all
|
2026-03-30 16:46:35 +00:00
|
|
|
```
|
|
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
### Pipeline Freshness
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
```bash
|
|
|
|
|
~/.hermes/bin/pipeline-freshness.sh
|
2026-03-30 16:46:35 +00:00
|
|
|
```
|
|
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
### Archive Pipeline
|
2026-03-30 16:46:35 +00:00
|
|
|
|
|
|
|
|
```bash
|
2026-04-04 15:21:29 -04:00
|
|
|
python3 - <<'PY'
|
|
|
|
|
import json, sys
|
|
|
|
|
sys.path.insert(0, '/Users/apayne/.timmy/timmy-config')
|
|
|
|
|
from tasks import _archive_pipeline_health_impl
|
|
|
|
|
print(json.dumps(_archive_pipeline_health_impl(), indent=2))
|
|
|
|
|
PY
|
2026-03-30 16:46:35 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-04-04 15:21:29 -04:00
|
|
|
python3 - <<'PY'
|
|
|
|
|
import json, sys
|
|
|
|
|
sys.path.insert(0, '/Users/apayne/.timmy/timmy-config')
|
|
|
|
|
from tasks import _know_thy_father_impl
|
|
|
|
|
print(json.dumps(_know_thy_father_impl(), indent=2))
|
|
|
|
|
PY
|
2026-03-30 16:46:35 +00:00
|
|
|
```
|
|
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
### Manual Dispatch Prompt
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
```bash
|
|
|
|
|
~/.hermes/bin/agent-dispatch.sh groq 542 Timmy_Foundation/the-nexus
|
2026-03-30 16:46:35 +00:00
|
|
|
```
|
|
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
## Best Files to Check
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
### Operational State
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
- `~/.timmy/heartbeat/last_tick.json`
|
|
|
|
|
- `~/.hermes/model_health.json`
|
|
|
|
|
- `~/.timmy/twitter-archive/checkpoint.json`
|
|
|
|
|
- `~/.timmy/twitter-archive/metrics/progress.json`
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
### Archive Feedback
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
- `~/.timmy/twitter-archive/notes/`
|
|
|
|
|
- `~/.timmy/twitter-archive/knowledge/profile.json`
|
|
|
|
|
- `~/.timmy/twitter-archive/training/dpo/`
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
### Review and Queue
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
- Gitea PR queue
|
|
|
|
|
- Gitea unassigned issues
|
|
|
|
|
- Timmy/Allegro assigned review queue
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
## Rules of Thumb
|
2026-03-30 16:46:35 +00:00
|
|
|
|
2026-04-04 15:21:29 -04:00
|
|
|
- If it changes identity or orchestration, review it carefully in `timmy-config`.
|
|
|
|
|
- If it changes lived outputs or training inputs, it probably belongs in `timmy-home`.
|
|
|
|
|
- If it only “sounds right” but is not proven by runtime state, it is not verified.
|
|
|
|
|
- If a change is major, package it as a PR for Timmy review.
|