agentsclimarketplace

Live state verification

Skill selamy-labs/agent-skills/skills/live-state-verification

Use when verifying service health, deployed state, cluster objects, credentials, or automation results where the wrong auth context can produce false empty results.From its SKILL.md

Install
npx -y skills add selamy-labs/agent-skills --skill live-state-verification

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

3.1 KB, 607 tokens by cl100k_base, as published. Nobody here has run it

Live State Verification

Use this when a result depends on the real system state, not just logs or a local assumption.

Verification Rules

  • Use the correct identity and environment for the artifact being checked.
  • Do not suppress stderr on presence or health checks; auth errors and empty results can look identical after redirection.
  • Corroborate important claims from at least two views.
  • Prefer direct artifact checks over proxy logs.

Procedure

  1. Name the artifact:
    • deployed revision, job run, pod, service endpoint, repository setting, secret version, document, email, or workflow result.
  2. Confirm the auth context:
    • account/user
    • cluster/project/region
    • kubeconfig or exec plugin
    • token scope or installation
  3. Run the primary check without hiding errors.
  4. Run a second check from a different plane:
    • API plus UI/CLI
    • controller status plus workload behavior
    • repository metadata plus branch protection behavior
    • pod environment plus application-level operation
    • startup logs plus the exact model-facing tool or endpoint call
  5. Preserve concise evidence:
    • command class, artifact id, timestamp, observed status
    • do not store credentials or sensitive payloads

Runtime Tool Verification

When the artifact is an agent tool, MCP server, sidecar, or gateway, startup success is not enough. Verify the operation from the same environment that the model or runtime child process uses.

  • Check inherited runtime environment, especially HOME, cache, config, and durable data directories after privilege drops.
  • Check required persisted files are owned and readable/writable by the runtime UID, not just by root during entrypoint setup.
  • Probe a required model-facing operation, such as a harmless list/accounts or health/list-tools call, after rollout.
  • Report the actual failing stage separately from package/image/access failures so CI does not misclassify runtime setup errors.
  • Prefer an exact-image or deployed-pod probe over a host/root smoke when HOME, UID, or filesystem ownership can differ.

Failure Modes

  • Missing exec credential plugin on PATH.
  • Checking the wrong cluster or project.
  • Token has read access to one repo/org but not the target.
  • Stderr redirection hides a permission error.
  • A controller is healthy while the workload it manages is not.
  • A log says "sent" or "applied" but the external artifact never changed.
  • A root-run startup canary passes while the runtime child keeps HOME=/root or cannot read persisted files after dropping privileges.
  • A gateway registers tools but a required model-facing tool call still fails.

Done

  • The claim is backed by the real artifact or two independent views.
  • Runtime/tool claims include a same-UID or model-facing operation, not only a root-run startup smoke.
  • Any uncertainty is stated as uncertainty rather than upgraded to "verified."

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,835. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.