TopRank Skills

Home / Claw Skills / 其他 / telegraph-backlinks
Official OpenClaw rules 15%

telegraph-backlinks

Create SEO backlink articles on Telegraph (telegra.ph, DA 93, dofollow, indexable). No auth required — instant publish via API. Use when asked to build Telegraph backlinks, create telegra.ph articles with links, or scale quick backlink pages. Supports single creation, batch mode, account management, and token reuse.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 telegraph-backlinks 技能。 若已安装,则直接安装 telegraph-backlinks 技能。

Overview

Skill Key
forest-sd/telegraph-backlinks
Author
forest-sd
Source Repo
openclaw/skills
Version
-
Source Path
skills/forest-sd/telegraph-backlinks
Latest Commit SHA
5c03a197b8e727303adee265c6c615a3d282e02e

Extracted Content

SKILL.md excerpt

# Telegraph Backlinks

Publish articles on telegra.ph (DA 93, dofollow links, Google-indexable) with contextual backlinks. Zero friction — one API call, instantly live.

## Quick Start

```bash
# Create article with inline content
python3 scripts/telegraph-backlink.py create \
  --target "https://www.example.com" \
  --title "Article Title" \
  --content sections.json \
  --anchors "anchor text 1" "anchor text 2" \
  --author "BrandName"

# Batch create
python3 scripts/telegraph-backlink.py batch --file batch.json --output results.json

# List all pages across saved accounts
python3 scripts/telegraph-backlink.py list

# Create reusable account
python3 scripts/telegraph-backlink.py account --name "BrandName" --url "https://www.example.com"
```

All paths relative to this skill directory.

## Content JSON Format

Content is an array of section objects:

```json
[
  {"tag": "h3", "text": "Section Heading"},
  {"tag": "p", "text": "Paragraph with {backlink} placed naturally in the text."},
  {"tag": "p", "text": "Regular paragraph without a link."},
  {"tag": "ul", "items": [
    {"term": "Bold term", "desc": "Description"},
    "Simple list item"
  ]},
  {"tag": "blockquote", "text": "A quoted passage."}
]
```

- `{backlink}` placeholders get replaced with anchor links to the target URL
- Each `{backlink}` consumes one anchor from `--anchors` in order
- Supported tags: `h3`, `h4`, `p`, `ul`, `blockquote`

## Batch JSON Format

```json
[
  {
    "target": "https://www.example.com",
    "title": "Article Title",
    "author": "BrandName",
    "anchors": ["anchor 1", "anchor 2"],
    "sections": [
      {"tag": "h3", "text": "Heading"},
      {"tag": "p", "text": "Text with {backlink} here."}
    ]
  }
]
```

## How It Works

1. **Account creation** — `createAccount` API returns access token (saved to `~/.config/openclaw/telegraph-tokens.json` for reuse)
2. **Page creation** — `createPage` API publishes instantly, returns live URL
3. **Author URL** — set to target URL for...

Related Claw Skills