health

Report Memory plugin operational health via read-only JSON healthcheck diagnostics.

20|2|Updated May 16, 2026
One-click install
npx skills add https://github.com/reddb-io/red-skills --skill health-reddb-io
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: health
Source: https://github.com/reddb-io/red-skills/tree/main/plugins/memory/skills/core/health
Command: npx skills add https://github.com/reddb-io/red-skills --skill health-reddb-io

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Before running memory self-improvement, CI checks, or large agent runs, you need to know whether the Memory plugin is initialized, its graph store is fresh, and whether improvement proposals are pending—without risking accidental mutation of state. ## Core Features & Use Cases - Read-only healthcheck: Runs bootstrap.mjs health --json and interprets every counter against the init-chain state taxonomy without mutating any file. - Operational counters: Reports initialization status, graph mode, graph freshness, Skill telemetry rollups, ranked proposal candidates, high-priority proposals, and pending proposal files. - Actionable next steps: Surfaces recommendedNextActions so agents and CI pipelines follow concrete guidance instead of inventing recovery steps. - Use Case: In an automated workflow, run this healthcheck before improve skills --write-proposal to confirm memory is ready and to detect pending proposals that should be reviewed first. ## Quick Start Ask the agent to run the Memory plugin healthcheck in JSON mode and report the state, counters, and recommended next actions for the current repository.

Frequently Asked Questions about health

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check Memory plugin health before running CI checks?▼

Run the healthcheck with `node bootstrap.mjs health --json` and inspect the `state` field and `recommendedNextActions`. The JSON output reports initialization, graph mode, freshness, and pending proposals without mutating anything.

What does the memory healthcheck report in JSON mode?▼

The healthcheck reports initialized status, graphMode, skillTelemetry, graphFreshness, rollups, proposalCandidates, highPriorityProposals, pendingProposalFiles, topProposals, and recommendedNextActions. Match the state field against the init-chain state taxonomy.

Can I check health for a repository other than the current directory?▼

Yes, pass `--root <dir>` to the health command to check a repository other than the current working directory. This is useful for CI jobs or multi-repository agent workflows.

Does the memory healthcheck modify graph or proposal files?▼

No, the healthcheck is strictly read-only and never mutates graph, proposal, or Skill files. It is a diagnostic intended to run safely before improvement workflows or large agent runs.

What should I do when health state shows attention?▼

Treat `attention` as actionable, not as failure. Follow the `recommendedNextActions` field, and when `pendingProposalFiles` is greater than zero, inspect them with `improve proposals list/show --json`.