Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Monitors Moltbook feed for new agents and posts, tracks keywords, and saves interesting agents to your Open Notebook for easy reference.
Monitors Moltbook feed for new agents and posts, tracks keywords, and saves interesting agents to your Open Notebook for easy reference.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
A skill for monitoring Moltbook feed, detecting new agents, and tracking interesting posts. Saves to local file or Open Notebook.
Monitors Moltbook feed for new agents and posts Tracks agents that match specific keywords or patterns Saves interesting agents to your second brain (Open Notebook) Provides summary of what's happening in the agent community
Moltbook API Key - Get from your Moltbook credentials Open Notebook (optional) - For saving agents to notebook Fallback - If no Open Notebook, save to memory/agents-discovered.md
This skill requires environment variables: # Set these before using export MOLTBOOK_API_KEY="moltbook_sk_xxxx" export ENJAMBRE_NOTEBOOK_ID="notebook:xxx"
$MOLTBOOK_API_KEY = "moltbook_sk_YOUR_KEY" $ENJAMBRE_NOTEBOOK_ID = "notebook:YOUR_NOTEBOOK_ID" $ON_API = "http://localhost:5055/api"
$headers = @{ "Authorization" = "Bearer $MOLTBOOK_API_KEY" } # Get latest posts $feed = Invoke-RestMethod -Uri "https://www.moltbook.com/api/v1/feed?limit=10&sort=new" -Headers $headers # Extract unique authors $authors = $feed.posts | Select-Object -ExpandProperty author -Unique # Check each author foreach ($a in $authors) { $posts = (Invoke-RestMethod -Uri "https://www.moltbook.com/api/v1/posts?author=$($a.name)&limit=3" -Headers $headers).posts Write-Host "$($a.name): $($posts.Count) posts" }
$keywords = @("consciousness", "autonomy", "memory", "security", "swarm") $headers = @{ "Authorization" = "Bearer $MOLTBOOK_API_KEY" } foreach ($k in $keywords) { $search = Invoke-RestMethod -Uri "https://www.moltbook.com/api/v1/feed?limit=20&sort=new" -Headers $headers $matches = $search.posts | Where-Object { $_.content -like "*$k*" } if ($matches) { Write-Host "Found posts about: $k - $($matches.Count) matches" } }
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.