Agent skill
seeing
Golden path /see — refresh stale score snapshots and identify canvases needing MER capture.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/seeing-0xhoneyjar-construct-beehive
SKILL.md
/see — Refresh Score Snapshots
Golden path command that identifies stale canvases and refreshes their score API snapshots. Surfaces canvases missing MER (Most Engaged Response) data.
Chain
- Preflight:
gp_check_score_api - Stale detection: identify canvases with
score_snapshot.captured_atolder thanstale_snapshot_hours - Refresh: for each stale canvas, pull fresh score API snapshot, update canvas frontmatter
- MER check: identify canvases missing MER sections → suggest MER capture
- Status + suggest next
Execution
source scripts/observer/golden-path-lib.sh
gp_status_header "see"
# Step 1: Score API preflight
if ! gp_check_score_api; then
gp_status_fail "score-api" "unreachable — showing staleness ages without refreshing"
# Degrade: just show how stale each canvas is
fi
# Step 2: Find stale canvases
stale_count=0
refreshed_count=0
for canvas in $(gp_list_canvases); do
# Extract captured_at from frontmatter
# Compare against current time - stale_snapshot_hours
# If stale: refresh via score-api-query.sh, update frontmatter
done
if [[ "$refreshed_count" -gt 0 ]]; then
gp_status_ok "refresh" "${refreshed_count} canvases refreshed"
else
gp_status_skip "refresh" "all snapshots current"
fi
# Step 3: MER check
missing_mer=0
for canvas in $(gp_list_canvases); do
# Check if canvas has MER section
done
if [[ "$missing_mer" -gt 0 ]]; then
gp_status_ok "mer-check" "${missing_mer} canvases need MER capture"
else
gp_status_skip "mer-check" "all canvases have MERs"
fi
gp_progression_summary
gp_suggest_next "see"
gp_status_footer
Truenames Chained
| Truename | Purpose |
|---|---|
score-api-query.sh |
Fetch fresh score snapshots |
/observe |
Update canvas frontmatter |
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?