Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

paragraph-skill段落技巧

Agent Skill

paragraph-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

282

周安装

12

GitHub Stars

公开资料未说明

下载量

99
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:paragraph-skill(段落技巧)
来源仓库:https://github.com/claireaicodes/paragraph-skill
安装命令:
openclaw skills install paragraph-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install paragraph-skill

简介

访问 Paragraph.com Web3 原生博客,通过 API 创建、获取和管理链上帖子、出版物、订阅者和代币化内容。

SKILL.md

name
paragraph
description
OpenClaw skill for Paragraph.com — Web3-native blogging with tokenization, onchain storage, and community features
version
1.2.0
author
Phil (OpenClaw)
license
ISC
homepage
https://github.com/ClaireAICodes/openclaw-skill-paragraph
metadata
{ "openclaw": { "emoji": "📝", "requires": { "env": ["PARAGRAPH_API_KEY", "PARAGRAPH_PUBLICATION_SLUG"] } } }
type
tool
main
skill.js
env
description
Paragraph API authentication key
required
true
description
Publication slug for URL building (required). Example: "myblog" or "jonathancolton.eth
required
true
description
Default publication ID (optional, not needed if slug is set)
required
false
description
Custom API base URL (for testing)
required
false
tools
dependencies
[] # Uses native fetch, no external deps
tags
documentation
README.md
setup
description
Go to Paragraph account settings → Integrations → Generate API key
description
Find your publication slug in your Paragraph dashboard (e.g., "myblog" or "jonathancolton.eth")
description
Add PARAGRAPH_API_KEY and PARAGRAPH_PUBLICATION_SLUG to OpenClaw environment
description
Set PARAGRAPH_PUBLICATION_ID if you prefer using ID over slug (slug is recommended)
examples
call
paragraph_testConnection
call
paragraph_getMyPublication
call
paragraph_createPost
params
title
My Web3 Blog Post
markdown
# Hello\
sendNewsletter
false
categories
["web3", "blockchain"]
call
paragraph_listPosts
params
limit
10
includeContent
false
call
paragraph_getCoin
params
coinId
coin_123
notes

Paragraph OpenClaw Skill

