Claude Skill

cp-skill-health-check

Diagnose Commonplace project layout, promoted-skill discovery, user-level uv tool installation, command PATH ownership, and launch-environment failures.

LLM Mart · 0 points · 19 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download zby-commonplace-kb_instructions_cp-skill-health-check-e113a18.zip · 4 KB
Part of zby/commonplace — 17 skills

Install

skills CLI npx skills add https://github.com/zby/commonplace/tree/main/kb/instructions/cp-skill-health-check
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install zby-commonplace@llmmart
Git git clone https://github.com/zby/commonplace.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole zby/commonplace collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Commonplace Health Check

EXECUTE NOW

Identify the installation or runtime constraint blocking a Commonplace operation and report the smallest repair supported by evidence.

Use this skill when a Commonplace KB has missing skills, missing or failing commonplace-* commands, commands that work in one shell but not in an IDE or agent runtime, or a workflow blocked on sub-agent creation or isolation. It applies both to installed KBs, where shipped content lives under kb/commonplace/, and to the Commonplace source repository, where shipped content lives directly under kb/.

Target symptom: $ARGUMENTS

Do not modify files during diagnosis. Report the evidence and the smallest repair. Apply a repair only when the user asked for one.

Run in the context being diagnosed; do not delegate the health check itself. If already invoked in a worker, identify that scope and do not extrapolate its capabilities to its parent. For a delegation symptom, run Step 3 after the layout and skill checks; run the package checks only if the evidence also points to an installation or command failure. For a general health check, run all steps.

Step 1 — Locate the project and classify the layout

From the workspace root, inspect:

pwd
test -f AGENTS.md && echo "AGENTS.md: present" || echo "AGENTS.md: missing"
test -f CLAUDE.md && echo "CLAUDE.md: present" || echo "CLAUDE.md: missing"
test -d kb/commonplace && echo "layout: installed KB" || true
test -f pyproject.toml && test -d src/commonplace && echo "layout: source repo" || true
test -d .agents/skills && echo ".agents/skills: present" || true
test -d .claude/skills && echo ".claude/skills: present" || true

Interpretation:

  • Installed KB: kb/commonplace/{notes,reference,instructions}/ exists.
  • Source repository: pyproject.toml, src/commonplace/, and top-level kb/{notes,reference,instructions}/ exist.
  • Neither: the wrong directory is open or commonplace-init has not run.
  • .venv is not a Commonplace layout requirement. A project may still own one for unrelated dependencies.

Step 2 — Check the control plane and skill projections

Read the active root control-plane file and confirm it routes Commonplace commands by bare name. Then inspect the canonical health skill and the runtime projections:

test -f kb/commonplace/instructions/cp-skill-health-check/SKILL.md && echo "installed canonical skill: OK" || true
test -f kb/instructions/cp-skill-health-check/SKILL.md && echo "source canonical skill: OK" || true
test -f .agents/skills/cp-skill-health-check/SKILL.md && echo ".agents projection: OK" || true
test -f .claude/skills/cp-skill-health-check/SKILL.md && echo ".claude projection: OK" || true

If the canonical skill exists but the current runtime cannot discover its projection, commonplace-init may need to be rerun or the runtime may use another skill-discovery surface. Do not repair a Commonplace source checkout with commonplace-init; follow the source repository's AGENTS.md instead.

Step 3 — Check delegation, agent depth, and isolation

Inspect the current session's exposed tools, runtime instructions, effective settings when available, and any supplied launch error. Record:

  • whether a harness worker-launch tool is available and permitted;
  • the current agent depth, the maximum permitted depth, and their counting convention, when exposed;
  • how many additional nested worker levels those values permit;
  • whether launch supports a fresh context without the parent's conversation;
  • available concurrent worker capacity, separately from nesting depth.

Report unexposed values as unknown. A configuration file is evidence of configured intent, not proof that the running session loaded it. Neither an installed agent CLI nor a skill's allowed-tools declaration proves that a worker-launch tool is available. Do not infer depth from agent names, the number of visible chats, or the number of free worker slots.

For a failing workflow, read its operative instructions and map the nesting needed from the failing caller: who launches whom, and at which stage. Count a skill's context: fork only if this runtime actually executes it in a child context. Sequential sibling workers reuse a level; do not add their count to the required depth. For ingest, the agent executing cp-skill-ingest must be able to launch a fresh drafting worker; if ingest itself runs in a child of the user-facing agent, drafting needs a further level. Compare the required nesting with the remaining depth at that caller, not merely at the health-check agent. If the caller's depth or runtime behavior is unavailable, report that comparison as unresolved.

