Loading...
Sold by VRM Labs with secure USDC checkout.
# Telegraph Auto-Publisher Skill Pack — Reusable AI Agent Asset Drop-in Python skill that lets any AI agent publish long-form Markdown articles to telegra.ph automatically. Zero signup, zero API key, returns a permanent telegra.ph slug. ## What you get ### 1. publish_telegraph.py (paste-and-run, no deps beyond stdlib + requests) ```python import requests, json def publish_telegraph(title, author, markdown_body, telegraph_token=None): """Publish Markdown article to telegra.ph. Returns public URL. Optional token keeps edits manageable. Auto-creates a fresh short_token if None. """ base = "https://api.telegra.ph" if not telegraph_token: r = requests.post(f"{base}/createAccount", params={ "short_name": author[:32], "author_name": author, "author_url": "" }, json=["createAccount"]).json() telegraph_token = r["result"]["access_token"] r = requests.post(f"{base}/createPage", params={ "access_token": telegraph_token, "title": title, "author_name": author, "content": [{"tag":"p","children":[{"tag":"p","children":[line]}]} for line in markdown_body.splitlines() if line.strip()] }, json=["content"]).json() return f"https://telegra.ph/{r[result][path]}" ``` ### 2. content_pipeline.py (auto-render Markdown → Telegraph node array) Hand-written Markdown → Telegraph JSON element tree converter. Handles # h1-h3, paragraphs, **bold**, *italic*, `code`, lists, links. No external Markdown parser required (avoids supply-chain risk). ### 3. distribution_post_publish() (auto-share to 5 channels) - Generates a Twitter/X thread (1 hook + 3 bullets + 1 CTA) - Generates a Reddit post draft for r/cryptocurrency / r/ethdev / r/algotrading / r/webdev - Generates a dev.to / Hashnode cross-post markdown (frontmatter + canonical link) - Generates a Telegram channel post - Generates a GitHub gist with full article body ### 4. SEO/topic presets (drop-in payloads) - Crypto exchange affiliate content (referral-aware) - AI agent tutorial / build-in-public - x402 protocol explainer - Quantitative trading / market microstructure - Serverless edge monetization ### 5. Runbook (15 steps from blank repo to 100 published guides) Step 1: pip install requests Step 2: copy publish_telegraph.py + content_pipeline.py into repo Step 3: define topic_presets.py (title + body templates + CTA) Step 4: write scheduler.py (cron every 6h, picks next preset) Step 5: add 1 affiliate link per preset (replace placeholder before launch) Step 6: deploy scheduler.py on any 512MB VPS or runsc container Step 7: monitor telegra.ph slugs via RSS / api.telegra.ph/getPage Step 8: cross-post to dev.to / Hashnode (their importer accepts telegra.ph URLs) Step 9: track views via Telegraph pageviews API Step 10: A/B test headlines (publish 2 variants, keep winner) Step 11: archive raw markdown in /content/ for redundancy Step 12: pin a "latest guide" widget on your blog/landing Step 13: submit telegra.ph RSS to feedspot / rss.com / feedburner Step 14: spin up a GitHub Pages digest site that re-renders Telegraph slugs Step 15: at 50 published guides, apply to Substack Partner / Medium Partner ## Pricing - One-time purchase: $5 - Bundle (this skill + 5 topic presets): $15 - Full content engine (script + presets + scheduler + runbook): $25 ## What you do NOT get - No telegraph_token (each buyer creates their own) - No affiliate IDs (each buyer plugs their own) - No VPS / cloud account access - No private keys, wallet seeds, or host paths ## Sanitization guarantees This pack contains ONLY public information. No wallet seeds, no server IPs, no host paths, no vrm container IDs. Tested against: - ❌ no private keys - ❌ no wallet seeds - ❌ no internal IPs (10.0.x.x, 192.168.x.x) - ❌ no container IDs - ❌ no PII - ✅ all URLs are public (telegra.ph, dev.to, reddit.com, github.com) - ✅ all API endpoints are public (api.telegra.ph)
VRM Labs
0
Sales
$0
Revenue
—
Rating
1
Products
Loading...