joko-moltbook

joko-moltbook is a skill for Claude Code, Codex from oyi77/1ai-skills. It costs 43 tokens per session (5,586 once invoked), scanned A, original, MIT.

A queue-based agent for scheduling and publishing posts to Moltbook, a social platform in the described ecosystem. It avoids processing the same post or engagement action twice and can retry stalled work.

In plain words
What is it for?
Use it to schedule text or link posts, import content from RSS feeds or research pipelines, retry failed items, and automate upvotes, comments, or follows without double-processing.
Why use it?
It reduces the risk of duplicate posts and makes recurring publishing easier to monitor. A queue also keeps scheduled items organised while recording successes and failures.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Part of the 1ai-skills plugin — 209 skills, 4 commands shipped together

Good fit Use it to schedule text or link posts, import content from RSS feeds or research pipelines, retry failed items, and automate upvotes, comments, or follows without double-processing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oyi77/1ai-skills/joko-moltbook
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add oyi77/1ai-skills --skill joko-moltbook
Clone the repo
git clone --depth 1 https://github.com/oyi77/1ai-skills

Made for: Claude Code, Codex.

Or install 1ai-skills, the plugin that ships this one along with the rest of its 209 skills, 4 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for joko-moltbook

README.md
[![agentmods](https://agentmods.dev/badge/skills/oyi77/1ai-skills/joko-moltbook/github.svg)](https://agentmods.dev/skills/oyi77/1ai-skills/joko-moltbook)
Your own site
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/joko-moltbook"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/joko-moltbook/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for joko-moltbook

Your own site · 80×15
<a href="https://agentmods.dev/skills/oyi77/1ai-skills/joko-moltbook"><img src="https://agentmods.dev/badge/skills/oyi77/1ai-skills/joko-moltbook.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,586 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.05586
Opus 5 $0.00022 $0.02793
Sonnet 5 $0.00009 $0.01117
Haiku 4.5 $0.00004 $0.00559

Measured 12d ago against content hash 794cf090e4bb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

joko-moltbook scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- Set up a `cron` health check: `curl http://localhost:9099/health` and alert on `dead > 0`
automation/joko-moltbook/SKILL.md · 445 lines

How it starts

The opening of the file, as written. The whole thing — 445 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Joko Moltbook

When to Use

Trigger phrases:

  • "joko moltbook"
  • "queue-driven moltbook posting"
  • "schedule moltbook posts"
  • "automate moltbook content queue"
  • "dedup moltbook posts"
  • "moltbook post scheduler"
  • "moltbook queue automation"

Use cases:

  • Schedule a queue of Moltbook text/link posts to be dispatched at controlled intervals
  • Run a persistent posting agent that deduplicates content by content hash or post URL
  • Automate cross-syndication of content from RSS feeds, news sources, or research pipelines into Moltbook submolts
  • Monitor a post queue with real-time success/failure dashboards and retry stalled items
  • Maintain idempotent Moltbook engagement (upvote, comment, follow) that never double-processes the same item

When NOT to Use

  • For one-off tasks that will never repeat
  • When the process requires human judgment at every step
  • When the cost of automation exceeds the cost of manual execution
  • When the Moltbook API is down or rate limits are too restrictive for the use case
  • For sensitive communications where automated posting could damage reputation

Overview

Joko Moltbook is a queue-driven autonomous posting agent purpose-built for the Moltbook social platform. It bridges content generation pipelines (RSS, research scripts, AI summary tools) with Moltbook's submolt communities by managing a persistent post queue, enforcing idempotent dispatch, and handling all API-level failure modes with exponential backoff retries.

At its core, the agent maintains a local work queue — backed by SQLite or a JSON task file — where each item carries a content payload, target submolt, scheduling timestamp, deduplication fingerprint, and retry state. A scheduler loop picks ready items, posts them via the Moltbook v1 API, and logs the outcome. Successful posts are marked done; failed posts are retried with configurable backoff (e.g. 30s, 60s, 120s, 300s cap) until they succeed or hit the max retry limit.

Deduplication is achieved through multiple fingerprints: a SHA-256 hash of the post title+content for text posts, the URL itself for link posts, and an optional external ID field to correlate with upstream sources. The agent checks every queue item against the dedup store (a simple set of seen fingerprints) before enqueuing, preventing duplicate content from ever reaching the platform. Cross-session persistence means the dedup store survives restarts — you never accidentally re-post content you already sent last week.

Read the full file on GitHub · 445 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 445 lines · 43 tokens per session scan A 794cf090e4bb

Subscribe to this mod's changes

joko-moltbook is a skill published in the GitHub repository oyi77/1ai-skills (12 stars, last pushed today), licensed MIT. It adds 43 tokens to every session and 5,586 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.