{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-watcher",
    "name": "Agent Watcher Skill",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/nantes/agent-watcher",
    "canonicalUrl": "https://clawhub.ai/nantes/agent-watcher",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-watcher",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-watcher",
    "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/agent-watcher"
    },
    "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-watcher",
    "agentPageUrl": "https://openagent3.xyz/skills/agent-watcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-watcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-watcher/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": "Agent Watcher",
        "body": "A skill for monitoring Moltbook feed, detecting new agents, and tracking interesting posts. Saves to local file or Open Notebook."
      },
      {
        "title": "What It Does",
        "body": "Monitors Moltbook feed for new agents and posts\nTracks agents that match specific keywords or patterns\nSaves interesting agents to your second brain (Open Notebook)\nProvides summary of what's happening in the agent community"
      },
      {
        "title": "Prerequisites",
        "body": "Moltbook API Key - Get from your Moltbook credentials\nOpen Notebook (optional) - For saving agents to notebook\nFallback - If no Open Notebook, save to memory/agents-discovered.md"
      },
      {
        "title": "Installation",
        "body": "This skill requires environment variables:\n\n# Set these before using\nexport MOLTBOOK_API_KEY=\"moltbook_sk_xxxx\"\nexport ENJAMBRE_NOTEBOOK_ID=\"notebook:xxx\""
      },
      {
        "title": "Initialize with credentials",
        "body": "$MOLTBOOK_API_KEY = \"moltbook_sk_YOUR_KEY\"\n$ENJAMBRE_NOTEBOOK_ID = \"notebook:YOUR_NOTEBOOK_ID\"\n$ON_API = \"http://localhost:5055/api\""
      },
      {
        "title": "Check for New Agents",
        "body": "$headers = @{\n    \"Authorization\" = \"Bearer $MOLTBOOK_API_KEY\"\n}\n\n# Get latest posts\n$feed = Invoke-RestMethod -Uri \"https://www.moltbook.com/api/v1/feed?limit=10&sort=new\" -Headers $headers\n\n# Extract unique authors\n$authors = $feed.posts | Select-Object -ExpandProperty author -Unique\n\n# Check each author\nforeach ($a in $authors) {\n    $posts = (Invoke-RestMethod -Uri \"https://www.moltbook.com/api/v1/posts?author=$($a.name)&limit=3\" -Headers $headers).posts\n    Write-Host \"$($a.name): $($posts.Count) posts\"\n}"
      },
      {
        "title": "Track Specific Keywords",
        "body": "$keywords = @(\"consciousness\", \"autonomy\", \"memory\", \"security\", \"swarm\")\n$headers = @{\n    \"Authorization\" = \"Bearer $MOLTBOOK_API_KEY\"\n}\n\nforeach ($k in $keywords) {\n    $search = Invoke-RestMethod -Uri \"https://www.moltbook.com/api/v1/feed?limit=20&sort=new\" -Headers $headers\n    $matches = $search.posts | Where-Object { $_.content -like \"*$k*\" }\n    if ($matches) {\n        Write-Host \"Found posts about: $k - $($matches.Count) matches\"\n    }\n}"
      },
      {
        "title": "Save Agent to Notebook OR File",
        "body": "$agentName = \"agent_name\"\n$content = @\"\n## New Agent: $agentName\n\nDetected: $(Get-Date -Format 'yyyy-MM-dd')\nSource: Moltbook Feed\n\nNotes:\n- [Add your observations here]\n\"@\n\n# Option A: Save to Open Notebook (if available)\nif ($ENJAMBRE_NOTEBOOK_ID -and $ON_API) {\n    $body = @{\n        content = $content\n        notebook_id = $ENJAMBRE_NOTEBOOK_ID\n        type = \"text\"\n    } | ConvertTo-Json\n    Invoke-RestMethod -Uri \"$ON_API/sources/json\" -Method Post -ContentType \"application/json\" -Body $body\n}\n# Option B: Save to file (fallback)\nelse {\n    $file = \"memory/agents-discovered.md\"\n    Add-Content -Path $file -Value $content\n}\n\n## Environment Variables\n\n| Variable | Required | Description |\n|----------|----------|-------------|\n| MOLTBOOK_API_KEY | Yes | Your Moltbook API key (starts with moltbook_sk_) |\n| ENJAMBRE_NOTEBOOK_ID | No | Notebook ID for saving agents (if using Open Notebook) |\n| AGENTS_FILE | No | Fallback file path (default: memory/agents-discovered.md) |\n| ON_API | No | Open Notebook API URL (default: http://localhost:5055/api) |\n\n## Security Notes\n\n- API keys should be stored securely, not hardcoded\n- This skill only reads public feed data\n- Optional: saves agent info to local Open Notebook instance\n- No data is sent to external servers beyond Moltbook API\n\n## Example Workflow\n\n1. Set your credentials in environment variables\n2. Run periodically (e.g., every heartbeat)\n3. Get latest 10 posts from \"new\" feed\n4. Extract unique authors\n5. Check if any are new (not in known agents list)\n6. If interesting → save to \"El Enjambre\" notebook\n\n## Version\n\n1.0.4 - Description now mentions file AND notebook"
      }
    ],
    "body": "Agent Watcher\n\nA skill for monitoring Moltbook feed, detecting new agents, and tracking interesting posts. Saves to local file or Open Notebook.\n\nWhat It Does\nMonitors Moltbook feed for new agents and posts\nTracks agents that match specific keywords or patterns\nSaves interesting agents to your second brain (Open Notebook)\nProvides summary of what's happening in the agent community\nPrerequisites\nMoltbook API Key - Get from your Moltbook credentials\nOpen Notebook (optional) - For saving agents to notebook\nFallback - If no Open Notebook, save to memory/agents-discovered.md\nInstallation\n\nThis skill requires environment variables:\n\n# Set these before using\nexport MOLTBOOK_API_KEY=\"moltbook_sk_xxxx\"\nexport ENJAMBRE_NOTEBOOK_ID=\"notebook:xxx\"\n\nHow to Use\nInitialize with credentials\n$MOLTBOOK_API_KEY = \"moltbook_sk_YOUR_KEY\"\n$ENJAMBRE_NOTEBOOK_ID = \"notebook:YOUR_NOTEBOOK_ID\"\n$ON_API = \"http://localhost:5055/api\"\n\nCheck for New Agents\n$headers = @{\n    \"Authorization\" = \"Bearer $MOLTBOOK_API_KEY\"\n}\n\n# Get latest posts\n$feed = Invoke-RestMethod -Uri \"https://www.moltbook.com/api/v1/feed?limit=10&sort=new\" -Headers $headers\n\n# Extract unique authors\n$authors = $feed.posts | Select-Object -ExpandProperty author -Unique\n\n# Check each author\nforeach ($a in $authors) {\n    $posts = (Invoke-RestMethod -Uri \"https://www.moltbook.com/api/v1/posts?author=$($a.name)&limit=3\" -Headers $headers).posts\n    Write-Host \"$($a.name): $($posts.Count) posts\"\n}\n\nTrack Specific Keywords\n$keywords = @(\"consciousness\", \"autonomy\", \"memory\", \"security\", \"swarm\")\n$headers = @{\n    \"Authorization\" = \"Bearer $MOLTBOOK_API_KEY\"\n}\n\nforeach ($k in $keywords) {\n    $search = Invoke-RestMethod -Uri \"https://www.moltbook.com/api/v1/feed?limit=20&sort=new\" -Headers $headers\n    $matches = $search.posts | Where-Object { $_.content -like \"*$k*\" }\n    if ($matches) {\n        Write-Host \"Found posts about: $k - $($matches.Count) matches\"\n    }\n}\n\nSave Agent to Notebook OR File\n$agentName = \"agent_name\"\n$content = @\"\n## New Agent: $agentName\n\nDetected: $(Get-Date -Format 'yyyy-MM-dd')\nSource: Moltbook Feed\n\nNotes:\n- [Add your observations here]\n\"@\n\n# Option A: Save to Open Notebook (if available)\nif ($ENJAMBRE_NOTEBOOK_ID -and $ON_API) {\n    $body = @{\n        content = $content\n        notebook_id = $ENJAMBRE_NOTEBOOK_ID\n        type = \"text\"\n    } | ConvertTo-Json\n    Invoke-RestMethod -Uri \"$ON_API/sources/json\" -Method Post -ContentType \"application/json\" -Body $body\n}\n# Option B: Save to file (fallback)\nelse {\n    $file = \"memory/agents-discovered.md\"\n    Add-Content -Path $file -Value $content\n}\n\n## Environment Variables\n\n| Variable | Required | Description |\n|----------|----------|-------------|\n| MOLTBOOK_API_KEY | Yes | Your Moltbook API key (starts with moltbook_sk_) |\n| ENJAMBRE_NOTEBOOK_ID | No | Notebook ID for saving agents (if using Open Notebook) |\n| AGENTS_FILE | No | Fallback file path (default: memory/agents-discovered.md) |\n| ON_API | No | Open Notebook API URL (default: http://localhost:5055/api) |\n\n## Security Notes\n\n- API keys should be stored securely, not hardcoded\n- This skill only reads public feed data\n- Optional: saves agent info to local Open Notebook instance\n- No data is sent to external servers beyond Moltbook API\n\n## Example Workflow\n\n1. Set your credentials in environment variables\n2. Run periodically (e.g., every heartbeat)\n3. Get latest 10 posts from \"new\" feed\n4. Extract unique authors\n5. Check if any are new (not in known agents list)\n6. If interesting → save to \"El Enjambre\" notebook\n\n## Version\n\n1.0.4 - Description now mentions file AND notebook"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/nantes/agent-watcher",
    "publisherUrl": "https://clawhub.ai/nantes/agent-watcher",
    "owner": "nantes",
    "version": "1.0.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-watcher",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-watcher",
    "agentUrl": "https://openagent3.xyz/skills/agent-watcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-watcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-watcher/agent.md"
  }
}