← 返回 Skills 市场
cweiping

ai-sbti-skill-test

作者 Weiping Cai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
111
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install ai-sbti-skill-test
功能描述
AI-based SBTI skill test SEO operations for https://aisbti.com/ with weighted backlink scoring, internal link-juice relay planning, and safe anchor distribut...
使用说明 (SKILL.md)

基于AI的SBTI技能测试

Use this skill when the task is to grow organic traffic for https://aisbti.com/ via external backlinks while keeping anchor diversity, indexability, and internal weight relay under control.

Goal

  • Prioritize backlink prospects by expected SEO weight transfer.
  • Keep off-page execution compliant with search engine quality expectations.
  • Convert external link gains into internal relay actions that push weight to priority pages.

Scope

  • Primary site: https://aisbti.com/
  • Primary focus: external backlinks, anchor governance, and link-juice transfer planning.
  • Secondary focus: internal relay links from linked landing pages to conversion pages.

Safety Rules

  • White-hat only. No private blog network, paid link schemes, or cloaked redirects.
  • Prefer editorial and niche-relevant sources; avoid spammy directories and comment blasts.
  • Do not overuse exact-match anchors.
  • Keep credentials in runtime secrets: /root/.openclaw/workspace/.secrets/ai-sbti-skill-test.env
  • Never store credentials under skills/.

Files

  • Planner script: scripts/build_weighted_backlink_plan.py
  • OpenClow runner: scripts/run_weighted_backlink_plan.sh
  • Runtime config template: config/ai-sbti-skill-test.env.example
  • Prospect CSV template: config/backlink-prospects.example.csv
  • Relay map CSV template: config/internal-relay-map.example.csv
  • SEO standard: references/seo-link-building-standard.md
  • Agent metadata: agents/openai.yaml

Required Inputs

  • Prospect CSV with candidate backlink opportunities.
  • Target URLs on aisbti.com where backlinks should land.
  • Optional relay map CSV to define internal link-juice transfer targets.

Workflow

  1. Prepare runtime env from config/ai-sbti-skill-test.env.example.
  2. Fill prospect candidates in CSV.
  3. Optionally define internal relay map.
  4. Run weighted planner script.
  5. Review markdown and JSON outputs.
  6. Execute outreach/submission using top-scored opportunities first.
  7. Re-run weekly with fresh candidates and updated outcomes.

Before large campaigns, read references/seo-link-building-standard.md to enforce anchor distribution, source quality thresholds, and pacing.

Quick Start

Prepare env:

mkdir -p /root/.openclaw/workspace/.secrets
cp skills/ai-sbti-skill-test/config/ai-sbti-skill-test.env.example \
  /root/.openclaw/workspace/.secrets/ai-sbti-skill-test.env
chmod 600 /root/.openclaw/workspace/.secrets/ai-sbti-skill-test.env

Generate weighted execution plan:

bash skills/ai-sbti-skill-test/scripts/run_weighted_backlink_plan.sh

Run planner directly:

python3 skills/ai-sbti-skill-test/scripts/build_weighted_backlink_plan.py \
  --site-url https://aisbti.com \
  --input-csv /root/.openclaw/workspace/ops/aisbti-seo/backlink-prospects.csv \
  --output-md /root/.openclaw/workspace/ops/aisbti-seo/weighted-backlink-plan.md \
  --output-json /root/.openclaw/workspace/ops/aisbti-seo/weighted-backlink-plan.json \
  --relay-map /root/.openclaw/workspace/ops/aisbti-seo/internal-relay-map.csv \
  --min-score 35 \
  --top-n 40 \
  --money-keyword "sbti test" \
  --money-keyword "screaming bird test indicator"

Completion Criteria

  • A scored prospect list is generated and sorted by expected SEO value.
  • Non-compliant opportunities are flagged or filtered.
  • Anchor mix checks are generated to reduce over-optimization risk.
  • Internal relay recommendations exist for weight transfer from linked pages.