![License: ISC](https://opensource.org/licenses/ISC) ![OpenClaw Skill](https://github.com/openclaw/openclaw) ![Paragraph API](https://paragraph.com/docs/api-reference) ![Node.js 19+](https://nodejs.org)

Overview

Paragraph.com reimagines blogging for the decentralized era. Posts are stored onchain, can be minted as NFTs (coins), and communities can own and govern content. This skill gives OpenClaw agents full programmatic access to Paragraph's API, enabling automated publishing workflows, subscriber management, and token-gated content strategies.

Why integrate Paragraph with OpenClaw?

  • Automated content pipelines: Schedule regular posts, cross-post from other platforms, or auto-publish research reports
  • Tokenized engagement: Track coin holders, distribute rewards, and build onchain communities
  • Newsletter automation: Manage subscriber lists, segment audiences, and trigger send-outs without manual work
  • Decentralized permanence: Your content lives on the blockchain, immune to platform takedowns
  • Monetization ready: Built-in token economics mean you can launch social tokens around your writing

This skill is production-ready for creators, DAOs, and Web3 projects that want to treat blogging as a protocol, not a siloed service.

Features in Depth

Post Management

Create posts with rich Markdown, categories, and optional newsletter dispatch. Paragraph handles onchain anchoring automatically. You can:

  • Publish instantly or wait for onchain confirmation (waitForProcessing)
  • Assign categories for discoverability
  • Attach images and embedded content via Markdown
  • Retrieve posts by ID or human-readable slug
  • List recent posts with or without full content

Note: Updating posts isn't supported by Paragraph's API yet. To "edit", you delete and recreate (preserving slug if possible).

Publication Control

Every Paragraph account has one or more publications (think: multi-author blogs under one roof). This skill can:

  • Auto-detect your primary publication using just an API key
  • Fetch publication metadata (name, slug, custom domains, settings)
  • Look up publications by their ENS-style domain (e.g., myblog.paragraph.eth)

Subscriber Relationship Management

Build and nurture your audience:

  • Add subscribers individually via email or wallet address
  • Tag subscribers for segmentation (e.g., "premium", "nft-holder", "early-adopter")
  • Import bulk lists via CSV (ideal for migrating from Substack, Ghost, etc.)
  • Track subscriber count over time
  • Double opt-in support for GDPR compliance

CSV format for import:

email,wallet,tags
alice@example.com,,newsletter
bob@example.com,0x123...,nft-holder

Token & Coin Operations

Paragraph's killer feature: every post can have a coin (social token). This skill exposes:

  • Get coin details by ID (supply, holders, price)
  • Look up coins by contract address (for external tracking)
  • Discover trending/popular coins across the platform
  • List coin holders (with pagination) — useful for airdrops or community analysis

Coins enable creators to launch micro-economies around their content. Readers can buy/sell the coin, aligning incentives around the writer's success.

User & Feed Discovery

  • Get user profiles by internal ID or linked wallet
  • Fetch the global "For You" feed or get posts filtered by tag
  • Combine with coin data to identify influential writers

Setup Guide

Step 1: Get your Paragraph API key

  1. Log into Paragraph
  2. Navigate to Account Settings → Integrations
  3. Click "Generate API Key"
  4. Copy the key (starts with para_ or similar)

Step 2: Find your publication slug

Your publication slug is the URL-friendly name used in your blog's address:

  • If your blog is myblog.paragraph.eth, the slug is myblog
  • You can also find it in the dashboard under Publication Settings
  • Alternatively, set only PARAGRAPH_API_KEY and call paragraph_getMyPublication to auto-discover

Step 3: Configure OpenClaw

Add to your OpenClaw environment (config file or export):

export PARAGRAPH_API_KEY="pk_live_xxxxxxxx"
export PARAGRAPH_PUBLICATION_SLUG="myblog"

Restart or reload OpenClaw to pick up the variables.

Step 4: Verify

# In an OpenClaw agent session
tools.paragraph_testConnection({})  # should return success: true
tools.paragraph_getMyPublication({})  # should return your publication data

Real-World Use Cases

Automated Research Publishing

If you run a Web3 research DAO, use OpenClaw to:

  1. Scrape or generate daily market reports
  2. Format them in Markdown with charts
  3. Publish to Paragraph via paragraph_createPost
  4. Mint a coin for each report to create prediction markets
  5. Notify subscribers with the new slug

Token-Gated Newsletter

  1. Build a list of wallet holders from paragraph_listCoinHolders
  2. Export to CSV and import as premium subscribers
  3. Create a posts with exclusive insights
  4. Use sendNewsletter: true to push to that segment only

Cross-Platform Syndication

  • Publish to Paragraph first (onchain timestamp)
  • Cross-post to Mirror, Medium, or Twitter with proof of originality
  • Track engagement across platforms using coin metrics

Personal Content Archive

Back up all your blog content to your own knowledge base using OpenClaw's knowledge-management skill alongside this one — parse posts with paragraph_listPosts, extract content, and store locally in a structured format.

Error Handling & Best Practices

Rate Limits

Paragraph API has rate limits per API key. If you hit limits:

  • Implement exponential backoff (wait 1s, 2s, 4s, 8s...)
  • Batch operations (e.g., import subscribers instead of individual adds)
  • Cache frequently accessed data (publication info, user profiles)

Onchain Delays

When waitForProcessing: false, the post returns immediately but the slug may be undefined for a few seconds/minutes while the transaction confirms. Strategies:

  • Poll paragraph_getPostBySlug with the returned id until slug appears
  • Or just set waitForProcessing: true for simpler flow (slower)

CSV Import Quirks

  • File must be UTF-8 plain text
  • Headers: email,wallet,tags (tags are comma-separated within the cell)
  • At least one of email or wallet must be present per row
  • Duplicate emails/wallets are skipped by Paragraph

Invalid API Keys

Common causes:

  • Key from test environment used in production (or vice versa)
  • Key accidentally revoked
  • Copy-paste error (extra whitespace)

Use paragraph_testConnection to validate.

Implementation Details

  • Written in pure JavaScript (ES modules)
  • Uses Node's built-in fetch (Node 19+ / OpenClaw's Node 24)
  • No external dependencies → minimal attack surface, easy to audit
  • Tools are pure functions — easy to test and compose
  • Error responses include human-readable messages from Paragraph API

Troubleshooting

SymptomLikely CauseFix
Not logged in from any toolPARAGRAPH_API_KEY missing/invalidSet correct key, restart agent
Publication not foundSlug typo or wrong publicationVerify slug via dashboard or getMyPublication
Slug undefined after createwaitForProcessing: false and fast pollingWait a few seconds and retry, or use waitForProcessing: true
Rate limit exceededToo many requests in short timeAdd delays, batch calls, or upgrade Paragraph plan
CSV import: invalid formatNot CSV, wrong headers, binary modeEnsure UTF-8 text with exact header row

Version History

  • 1.2.0 (2026-03-10) — Republished to ClawHub with comprehensive docs; added LICENSE; minor improvements
  • 1.1.0 — Added coin holder listing, enhanced user lookup
  • 1.0.0 — Initial public release with posts, publications, subscribers, coins, feed

License

ISC © Phil (OpenClaw)

Contributing

This skill lives at: https://github.com/ClaireAICodes/openclaw-skill-paragraph

Issues and PRs welcome. Please test against a Paragraph sandbox account before submitting.

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.8%
按下载量换算94

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills