postlake-schedule

postlake-schedule is a skill for Claude Code, Codex from PostLake/postlake-mcp. It costs 42 tokens per session (599 once invoked), scanned A, original, MIT.

A tool for planning social media posts through PostLake, a service that publishes to social accounts. It can set a future publishing time and manage posts waiting to be published.

In plain words
What is it for?
Use it to schedule posts, view scheduled posts, reschedule them, or cancel them.
Why use it?
It removes the need to remember publishing times or handle each post manually. You can review a queue of planned posts and change or cancel them before they go live.

Skill for Claude CodeCodex

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

Good fit Use it to schedule posts, view scheduled posts, reschedule them, or cancel them.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/postlake/postlake-mcp/postlake-schedule
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 PostLake/postlake-mcp --skill postlake-schedule
Clone the repo
git clone --depth 1 https://github.com/PostLake/postlake-mcp

Made for: Claude Code, Codex.

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 postlake-schedule

README.md
[![agentmods](https://agentmods.dev/badge/skills/postlake/postlake-mcp/postlake-schedule.svg)](https://agentmods.dev/skills/postlake/postlake-mcp/postlake-schedule)
Your own site
<a href="https://agentmods.dev/skills/postlake/postlake-mcp/postlake-schedule"><img src="https://agentmods.dev/badge/skills/postlake/postlake-mcp/postlake-schedule.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 599 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.
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.00042 $0.00599
Opus 5 $0.00021 $0.00300
Sonnet 5 $0.00008 $0.00120
Haiku 4.5 $0.00004 $0.00060

Measured 3d ago against content hash ebd514094393, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

postlake-schedule 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 3d 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.

curl -X POST https://api.postlake.dev/v1/posts \
skills/postlake-schedule/SKILL.md · 76 lines

What it actually says

PostLake: schedule posts

Scheduling is the same as publishing, plus a scheduledAt timestamp. Prefer scheduling over immediate publishing when the user gives a time, so they can review the queue first. Address accounts exactly as in the postlake-publish skill: by profile (simplest, optionally narrowed with platforms) or by accounts ids.

Auth

Authorization: Bearer $POSTLAKE_API_KEY

Base URL https://api.postlake.dev.

Schedule a post

Send an ISO 8601 scheduledAt (UTC, or include an offset). It must be in the future. Convert the user's local time to UTC before sending.

curl -X POST https://api.postlake.dev/v1/posts \
 -H "Authorization: Bearer $POSTLAKE_API_KEY" \
 -H "Content-Type: application/json" \
 -H "Idempotency-Key: $(uuidgen)" \
 -d '{
  "text": "Weekly recap 👇",
  "profile": "my-brand",
  "scheduledAt": "2026-07-18T08:00:00Z"
 }'

The post comes back with state: "scheduled". It fires automatically at the time you set (no polling needed).

List scheduled posts

curl "https://api.postlake.dev/v1/posts?state=scheduled" \
 -H "Authorization: Bearer $POSTLAKE_API_KEY"

Reschedule or edit before it fires

curl -X PATCH https://api.postlake.dev/v1/posts/POST_ID \
 -H "Authorization: Bearer $POSTLAKE_API_KEY" \
 -H "Content-Type: application/json" \
 -d '{ "scheduledAt": "2026-07-18T09:30:00Z", "text": "Updated caption" }'

Only posts still in state: "scheduled" can be edited, and the new time must be in the future.

Cancel a scheduled post

curl -X DELETE https://api.postlake.dev/v1/posts/POST_ID \
 -H "Authorization: Bearer $POSTLAKE_API_KEY"

Tips

  • Always echo back the time in the user's local zone when confirming ("Friday 9:00am BST"), but send UTC to the API.
  • Media, per-platform captions, and platformOptions all work exactly as in the postlake-publish skill.
  • Building a calendar? List scheduled posts to see what's already queued before adding more.
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. 3d ago Changed ebd514094393
  2. 7d ago First seen · 76 lines · 42 tokens per session scan A ce70f433b057

Subscribe to this mod's changes

postlake-schedule is a skill published in the GitHub repository PostLake/postlake-mcp (0 stars, last pushed today), licensed MIT. It adds 42 tokens to every session and 599 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-31.

Related

Other skills, from other repositories