安全使用建议
This skill appears to implement an offline backlink scoring and relay planner and contains no network calls, but the SKILL.md asks you to place a 'secrets' env file in /root/.openclaw/workspace/.secrets and the runner will source and export all variables from that file. Before installing or running: 1) Open and inspect any env file you put into that path — do not copy credentials you don't understand. 2) Note the package does not include the referenced config/ai-sbti-skill-test.env.example file (SKILL.md references a template that is missing) — ask the author or create a minimal env with only the specific flags you need (SITE_URL, INPUT_CSV, etc.). 3) Prefer running the Python script with explicit command-line flags pointing to local CSVs in an isolated environment rather than sourcing an opaque secrets file. 4) If you plan outreach or automated submission steps (not present here), ensure those components are separate and audited; do not store platform-level API keys or cloud credentials in the advised secrets file. 5) If you want higher assurance, run the scripts in a sandbox, and consider removing the source/ export behavior (the 'set -a; source ENV; set +a' block) or restrict the env file to non-sensitive parameters.
功能分析
Type: OpenClaw Skill Name: ai-sbti-skill-test Version: 1.0.0 The skill bundle is a legitimate SEO planning tool designed for the website https://aisbti.com/. It contains a Python script (build_weighted_backlink_plan.py) that processes CSV data to score backlink opportunities based on standard SEO metrics like authority, relevance, and anchor text distribution. The shell script (run_weighted_backlink_plan.sh) and instructions in SKILL.md are well-documented and align with the stated purpose of generating SEO execution plans without any evidence of malicious intent, data exfiltration, or unauthorized execution.
能力评估
Purpose & Capability
The name, description, CSV templates, and the Python planner align with a backlink-prioritization tool for aisbti.com. The included scripts only parse CSVs and produce markdown/JSON outputs — functionality is coherent with the stated SEO planning purpose. However, SKILL.md instructs storing 'credentials' in a secrets file even though none of the code requires API keys or external services; that guidance is not justified by the planner itself.
Instruction Scope
Runtime instructions ask you to copy a runtime env template into /root/.openclaw/workspace/.secrets and warn 'Never store credentials under skills/'. The runner script will source and export any variables found in that file. The code does not use network calls or external endpoints, so the requirement to place credentials in a secrets file is vague and unnecessary for the planner-only workflow. Also, SKILL.md's quick-start copies from skills/ai-sbti-skill-test/config/ai-sbti-skill-test.env.example but that file is not present in the package (missing template) — a coherence issue.
Install Mechanism
No install spec is provided; this is an instruction-only skill with local scripts. No external downloads or package installs are performed by the bundle itself, which is the lowest-risk install profile.
Credentials
The package declares no required environment variables or credentials, yet SKILL.md and the bash runner encourage keeping a secrets file in /root/.openclaw/workspace/.secrets and the runner will source and export it. The planner only needs file paths and simple flags; requiring or advising arbitrary credentials is disproportionate. Sourcing an unspecific secrets file could expose platform tokens or unrelated secrets to the process environment if the user follows the instructions without auditing the file.
Persistence & Privilege
always is false; the skill does not request persistent or platform-wide privileges, and it does not modify other skills or system-wide agent settings. Autonomous invocation is allowed by default but not combined with other elevated privileges here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ai-sbti-skill-test
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ai-sbti-skill-test 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of ai-sbti-skill-test for SBTI site SEO operations. - Enables AI-powered backlink prospect scoring and planning for https://aisbti.com/. - Includes white-hat rules for backlink sourcing, anchor safety, and credential protection. - Provides internal link-juice relay map and compliance with SEO best practices. - Outlines workflow, required inputs, and execution scripts for campaign management.
元数据
Slug ai-sbti-skill-test
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

ai-sbti-skill-test 是什么?

AI-based SBTI skill test SEO operations for https://aisbti.com/ with weighted backlink scoring, internal link-juice relay planning, and safe anchor distribut... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 111 次。

如何安装 ai-sbti-skill-test?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-sbti-skill-test」即可一键安装,无需额外配置。

ai-sbti-skill-test 是免费的吗?

是的,ai-sbti-skill-test 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

ai-sbti-skill-test 支持哪些平台?

ai-sbti-skill-test 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 ai-sbti-skill-test?

由 Weiping Cai(@cweiping)开发并维护,当前版本 v1.0.0。

💬 留言讨论