← Back to Skills Marketplace
cweiping

ai-sbti-skill-test

by Weiping Cai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
111
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ai-sbti-skill-test
Description
AI-based SBTI skill test SEO operations for https://aisbti.com/ with weighted backlink scoring, internal link-juice relay planning, and safe anchor distribut...
README (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.
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ai-sbti-skill-test
  3. After installation, invoke the skill by name or use /ai-sbti-skill-test
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug ai-sbti-skill-test
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 111 downloads so far.

How do I install ai-sbti-skill-test?

Run "/install ai-sbti-skill-test" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is ai-sbti-skill-test free?

Yes, ai-sbti-skill-test is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does ai-sbti-skill-test support?

ai-sbti-skill-test is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created ai-sbti-skill-test?

It is built and maintained by Weiping Cai (@cweiping); the current version is v1.0.0.

💬 Comments