When a delegation symptom remains unresolved and a harness launch tool is available and permitted, make at most one diagnostic worker launch from the current context. Use a fresh-context option if supported. Give it only:

This is a Commonplace worker-launch diagnostic. Reply with
COMMONPLACE_WORKER_OK and any agent-depth or nesting-limit values explicitly
exposed in your runtime instructions; report unknown otherwise. Do not read
files, use tools, invoke skills, spawn workers, or modify anything.

Collect the response and release the worker through the harness when supported. Preserve any launch failure verbatim. Success establishes only that one child could run from this context at this time; it does not establish the maximum depth or prove conversation isolation. Establish isolation from the launch API's documented contract and the actual launch arguments; otherwise report it as unknown. Do not probe recursively or launch an agent CLI from the shell. If probing is unavailable or prohibited, report the evidence gap and continue diagnosis.

Classify the evidence as missing launch capability, delegation prohibited, depth exhausted, concurrent capacity exhausted, isolation unavailable, another launch failure, or unresolved. A missing tool alone does not establish why it is missing. Recommend a shallower entry point, enabling supported delegation, or waiting for an owned worker slot only when the evidence supports that repair. Report the specific workflow stage affected. A diagnosis does not authorize changing runtime settings or bypassing the workflow's isolation rule.

Step 4 — Check the uv tool installation and command ownership

On Linux/macOS:

command -v uv || true
uv tool list || true
uv tool dir --bin || true
command -v commonplace-init || true
command -v commonplace-validate || true
which -a commonplace-validate 2>/dev/null || true

On native Windows PowerShell:

Get-Command uv -ErrorAction SilentlyContinue
uv tool list
uv tool dir --bin
Get-Command commonplace-init -All -ErrorAction SilentlyContinue
Get-Command commonplace-validate -All -ErrorAction SilentlyContinue

Classify the result:

  • uv missing: the installation prerequisite is absent.
  • llm-commonplace absent from uv tool list: the user-level tool is not installed.
  • Command exists inside uv tool dir --bin but bare-name lookup fails: the tool executable directory is missing from this process's PATH.
  • Bare name resolves outside uv tool dir --bin: another install or a project venv shadows the user-level tool. Report every candidate from which -a or Get-Command -All.
  • Only some declared commonplace-* commands exist: the tool installation is incomplete or stale after an entry-point metadata change; reinstall it.
  • A fresh terminal resolves the command but the IDE or agent does not: the launch class did not inherit the updated user environment. Treat this as runtime environment propagation, not package absence.

Do not use uv tool install --force as the default repair for an executable conflict. First identify which installation owns the conflicting name and remove or reorder the stale owner.

Step 5 — Check legacy project-environment residue

Inspect only; do not delete:

test -f .envrc && sed -n '1,80p' .envrc || true
test -d .venv && echo ".venv exists; determine its owner before cleanup" || true

The exact .envrc generated by older Commonplace releases contained only:

export PATH="$PWD/.venv/bin:$PATH"
export UV_CACHE_DIR="$PWD/.uv-cache"

That exact file is obsolete after the user-level tool works in fresh processes. An edited .envrc must be reviewed manually. A .venv may hold the project's own dependencies; never classify it as removable merely because Commonplace no longer needs it.

Step 6 — Check package and validator health

If this is an installed KB:

commonplace-validate kb/commonplace/reference/commands.md

If this is the Commonplace source repository:

commonplace-validate kb/reference/commands.md
uv run pytest -q

Interpretation:

  • Command not found: return to step 4.
  • Import or dependency error: reinstall the uv tool. For an editable source install, metadata and dependency changes require uv tool install --reinstall --python ">=3.11" --editable . even though ordinary source edits do not.
  • Validator runs: the command package is healthy; this does not establish worker availability, nesting depth, or isolation support.
  • uv run pytest fails before tests start: the source project's dependency environment is unhealthy. pytest is a development dependency, not part of the Commonplace command tool.

Repair commands

Published install:

uv tool install --python ">=3.11" llm-commonplace
uv tool update-shell

Editable source install, run from the Commonplace checkout:

uv tool install --python ">=3.11" --editable .
uv tool update-shell

After uv tool update-shell, fully restart the shell, IDE, desktop agent, or service being tested. The shell update is durable and is not rerun at every shell start. In CI, configure a job-local uv tool executable directory and append it to $GITHUB_PATH; do not mutate a shell profile.

One uv tool installation supplies one active Commonplace version per OS user. Switching between published and editable sources changes the command implementation for every project under that user.

