signallayer-backlinks-client

signallayer-backlinks-client is a skill for Claude Code, Codex from kennyzir/7deer_skills. It costs 72 tokens per session (1,067 once invoked), scanned A, original, MIT.

A client for the SignalLayer.io API, a web service for creating and tracking backlink campaigns. It can verify an API key, check credits, create campaigns, view campaign status, and list campaigns.

In plain words
What is it for?
Use it to configure and verify a SignalLayer API key, create backlink campaigns, check their progress, list campaigns, or query account credits.
Why use it?
It provides a defined way to manage these API operations while keeping the full API key out of replies, logs, and campaign history.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to configure and verify a SignalLayer API key, create backlink campaigns, check their progress, list campaigns, or query account credits.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kennyzir/7deer_skills/signallayer-backlinks-client
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 kennyzir/7deer_skills --skill signallayer-backlinks-client
Clone the repo
git clone --depth 1 https://github.com/kennyzir/7deer_skills

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 signallayer-backlinks-client

README.md
[![agentmods](https://agentmods.dev/badge/skills/kennyzir/7deer_skills/signallayer-backlinks-client/github.svg)](https://agentmods.dev/skills/kennyzir/7deer_skills/signallayer-backlinks-client)
Your own site
<a href="https://agentmods.dev/skills/kennyzir/7deer_skills/signallayer-backlinks-client"><img src="https://agentmods.dev/badge/skills/kennyzir/7deer_skills/signallayer-backlinks-client/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for signallayer-backlinks-client

Your own site · 80×15
<a href="https://agentmods.dev/skills/kennyzir/7deer_skills/signallayer-backlinks-client"><img src="https://agentmods.dev/badge/skills/kennyzir/7deer_skills/signallayer-backlinks-client.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,067 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00072 $0.01067
Opus 5 $0.00036 $0.00534
Sonnet 5 $0.00014 $0.00213
Haiku 4.5 $0.00007 $0.00107

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

Security

Grade A, and why

signallayer-backlinks-client scanned grade A with 0 findings 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 13d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/signallayer_client.py, tests/test_signallayer_client.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

signallayer-backlinks-client/SKILL.md · 114 lines

How it starts

The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.

安全规则

  1. 优先从 SIGNALLAYER_API_KEY 环境变量读取 Key。
  2. 不在回复、日志或 Campaign 历史中回显完整 Key。
  3. 仅在用户明确选择兼容模式时,才保存到 memory/signallayer-api-user.md;提醒这是明文文件且不得提交 Git。
  4. 配置后必须调用 GET /credits 真实验证。仅检查 sl_ 前缀不算验证成功。

API 契约

Base URL:https://signallayer.io/api/openclaw

操作 方法与路径
查询积分 / 验证 Key GET /credits
创建 POST /create-campaign
查询单个任务 GET /campaign-status/{id}
查询任务列表 GET /campaigns?limit=20&offset=0

认证 Header:Authorization: Bearer <USER_API_KEY>

创建流程

  1. 获取 API Key 并调用 /credits
  2. 从用户请求提取参数:
    • targetUrl:必填。
    • brandName:API 必填;用户未提供时,可从目标 hostname 生成候选值并明确告知用户。
    • linkCount:API 必填;用户未指定时客户端使用 200。
    • keywords:可选,默认空字符串。
    • strategysafety(默认)、neutralaggressive
    • speednatural(默认)、standarddrip
    • dripDaysdrip 时为 10–30,默认 14。
  3. 调用:
POST https://signallayer.io/api/openclaw/create-campaign
Authorization: Bearer <USER_API_KEY>
Content-Type: application/json

{
  "targetUrl": "https://example.com",
  "brandName": "Example",
  "keywords": "seo,marketing",
  "linkCount": 200,
  "strategy": "safety",
  "speed": "natural",
  "dripDays": 14,
  "source": "openclaw-skill"
}
  1. 创建成功必须按 HTTP 201 和 success: true 判断。Campaign ID 位于 campaign.id
  2. 只记录非敏感 Campaign 元数据。

状态与列表

状态响应的进度位于:

{
  "campaign": {
    "progress": {
      "total": 200,
      "completed": 85,
      "pending": 115,
      "percent": 43
    }
  }
}

不要读取不存在的顶层 completedtotalcampaign_idupdatedAt 或预计完成时间。

列表接口默认返回 20 条,limit 最大为 100。它是 Campaign 分页数量,与每个 Campaign 的外链数量无关。

计费与速度

  • 当前计费:1 条外链 = 1 积分
  • aggressive 不按 1.5 倍扣积分。
  • API 不支持 instant,不得发送或向用户推荐该值。
  • natural/standard 进入正常 Agent 队列;drip 生成 10–30 天的日期排期。
  • API 不返回 SLA 或预计完成日期,不要自行承诺。

错误处理

读取 HTTP 状态和 JSON 中的 codeerror、可选 field

  • 400:参数或 Campaign ID 格式错误。
  • 401:Key 缺失或无效。
  • 402:积分不足。
  • 404:任务不存在或不属于当前 Key。
  • 500:服务端创建、列表或状态查询失败。

遇到 HTML 响应时,优先检查是否误用了 api.signallayer.io/v1/campaigns/{id} 等旧路径。

Read the full file on GitHub · 114 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 13d ago First seen · 114 lines · 72 tokens per session scan A d0fc7dc00bb0

Subscribe to this mod's changes

signallayer-backlinks-client is a skill published in the GitHub repository kennyzir/7deer_skills (313 stars, last pushed 4d ago), licensed MIT. It adds 72 tokens to every session and 1,067 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

migrate-radix-to-base

Migrates React projects and components from Radix UI to Base UI. Use when asked to migrate from radix, move to base-ui, convert radix primitives, or switch a shadcn project's base library. Handles single components ("migrate accordion") and whole projects.

shadcn-ui/ui · 61 tokens

non-json-content-types

Handle FormData, file uploads, Blob, Uint8Array, and ReadableStream inputs in tRPC mutations. Use octetInputParser from @trpc/server/http for binary data. Route non-JSON requests with splitLink and isNonJsonSerializable() from @trpc/client. FormData and binary inputs only work with mutations (POST).

trpc/trpc · 75 tokens

trigger-authoring-tasks

Covers writing backend Trigger.dev tasks with @trigger.dev/sdk: defining task() and schemaTask(), the run function and its ctx, retries, waits, queues and concurrency, idempotency keys, run metadata, logging, triggering other tasks (and the Result shape), scheduled/cron tasks, and the essentials of trigger.config.ts.…

triggerdotdev/trigger.dev · 115 tokens

saas-builder

Clone, verify, map, and build on top of ixartz/SaaS-Boilerplate for a user's SaaS idea. Use when a user wants to reuse SaaS Boilerplate, evaluate how their product fits it, or build product-specific pages, database schema, roles, permissions, MVP features, and launch scope on top of the boilerplate.

ixartz/SaaS-Boilerplate · 75 tokens

arcgis-to-portaljs

Migrate a whole ArcGIS Hub site into a PortalJS Arc portal end-to-end. Harvests the Hub /data.json (DCAT-US) inventory, exports every FeatureService layer through the ArcGIS REST query API with resultOffset paging, converts each to the serverless dual tier (PMTiles render + GeoParquet query) with tabular items to…

datopian/portaljs · 134 tokens

fast-typescript-check

Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…

internet-development/www-sacred · 84 tokens