{
  "schemaVersion": "1.0",
  "item": {
    "slug": "solo-audit",
    "name": "Audit",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/fortunto2/solo-audit",
    "canonicalUrl": "https://clawhub.ai/fortunto2/solo-audit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/solo-audit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solo-audit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/solo-audit"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/solo-audit",
    "agentPageUrl": "https://openagent3.xyz/skills/solo-audit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solo-audit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solo-audit/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "/audit",
        "body": "Audit the knowledge base for quality issues: missing frontmatter, broken links, tag inconsistencies, orphaned files, and coverage gaps. Works on any markdown-heavy project."
      },
      {
        "title": "Steps",
        "body": "Parse focus area from $ARGUMENTS (optional). If provided, focus on that area (e.g., \"tags\", \"frontmatter\", \"links\"). If empty, run full audit.\n\n\nFind all markdown files: Use Glob to find all .md files, excluding common non-content directories: .venv/, node_modules/, .git/, archive/, .archive_old/.\n\n\nFrontmatter audit: First, scan a sample of existing files (first 10-20) to detect the frontmatter schema in use (which fields exist, what values are common for type and status). Then for each markdown file, check:\n\nHas YAML frontmatter (starts with --- and has closing ---)\nCore fields present: title, tags (and any other fields consistently used across the KB)\ntype and status values (if used) are consistent with the detected schema\ntags is a non-empty list\nTrack files missing frontmatter and files with incomplete/invalid frontmatter.\n\n\n\nLink check: Look for broken internal links:\n\nGrep for markdown links \\[.*\\]\\(.*\\.md\\) and verify each target file exists\nIf a link-checking script exists in the project (e.g., scripts/check_links.py), run it as well\n\n\n\nTag consistency audit: Use Grep to find all tags: sections across .md files. Look for:\n\nNear-duplicate tags (e.g., \"ai\" vs \"AI\" vs \"artificial-intelligence\")\nTags used only once (potential typos)\nVery common tags that might be too broad\nList all unique tags with counts.\n\n\n\nOrphaned files: Check which files are NOT referenced in any other file's related: field. Files that exist but are never cross-referenced may be orphaned.\n\n\nContent quality: Find documents that appear to be ideas or opportunities (based on detected type field or directory location) and check:\n\nDocuments still in draft status for more than 30 days\nDocuments missing key metadata fields that other similar documents have\nDocuments with very little content (< 100 words, excluding frontmatter)\n\n\n\nCoverage gaps: Check each directory for content:\n\nFlag any empty or near-empty directories\nLook for directories with only 1-2 files (may need more content)\n\n\n\nOutput report:\n## KB Audit Report\n\n**Date:** [today]\n\n### Summary\n- Total .md files: X\n- With frontmatter: X (X%)\n- Without frontmatter: X\n\n### Frontmatter Issues\n| File | Issue |\n|------|-------|\n| path | Missing field: type |\n\n### Broken Links\n[list of broken references]\n\n### Tag Analysis\n- Total unique tags: X\n- Single-use tags: [list]\n- Potential duplicates: [list]\n\n### Orphaned Files\n[files not referenced anywhere]\n\n### Content Quality\n- Stale drafts (> 30 days): [list]\n- Missing metadata: [list]\n- Low-content files: [list]\n\n### Coverage\n[directory analysis]\n\n### Recommendations\n1. [specific action]\n2. [specific action]\n3. [specific action]"
      },
      {
        "title": "No markdown files found",
        "body": "Cause: Running in wrong directory or all files excluded.\nFix: Ensure you're in the knowledge base root. Check exclude patterns in step 2."
      },
      {
        "title": "Too many single-use tags",
        "body": "Cause: Inconsistent tagging across documents.\nFix: Pick canonical tags from the most-used list. Run audit again after cleanup."
      },
      {
        "title": "Frontmatter validation errors",
        "body": "Cause: YAML syntax issues (missing quotes, wrong indentation).\nFix: Ensure --- delimiters are present. Use type: and status: values consistent with your KB's detected schema."
      }
    ],
    "body": "/audit\n\nAudit the knowledge base for quality issues: missing frontmatter, broken links, tag inconsistencies, orphaned files, and coverage gaps. Works on any markdown-heavy project.\n\nSteps\n\nParse focus area from $ARGUMENTS (optional). If provided, focus on that area (e.g., \"tags\", \"frontmatter\", \"links\"). If empty, run full audit.\n\nFind all markdown files: Use Glob to find all .md files, excluding common non-content directories: .venv/, node_modules/, .git/, archive/, .archive_old/.\n\nFrontmatter audit: First, scan a sample of existing files (first 10-20) to detect the frontmatter schema in use (which fields exist, what values are common for type and status). Then for each markdown file, check:\n\nHas YAML frontmatter (starts with --- and has closing ---)\nCore fields present: title, tags (and any other fields consistently used across the KB)\ntype and status values (if used) are consistent with the detected schema\ntags is a non-empty list Track files missing frontmatter and files with incomplete/invalid frontmatter.\n\nLink check: Look for broken internal links:\n\nGrep for markdown links \\[.*\\]\\(.*\\.md\\) and verify each target file exists\nIf a link-checking script exists in the project (e.g., scripts/check_links.py), run it as well\n\nTag consistency audit: Use Grep to find all tags: sections across .md files. Look for:\n\nNear-duplicate tags (e.g., \"ai\" vs \"AI\" vs \"artificial-intelligence\")\nTags used only once (potential typos)\nVery common tags that might be too broad List all unique tags with counts.\n\nOrphaned files: Check which files are NOT referenced in any other file's related: field. Files that exist but are never cross-referenced may be orphaned.\n\nContent quality: Find documents that appear to be ideas or opportunities (based on detected type field or directory location) and check:\n\nDocuments still in draft status for more than 30 days\nDocuments missing key metadata fields that other similar documents have\nDocuments with very little content (< 100 words, excluding frontmatter)\n\nCoverage gaps: Check each directory for content:\n\nFlag any empty or near-empty directories\nLook for directories with only 1-2 files (may need more content)\n\nOutput report:\n\n## KB Audit Report\n\n**Date:** [today]\n\n### Summary\n- Total .md files: X\n- With frontmatter: X (X%)\n- Without frontmatter: X\n\n### Frontmatter Issues\n| File | Issue |\n|------|-------|\n| path | Missing field: type |\n\n### Broken Links\n[list of broken references]\n\n### Tag Analysis\n- Total unique tags: X\n- Single-use tags: [list]\n- Potential duplicates: [list]\n\n### Orphaned Files\n[files not referenced anywhere]\n\n### Content Quality\n- Stale drafts (> 30 days): [list]\n- Missing metadata: [list]\n- Low-content files: [list]\n\n### Coverage\n[directory analysis]\n\n### Recommendations\n1. [specific action]\n2. [specific action]\n3. [specific action]\n\nCommon Issues\nNo markdown files found\n\nCause: Running in wrong directory or all files excluded. Fix: Ensure you're in the knowledge base root. Check exclude patterns in step 2.\n\nToo many single-use tags\n\nCause: Inconsistent tagging across documents. Fix: Pick canonical tags from the most-used list. Run audit again after cleanup.\n\nFrontmatter validation errors\n\nCause: YAML syntax issues (missing quotes, wrong indentation). Fix: Ensure --- delimiters are present. Use type: and status: values consistent with your KB's detected schema."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/fortunto2/solo-audit",
    "publisherUrl": "https://clawhub.ai/fortunto2/solo-audit",
    "owner": "fortunto2",
    "version": "1.4.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/solo-audit",
    "downloadUrl": "https://openagent3.xyz/downloads/solo-audit",
    "agentUrl": "https://openagent3.xyz/skills/solo-audit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solo-audit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solo-audit/agent.md"
  }
}