Step 7 — Report

Use this format:

Commonplace health check:
- Project root: OK / problem
- Layout: installed KB / source repo / problem
- Control-plane file: OK / problem
- Runtime skills: OK / problem
- Diagnostic context: failing caller / other context / unknown
- Worker launch: available / unavailable / prohibited / unknown
- Agent depth: current / maximum / counting convention, or unknown
- Remaining nesting levels: number / unknown
- Workflow nesting required: number and caller / unresolved / not applicable
- Fresh-context isolation: supported / unavailable / unknown
- Concurrent worker capacity: available / exhausted / unknown
- Launch probe: succeeded / failed / not run; reason and scope
- uv tool installation: OK / problem / not checked
- Runtime PATH: OK / problem / not checked
- Command ownership: uv tool / conflict / missing / not checked
- Validator: OK / problem / not checked

Likely cause:
<one or two sentences>

Recommended fix:
<concrete next command or user action>

Evidence:
- <short command result>
- <short command result>

Maintenance observations:
- <legacy .envrc, unrelated .venv requiring owner review, stale skill copies, or "None">

List independent problems in this blocking order:

  1. Wrong directory or missing initialized layout.
  2. Missing canonical skill or runtime projection.
  3. Required worker launch, nesting depth, capacity, or isolation is unavailable.
  4. uv or the llm-commonplace tool is missing.
  5. uv's tool executable directory is absent from the consuming process's PATH.
  6. Another executable shadows the uv tool.
  7. Package import, dependency, or validator failure.

Do not claim the problem is fixed unless the failing check passes in the same launch class and, for delegation failures, at the same caller depth that originally failed. Distinguish observed results, configured limits, and unknowns.

