Agent skill · AI & Agents

feedback-observing

Read agent interaction logs across packs and detect operational patterns. Emits state-transition FeedbackEvents for degradation/recovery.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill feedback-observing-0xhoneyjar-construct-beehive --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Allowed tools: ReadWriteGlobGrepBash
Path: skills/analysis/feedback-observing-0xhoneyjar-construct-beehive/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

# Feedback Observing Read agent interaction logs across all packs, detect operational patterns (error rates, duration outliers, zero-invocation skills), and emit state-transition FeedbackEvents when patterns change. This skill closes the agent feedback loop — agents report back what worked and what failed. --- ## Core Principle **State-transition only emission.** Only emit FeedbackEvents when a skill's operational state *changes* (healthy → concerning, concerning → healthy). This prevents recursive signal inflation from repeated analysis of the same stable state. --- ## Triggers ``` /feedback-observe # Analyze all packs' agent logs /feedback-observe --pack observer # Specific pack only /feedback-observe --since 7d # Time range (default: 30d) ``` --- ## When to Use - Periodically to check agent health across packs - After deploying new skills or modifying existing ones - When suspecting a skill is silently failing - As part of a daily/weekly maintenance routine --- ## Workflow ### Phase 1: Collect Logs ``` Glob: grimoires/*/agent-logs/*.jsonl For each JSONL file: Parse each line (skip malformed lines, log warning) Filter by --pack if specified Filter by --since if specified (compare

What's inside
Steps it walks through
  1. Core Principle
  2. Triggers
  3. When to Use
  4. Workflow
  5. Phase 1: Collect Logs
  6. Phase 2: Detect Patterns
  7. Phase 3: Compare with Previous Report
  8. Phase 4: Emit State-Transition FeedbackEvents
  9. Phase 5: Generate Report
  10. Error Handling
  11. Integration Points
  12. Validation
Ships with 1 file
  • metadata.json
Commands it runs
source .claude/scripts/lib/event-bus.sh
emit_event "observer.state_transition" \
More from claude-skill-registry
All skills →
About this skill
What does the feedback-observing skill do?

Read agent interaction logs across packs and detect operational patterns. Emits state-transition FeedbackEvents for degradation/recovery.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill feedback-observing-0xhoneyjar-construct-beehive --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