Peekmd

v1.0.4

Create and share rendered markdown web pages via API with optional TTL, supporting rich formatting, auto-expiring links, and burn-after-read deletion.

0· 180·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for notacryptodad/peekmd.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Peekmd" (notacryptodad/peekmd) from ClawHub.
Skill page: https://clawhub.ai/notacryptodad/peekmd
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install peekmd

ClawHub CLI

Package manager switcher

npx clawhub@latest install peekmd
Security Scan
Capability signals
CryptoCan make purchasesRequires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description match the instructions: the skill is an instruction-only wrapper for an external web API (https://peekmd.dev) that creates, serves, and deletes rendered markdown pages. No unrelated binaries, env vars, or config paths are requested.
Instruction Scope
Instructions only describe HTTP calls to the service's endpoints (create, burn, health, pricing, billing). They do not ask the agent to read local files, other credentials, or system state beyond supplying request body fields. The guidance does encourage using the free tier by default and explains payment headers for paid tiers.
Install Mechanism
No install spec and no code files — the skill is instruction-only and relies on outbound HTTP requests. This is the lowest-risk install mechanism for an API wrapper.
Credentials
No required environment variables or primary credentials are declared. The SKILL.md documents optional paid-auth headers (Authorization: Bearer sk_... and X-PAYMENT) which are appropriate for the described paid tiers; those are not requested by the skill itself.
Persistence & Privilege
The skill is not always-enabled and does not request elevated persistence or modification of other skills or system-wide settings. It is allowed to be invoked autonomously (platform default), which is expected for an agent-facing integration.
Assessment
This skill is a thin set of instructions for calling an external service (peekmd.dev). Before installing, verify the peekmd.dev domain and its privacy/storage policy if you will send sensitive content — free pages are short-lived and show ads, but anything you post is sent to that external service. Avoid sending secrets or personal credentials to the API, and if you plan to use paid tiers, create and use a dedicated API key rather than reusing keys from other services. Otherwise the skill appears internally consistent with its stated purpose.

Like a lobster shell, security has layers — review code before you run it.

latestvk978qm811rhe4bkpth0h83hsrs84vkhx
180downloads
0stars
5versions
Updated 1w ago
v1.0.4
MIT-0

peekmd

Turn markdown into a beautiful, shareable web page with one API call. Built for AI agents, bots, and developers.

When to Use

Use peekmd when you need to share formatted content — reports, docs, code snippets, tables, diagrams — as a readable web page instead of raw markdown. The page auto-expires, so it's ideal for temporary shares, previews, and one-off renders.

Quick Start (Free Tier)

curl -X POST https://peekmd.dev/api/create \
  -H "Content-Type: application/json" \
  -d '{"markdown": "# Hello World\n\nThis is a **peekmd** page."}'

Response:

{
  "url": "https://peekmd.dev/aBcDeFgH",
  "slug": "aBcDeFgH",
  "expiresAt": "2026-03-22T04:30:00.000Z",
  "tier": "free"
}

The url is immediately shareable. Free pages expire in 5 minutes and include a small ad banner.

Endpoints

POST /api/create

Create a rendered markdown page.

Body (JSON):

FieldTypeRequiredDescription
markdownstringyesMarkdown content (max 500 KB)
ttlnumbernoTime-to-live in seconds. 0 = permanent. Default: 300 (free tier max).

Response (201):

{
  "url": "https://peekmd.dev/aBcDeFgH",
  "slug": "aBcDeFgH",
  "expiresAt": "2026-03-22T04:30:00.000Z",
  "tier": "free"
}

GET /:slug

Returns the rendered HTML page. Share this URL directly.

POST /api/burn/:slug

Delete a page immediately. Returns { "ok": true } or 404.

GET /api/pricing

Returns pricing details for all tiers.

GET /health

Health check. Returns { "status": "ok" }.

Payment Tiers

TierMax TTLAd BannerAuthPrice
free5 minyesnonefree
stripeunlimitednoAuthorization: Bearer sk_...$0.001-$0.01/page (coming soon)
x402unlimitednoX-PAYMENT header0.01 USDC/page (coming soon)

Stripe (metered billing)

  1. POST /api/stripe/checkout to get a checkout URL.
  2. Complete checkout to receive an API key.
  3. Pass Authorization: Bearer sk_your_key on all requests.
  4. Check usage: GET /api/billing/status with same auth header.

x402 (crypto, no account needed)

  1. Send a POST /api/create request — receive a 402 with payment details.
  2. Pay the specified amount via the x402 protocol.
  3. Retry the request with the X-PAYMENT header containing the receipt.

Tips for Agents

  • Default to free tier for quick shares. 5 minutes is enough for most agent-to-human handoffs.
  • Use TTL strategically: set ttl: 60 for a 1-minute preview, or omit it to get the tier default.
  • Markdown features: supports GFM tables, fenced code blocks with syntax highlighting, task lists, and standard markdown.
  • Size limit: 500 KB max per page. For larger content, split into multiple pages.
  • Burn after reading: call /api/burn/:slug to delete a page after the recipient has viewed it.
  • Base URL: https://peekmd.dev

Source

Homepage: peekmd.dev

Comments

Loading comments...