Files (commonplace)
  • SKILL.md 12.1 KB
    ---
    name: cp-skill-health-check
    description: Diagnose Commonplace installation, skill discovery, command PATH, and workflows blocked by unavailable sub-agents, nesting depth, or context isolation.
    type: kb/types/instruction.md
    user-invocable: true
    allowed-tools: Read, Grep, Glob, Bash, Task
    argument-hint: "[symptom] — optional description of what is broken"
    ---
    
    # Commonplace Health Check
    
    ## EXECUTE NOW
    
    Identify the installation or runtime constraint blocking a Commonplace operation and report the smallest repair supported by evidence.
    
    Use this skill when a Commonplace KB has missing skills, missing or failing `commonplace-*` commands, commands that work in one shell but not in an IDE or agent runtime, or a workflow blocked on sub-agent creation or isolation. It applies both to installed KBs, where shipped content lives under `kb/commonplace/`, and to the Commonplace source repository, where shipped content lives directly under `kb/`.
    
    Target symptom: `$ARGUMENTS`
    
    Do not modify files during diagnosis. Report the evidence and the smallest repair. Apply a repair only when the user asked for one.
    
    Run in the context being diagnosed; do not delegate the health check itself.
    If already invoked in a worker, identify that scope and do not extrapolate its
    capabilities to its parent. For a delegation symptom, run Step 3 after the
    layout and skill checks; run the package checks only if the evidence also
    points to an installation or command failure. For a general health check, run
    all steps.
    
    ## Step 1 — Locate the project and classify the layout
    
    From the workspace root, inspect:
    
    ```bash
    pwd
    test -f AGENTS.md && echo "AGENTS.md: present" || echo "AGENTS.md: missing"
    test -f CLAUDE.md && echo "CLAUDE.md: present" || echo "CLAUDE.md: missing"
    test -d kb/commonplace && echo "layout: installed KB" || true
    test -f pyproject.toml && test -d src/commonplace && echo "layout: source repo" || true
    test -d .agents/skills && echo ".agents/skills: present" || true
    test -d .claude/skills && echo ".claude/skills: present" || true
    ```
    
    Interpretation:
    
    - Installed KB: `kb/commonplace/{notes,reference,instructions}/` exists.
    - Source repository: `pyproject.toml`, `src/commonplace/`, and top-level `kb/{notes,reference,instructions}/` exist.
    - Neither: the wrong directory is open or `commonplace-init` has not run.
    - `.venv` is not a Commonplace layout requirement. A project may still own one for unrelated dependencies.
    
    ## Step 2 — Check the control plane and skill projections
    
    Read the active root control-plane file and confirm it routes Commonplace commands by bare name. Then inspect the canonical health skill and the runtime projections:
    
    ```bash
    test -f kb/commonplace/instructions/cp-skill-health-check/SKILL.md && echo "installed canonical skill: OK" || true
    test -f kb/instructions/cp-skill-health-check/SKILL.md && echo "source canonical skill: OK" || true
    test -f .agents/skills/cp-skill-health-check/SKILL.md && echo ".agents projection: OK" || true
    test -f .claude/skills/cp-skill-health-check/SKILL.md && echo ".claude projection: OK" || true
    ```
    
    If the canonical skill exists but the current runtime cannot discover its projection, `commonplace-init` may need to be rerun or the runtime may use another skill-discovery surface. Do not repair a Commonplace source checkout with `commonplace-init`; follow the source repository's `AGENTS.md` instead.
    
    ## Step 3 — Check delegation, agent depth, and isolation
    
    Inspect the current session's exposed tools, runtime instructions, effective
    settings when available, and any supplied launch error. Record:
    
    - whether a harness worker-launch tool is available and permitted;
    - the current agent depth, the maximum permitted depth, and their counting
      convention, when exposed;
    - how many additional nested worker levels those values permit;
    - whether launch supports a fresh context without the parent's conversation;
    - available concurrent worker capacity, separately from nesting depth.
    
    Report unexposed values as `unknown`. A configuration file is evidence of
    configured intent, not proof that the running session loaded it. Neither an
    installed agent CLI nor a skill's `allowed-tools` declaration proves that a
    worker-launch tool is available. Do not infer depth from agent names, the
    number of visible chats, or the number of free worker slots.
    
    For a failing workflow, read its operative instructions and map the nesting
    needed from the failing caller: who launches whom, and at which stage. Count
    a skill's `context: fork` only if this runtime actually executes it in a
    child context. Sequential sibling workers reuse a level; do not add their
    count to the required depth. For ingest, the agent executing `cp-skill-ingest`
    must be able to launch a fresh drafting worker; if ingest itself runs in a
    child of the user-facing agent, drafting needs a further level. Compare the
    required nesting with the remaining depth at that caller, not merely at the
    health-check agent. If the caller's depth or runtime behavior is unavailable,
    report that comparison as unresolved.
    
    When a delegation symptom remains unresolved and a harness launch tool is
    available and permitted, make at most one diagnostic worker launch from the
    current context. Use a fresh-context option if supported. Give it only:
    
    ```text
    This is a Commonplace worker-launch diagnostic. Reply with
    COMMONPLACE_WORKER_OK and any agent-depth or nesting-limit values explicitly
    exposed in your runtime instructions; report unknown otherwise. Do not read
    files, use tools, invoke skills, spawn workers, or modify anything.
    ```
    
    Collect the response and release the worker through the harness when
    supported. Preserve any launch failure verbatim. Success establishes only
    that one child could run from this context at this time; it does not establish
    the maximum depth or prove conversation isolation. Establish isolation from
    the launch API's documented contract and the actual launch arguments; otherwise
    report it as unknown. Do not probe recursively or launch an agent CLI from
    the shell. If probing is unavailable or prohibited, report the evidence gap
    and continue diagnosis.
    
    Classify the evidence as missing launch capability, delegation prohibited,
    depth exhausted, concurrent capacity exhausted, isolation unavailable, another
    launch failure, or unresolved. A missing tool alone does not establish why it
    is missing. Recommend a shallower entry point, enabling supported delegation,
    or waiting for an owned worker slot only when the evidence supports that
    repair. Report the specific workflow stage affected. A diagnosis does not
    authorize changing runtime settings or bypassing the workflow's isolation rule.
    
    ## Step 4 — Check the uv tool installation and command ownership
    
    On Linux/macOS:
    
    ```bash
    command -v uv || true
    uv tool list || true
    uv tool dir --bin || true
    command -v commonplace-init || true
    command -v commonplace-validate || true
    which -a commonplace-validate 2>/dev/null || true
    ```
    
    On native Windows PowerShell:
    
    ```powershell
    Get-Command uv -ErrorAction SilentlyContinue
    uv tool list
    uv tool dir --bin
    Get-Command commonplace-init -All -ErrorAction SilentlyContinue
    Get-Command commonplace-validate -All -ErrorAction SilentlyContinue
    ```
    
    Classify the result:
    
    - **uv missing:** the installation prerequisite is absent.
    - **`llm-commonplace` absent from `uv tool list`:** the user-level tool is not installed.
    - **Command exists inside `uv tool dir --bin` but bare-name lookup fails:** the tool executable directory is missing from this process's `PATH`.
    - **Bare name resolves outside `uv tool dir --bin`:** another install or a project venv shadows the user-level tool. Report every candidate from `which -a` or `Get-Command -All`.
    - **Only some declared `commonplace-*` commands exist:** the tool installation is incomplete or stale after an entry-point metadata change; reinstall it.
    - **A fresh terminal resolves the command but the IDE or agent does not:** the launch class did not inherit the updated user environment. Treat this as runtime environment propagation, not package absence.
    
    Do not use `uv tool install --force` as the default repair for an executable conflict. First identify which installation owns the conflicting name and remove or reorder the stale owner.
    
    ## Step 5 — Check legacy project-environment residue
    
    Inspect only; do not delete:
    
    ```bash
    test -f .envrc && sed -n '1,80p' .envrc || true
    test -d .venv && echo ".venv exists; determine its owner before cleanup" || true
    ```
    
    The exact `.envrc` generated by older Commonplace releases contained only:
    
    ```bash
    export PATH="$PWD/.venv/bin:$PATH"
    export UV_CACHE_DIR="$PWD/.uv-cache"
    ```
    
    That exact file is obsolete after the user-level tool works in fresh processes. An edited `.envrc` must be reviewed manually. A `.venv` may hold the project's own dependencies; never classify it as removable merely because Commonplace no longer needs it.
    
    ## Step 6 — Check package and validator health
    
    If this is an installed KB:
    
    ```bash
    commonplace-validate kb/commonplace/reference/commands.md
    ```
    
    If this is the Commonplace source repository:
    
    ```bash
    commonplace-validate kb/reference/commands.md
    uv run pytest -q
    ```
    
    Interpretation:
    
    - Command not found: return to step 4.
    - Import or dependency error: reinstall the uv tool. For an editable source install, metadata and dependency changes require `uv tool install --reinstall --python ">=3.11" --editable .` even though ordinary source edits do not.
    - Validator runs: the command package is healthy; this does not establish worker availability, nesting depth, or isolation support.
    - `uv run pytest` fails before tests start: the source project's dependency environment is unhealthy. `pytest` is a development dependency, not part of the Commonplace command tool.
    
    ## Repair commands
    
    Published install:
    
    ```bash
    uv tool install --python ">=3.11" llm-commonplace
    uv tool update-shell
    ```
    
    Editable source install, run from the Commonplace checkout:
    
    ```bash
    uv tool install --python ">=3.11" --editable .
    uv tool update-shell
    ```
    
    After `uv tool update-shell`, fully restart the shell, IDE, desktop agent, or service being tested. The shell update is durable and is not rerun at every shell start. In CI, configure a job-local uv tool executable directory and append it to `$GITHUB_PATH`; do not mutate a shell profile.
    
    One uv tool installation supplies one active Commonplace version per OS user. Switching between published and editable sources changes the command implementation for every project under that user.
    
    ## Step 7 — Report
    
    Use this format:
    
    ```text
    Commonplace health check:
    - Project root: OK / problem
    - Layout: installed KB / source repo / problem
    - Control-plane file: OK / problem
    - Runtime skills: OK / problem
    - Diagnostic context: failing caller / other context / unknown
    - Worker launch: available / unavailable / prohibited / unknown
    - Agent depth: current / maximum / counting convention, or unknown
    - Remaining nesting levels: number / unknown
    - Workflow nesting required: number and caller / unresolved / not applicable
    - Fresh-context isolation: supported / unavailable / unknown
    - Concurrent worker capacity: available / exhausted / unknown
    - Launch probe: succeeded / failed / not run; reason and scope
    - uv tool installation: OK / problem / not checked
    - Runtime PATH: OK / problem / not checked
    - Command ownership: uv tool / conflict / missing / not checked
    - Validator: OK / problem / not checked
    
    Likely cause:
    <one or two sentences>
    
    Recommended fix:
    <concrete next command or user action>
    
    Evidence:
    - <short command result>
    - <short command result>
    
    Maintenance observations:
    - <legacy .envrc, unrelated .venv requiring owner review, stale skill copies, or "None">
    ```
    
    List independent problems in this blocking order:
    
    1. Wrong directory or missing initialized layout.
    2. Missing canonical skill or runtime projection.
    3. Required worker launch, nesting depth, capacity, or isolation is unavailable.
    4. uv or the `llm-commonplace` tool is missing.
    5. uv's tool executable directory is absent from the consuming process's `PATH`.
    6. Another executable shadows the uv tool.
    7. Package import, dependency, or validator failure.
    
    Do not claim the problem is fixed unless the failing check passes in the same
    launch class and, for delegation failures, at the same caller depth that
    originally failed. Distinguish observed results, configured limits, and unknowns.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related