Help us improve
Share bugs, ideas, or general feedback.
From code-diligence
Incrementally refresh an existing code-diligence target — pull new commits, rerun the tool wrappers, and update the warehouse without resetting analyst-confirmed curations. Use when the target was already ingested (its warehouse exists) and the user invokes /code-diligence:refresh, or asks to recompute, rerun, or update an existing target's data.
npx claudepluginhub aeyeops/aeo-diligence-marketplace --plugin code-diligenceHow this skill is triggered — by the user, by Claude, or both
Slash command
/code-diligence:refreshing-target <target><target>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
The user has invoked `/code-diligence:refresh <target>`.
Applies 10 pre-set color/font themes or generates custom ones for slides, documents, reports, and HTML landing pages.
Share bugs, ideas, or general feedback.
The user has invoked /code-diligence:refresh <target>.
Resolve <target> to its settings file at ~/.claude/code-diligence-<target>.local.md. If missing, tell the user to follow skills/ingesting-target/SKILL.md first and stop.
Confirm the warehouse already exists at the storage.warehouse_path from settings. If absent, the operation is an initial ingest, not a refresh — direct the user to skills/ingesting-target/SKILL.md.
Run a full-tier rerun (incremental cloner + every tool pass; the underlying CLI is idempotent — repeated commits do not double-count):
uv run --directory ${CLAUDE_PLUGIN_ROOT} code-diligence ingest <settings-path> --full
On success, report targets.last_refreshed_at (a timestamp in the warehouse) so the user can confirm the refresh actually landed.
On non-zero exit, surface the CLI's stderr verbatim. Do not paraphrase tool failures — they are logged into tool_failures for later inspection.
The dedicated refresh subcommand is a Phase 5 candidate; until it lands, ingest --full is the supported path because both share the same idempotent walker + tool wrappers.