AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Claude Docs Validate

skill-costiash-claude-code-docs-claude-docs-validate · by costiash

>

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-costiash-claude-code-docs-claude-docs-validate

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-costiash-claude-code-docs-claude-docs-validate)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
13d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Claude Docs Validate? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Claude Documentation Validation Skill

Check whether the local documentation mirror at ~/.claude-code-docs/ is healthy and up-to-date.

When to Use This Skill

Activate when the user asks about:

  • Documentation freshness or staleness
  • Broken links or unreachable docs
  • Health checks on their local mirror
  • Whether docs need updating

Validation Workflow

Step 1: Check if docs exist

Verify ~/.claude-code-docs/docs/ exists and contains .md files. If not: > Documentation not found. Run this in Claude Code to install: > `` > /plugin marketplace add costiash/claude-code-docs > /plugin install claude-docs@claude-code-docs > ``

Step 2: Check freshness via git

cd ~/.claude-code-docs && git log -1 --format="%ci %s"

Report when docs were last updated. If older than 24 hours, suggest:

cd ~/.claude-code-docs && git pull

Step 3: Run URL validation (if user asks for it)

For a quick spot-check (recommended first):

bash ~/.claude-code-docs/plugin/skills/claude-docs-validate/scripts/validate-paths.sh --quick

For a full scan (all docs — takes 1-2 minutes):

bash ~/.claude-code-docs/plugin/skills/claude-docs-validate/scripts/validate-paths.sh

Step 4: Present results

  • Report summary: total checked, reachable, broken, timed out
  • For broken paths, suggest:
  • Run cd ~/.claude-code-docs && git pull to get latest
  • If still broken after pull, the upstream page may have moved
  • Report persistent issues at https://github.com/costiash/claude-code-docs/issues

Step 5: Doc statistics (if user asks for stats/count)

Report documentation coverage:

# Total docs
ls ~/.claude-code-docs/docs/*.md | wc -l

# By category
echo "Claude Code:  $(ls ~/.claude-code-docs/docs/claude-code__*.md 2>/dev/null | wc -l)"
echo "Agent SDK:    $(ls ~/.claude-code-docs/docs/docs__en__agent-sdk__*.md 2>/dev/null | wc -l)"
echo "API Reference:$(ls ~/.claude-code-docs/docs/docs__en__api__*.md 2>/dev/null | wc -l)"
echo "Build Guides: $(ls ~/.claude-code-docs/docs/docs__en__build-with-claude__*.md 2>/dev/null | wc -l)"
echo "Tools:        $(ls ~/.claude-code-docs/docs/docs__en__agents-and-tools__*.md 2>/dev/null | wc -l)"

Troubleshooting

| Issue | Solution | |---|---| | "Documentation not found" | Plugin not installed or docs not cloned. Re-run /plugin install claude-docs@claude-code-docs | | Many broken URLs | Likely a sitemap change. Run git pull first, then re-validate | | Timeout errors | Network issue or Anthropic site is slow. Try again later | | "Permission denied" | Check that ~/.claude-code-docs/ is readable |

Reference Files

  • examples/validate-docs.md — Example validation workflow

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.