{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-knowledge",
    "name": "Agent Knowledge Capture",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ianderrington/agent-knowledge",
    "canonicalUrl": "https://clawhub.ai/ianderrington/agent-knowledge",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-knowledge",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-knowledge",
    "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",
      "slug": "agent-knowledge",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:05:09.610Z",
      "expiresAt": "2026-05-06T12:05:09.610Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-knowledge",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-knowledge",
        "contentDisposition": "attachment; filename=\"agent-knowledge-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-knowledge"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agent-knowledge"
    },
    "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/agent-knowledge",
    "agentPageUrl": "https://openagent3.xyz/skills/agent-knowledge/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-knowledge/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-knowledge/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": "Knowledge Skill",
        "body": "File-based knowledge organization. Capture fast, search later, clean up automatically."
      },
      {
        "title": "Installation",
        "body": "clawhub install knowledge\n\nThis installs scripts/know — add to PATH or use full path:\n\n~/.openclaw/skills/knowledge/scripts/know"
      },
      {
        "title": "Storage Location",
        "body": "Default: ~/.soulshare/agent/knowledge/\n\nConfigurable via ~/.config/know/config or env KNOWLEDGE_DIR.\n\nknowledge/\n├── INDEX.md      # Auto-maintained browsable index\n├── urls/         # Bookmarked URLs\n├── extracts/     # Video/article/paper summaries\n├── posts/        # Social content (tweets, threads)\n└── research/     # Agent-generated research"
      },
      {
        "title": "Adding Content",
        "body": "know add url <url> --title \"...\" --tags \"a,b\" [--summary \"...\"]\nknow add video <url> --title \"...\" --tags \"a,b\" [--summary \"...\"]\nknow add extract --source <url> --type video|article|paper --title \"...\" --tags \"a,b\"\nknow add post --source <url> --title \"...\" --tags \"a,b\"\nknow add research --title \"...\" --tags \"a,b\" [--summary \"...\"]\n\nEach add writes a markdown file with YAML frontmatter and updates INDEX.md."
      },
      {
        "title": "Searching",
        "body": "know search \"query\"           # Grep across all entries\nknow recent --limit 10        # Recent entries\nknow list --tags security     # Filter by tag"
      },
      {
        "title": "Cleanup & Maintenance",
        "body": "know tidy                     # Audit: find issues\nknow tidy --fix               # Auto-fix: normalize tags, move misplaced files, remove empty\nknow validate                 # Check frontmatter schema\nknow reindex                  # Rebuild INDEX.md\nknow config                   # Show active config paths\n\nRecommended: Run know tidy --fix in heartbeats or nightly cron."
      },
      {
        "title": "Data Model (frontmatter)",
        "body": "---\ntype: url|extract|post|research\ntitle: \"Entry title\"\nsource_url: \"https://...\"\nsource_kind: url|video|article|paper|post|research\ntags: [\"tag1\", \"tag2\"]\nadded: \"2026-02-26\"\nadded_by: \"agent-name\"\nsummary: \"One-line summary\"\n---"
      },
      {
        "title": "QMD Integration",
        "body": "Plain markdown → QMD-indexable.\n\nqmd collection add ~/.soulshare/agent/knowledge --name knowledge\nqmd search \"query\" --collection knowledge"
      },
      {
        "title": "Discipline",
        "body": "If it's useful later → know add immediately\nDon't leave knowledge only in memory/YYYY-MM-DD.md\nEvery entry needs tags + summary\nLet know tidy --fix handle normalization"
      }
    ],
    "body": "Knowledge Skill\n\nFile-based knowledge organization. Capture fast, search later, clean up automatically.\n\nInstallation\nclawhub install knowledge\n\n\nThis installs scripts/know — add to PATH or use full path:\n\n~/.openclaw/skills/knowledge/scripts/know\n\nStorage Location\n\nDefault: ~/.soulshare/agent/knowledge/\n\nConfigurable via ~/.config/know/config or env KNOWLEDGE_DIR.\n\nknowledge/\n├── INDEX.md      # Auto-maintained browsable index\n├── urls/         # Bookmarked URLs\n├── extracts/     # Video/article/paper summaries\n├── posts/        # Social content (tweets, threads)\n└── research/     # Agent-generated research\n\nAdding Content\nknow add url <url> --title \"...\" --tags \"a,b\" [--summary \"...\"]\nknow add video <url> --title \"...\" --tags \"a,b\" [--summary \"...\"]\nknow add extract --source <url> --type video|article|paper --title \"...\" --tags \"a,b\"\nknow add post --source <url> --title \"...\" --tags \"a,b\"\nknow add research --title \"...\" --tags \"a,b\" [--summary \"...\"]\n\n\nEach add writes a markdown file with YAML frontmatter and updates INDEX.md.\n\nSearching\nknow search \"query\"           # Grep across all entries\nknow recent --limit 10        # Recent entries\nknow list --tags security     # Filter by tag\n\nCleanup & Maintenance\nknow tidy                     # Audit: find issues\nknow tidy --fix               # Auto-fix: normalize tags, move misplaced files, remove empty\nknow validate                 # Check frontmatter schema\nknow reindex                  # Rebuild INDEX.md\nknow config                   # Show active config paths\n\n\nRecommended: Run know tidy --fix in heartbeats or nightly cron.\n\nData Model (frontmatter)\n---\ntype: url|extract|post|research\ntitle: \"Entry title\"\nsource_url: \"https://...\"\nsource_kind: url|video|article|paper|post|research\ntags: [\"tag1\", \"tag2\"]\nadded: \"2026-02-26\"\nadded_by: \"agent-name\"\nsummary: \"One-line summary\"\n---\n\nQMD Integration\n\nPlain markdown → QMD-indexable.\n\nqmd collection add ~/.soulshare/agent/knowledge --name knowledge\nqmd search \"query\" --collection knowledge\n\nDiscipline\nIf it's useful later → know add immediately\nDon't leave knowledge only in memory/YYYY-MM-DD.md\nEvery entry needs tags + summary\nLet know tidy --fix handle normalization"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ianderrington/agent-knowledge",
    "publisherUrl": "https://clawhub.ai/ianderrington/agent-knowledge",
    "owner": "ianderrington",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-knowledge",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-knowledge",
    "agentUrl": "https://openagent3.xyz/skills/agent-knowledge/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-knowledge/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-knowledge/agent.md"
  }
}