Agent skill

seeing

Golden path /see — refresh stale score snapshots and identify canvases needing MER capture.

majiayu000534★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill seeing --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Allowed tools: ReadWriteGlobGrepEditBashSkill
Path: skills/analysis/seeing/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the 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 1. **Preflight**: `gp_check_score_api` 2. **Stale detection**: identify canvases with `score_snapshot.captured_at` older than `stale_snapshot_hours` 3. **Refresh**: for each stale canvas, pull fresh score API snapshot, update canvas frontmatter 4. **MER check**: identify canvases missing MER sections → suggest MER capture 5. **Status + suggest next** --- ## Execution ```bash 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"

What's inside
Steps it walks through
  1. Chain
  2. Execution
  3. Truenames Chained
Ships with 1 file
  • metadata.json
Commands it runs
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"
fi
Step 2: Find stale canvases
for canvas in $(gp_list_canvases); do
done
if [[ "$refreshed_count" -gt 0 ]]; then
More from claude-skill-registry
All skills →
About this skill
What does the seeing skill do?

Golden path /see — refresh stale score snapshots and identify canvases needing MER capture.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill seeing --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going