← Back to Skills Marketplace
blockchainhb

LaunchFast PPC Research

by BlockchainHB · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
561
Downloads
1
Stars
3
Active Installs
1
Versions
Install in OpenClaw
/install launchfast-ppc-research
Description
Conduct Amazon PPC keyword research by analyzing up to 15 competitor ASINs, extracting ranked keywords by tier and match type, and generating a bulk upload CSV.
README (SKILL.md)

LaunchFast PPC Research Skill

You are an Amazon PPC specialist. You extract high-value keywords from competitor ASINs using LaunchFast's keyword intelligence, segment them by match type and opportunity tier, and output a campaign-ready CSV that plugs directly into Amazon's Bulk Operations uploader.

Requirements before starting:

  • mcp__launchfast__amazon_keyword_research available

STEP 1 — Collect ASINs

If ASINs were not provided, ask:

Which ASINs do you want to research? (1–15 competitor or own ASINs)
Example: B08N5WRWNW, B07XYZABC1

Optional:
- Your product's ASIN (for "Your Edge" filtering — keywords where competitors rank poorly)
- Campaign name for the bulk upload? (default: "LaunchFast-Campaign-[Date]")
- Default bid per click? (default: $0.75)
- Daily budget? (default: $25/day)

STEP 2 — Run keyword research

Call with all ASINs at once (max 15):

mcp__launchfast__amazon_keyword_research(asins: ["B0...", "B0...", ...])

STEP 3 — Process keyword data

Deduplication

Merge keywords that appear across multiple ASINs. Track which ASINs share each keyword — higher overlap = higher priority.

Keyword tiers

Classify each keyword into a tier:

Tier Criteria Action
Tier 1 — Priority High search volume + low competition OR appears in 3+ ASINs Exact + Phrase match
Tier 2 — Growth Moderate volume, moderate competition Phrase + Broad
Tier 3 — Discovery Long-tail, low volume Broad only

Match type assignment

Exact match  → Tier 1 keywords (most targeted, highest bid)
Phrase match → Tier 1 + Tier 2
Broad match  → Tier 2 + Tier 3 (discovery, lower bid)

Bid estimation

Exact:  user default bid × 1.2
Phrase: user default bid × 1.0
Broad:  user default bid × 0.7

Negative keywords

Flag keywords that are clearly irrelevant (wrong category, brand names of unrelated products, etc.) — include these as negative exact.


STEP 4 — Present keyword summary

Before generating CSV, show:

## PPC Keyword Research — [Date]
ASINs analyzed: [N] | Unique keywords found: [N]

### Tier breakdown
| Tier | Keywords | Avg Search Vol | Match Types |
|------|----------|----------------|-------------|
| Tier 1 — Priority | X | X,XXX | Exact + Phrase |
| Tier 2 — Growth   | X |   XXX | Phrase + Broad |
| Tier 3 — Discovery| X |    XX | Broad only     |

### Top 15 keywords preview
| Keyword | Search Vol | Tier | Match Types | Bid (Exact) |
|---------|------------|------|-------------|-------------|
| ...

### Negative keywords flagged: [N]

Proceed with bulk CSV generation? [Yes / Adjust tiers first]

STEP 5 — Generate Amazon Bulk Upload CSV

After user confirms, generate a tab-separated .txt file at:

~/Downloads/launchfast-ppc-bulk-[date].txt

Amazon Sponsored Products Bulk Operations format

The file must be tab-separated (TSV) with these exact column headers in this exact order:

Product	Entity	Operation	Campaign ID	Ad Group ID	Portfolio ID	Ad ID	Keyword ID	Product Targeting ID	Campaign Name	Ad Group Name	Start Date	End Date	Targeting Type	State	Daily Budget	SKU	ASIN	Ad Group Default Bid	Bid	Custom Text	Campaign Type	Targeting Expression

Row structure — create 3 types of rows:

1. Campaign row (one per campaign)

Sponsored Products	Campaign	Create		[leave blank]	[leave blank]		[leave blank]	[leave blank]	[Campaign Name]		[StartDate YYYYMMDD]		Manual	enabled	[Daily Budget]

2. Ad Group row (one per tier)

Sponsored Products	Ad Group	Create		[leave blank]	[leave blank]		[leave blank]	[leave blank]	[Campaign Name]	[Ad Group Name]	[StartDate]		Manual	enabled		[leave blank]	[leave blank]	[Default Bid]

3. Keyword rows (one per keyword × match type)

Sponsored Products	Keyword	Create		[leave blank]	[leave blank]		[leave blank]	[leave blank]	[Campaign Name]	[Ad Group Name]		[EndDate]	Manual	enabled			[leave blank]	[leave blank]	[Bid]			[keyword text]

Campaign structure to generate:

Campaign: [Campaign Name]
├── Ad Group: Tier1-Exact
│   └── Keywords: [Tier 1 keywords] — Match: Exact
├── Ad Group: Tier1-Phrase
│   └── Keywords: [Tier 1 keywords] — Match: Phrase
├── Ad Group: Tier2-Phrase
│   └── Keywords: [Tier 2 keywords] — Match: Phrase
└── Ad Group: Tier3-Broad
    └── Keywords: [Tier 2 + Tier 3] — Match: Broad

Write the complete TSV file. Confirm file path and row count to user.


STEP 6 — Upload instructions

After generating, tell the user:

## How to upload to Amazon

1. Go to Seller Central → Advertising → Campaign Manager
2. Click "Bulk Operations" (top right)
3. Click "Upload" → choose file: launchfast-ppc-bulk-[date].txt
4. Review the preview → click "Submit"

⚠️ Review before submitting:
   - Verify campaign name is correct
   - Check daily budget matches your plan
   - Confirm ASINs in your ad groups match your listing
Usage Guidance
This skill appears to do what it says: gather keywords for up to 15 ASINs and create an Amazon bulk-ops TSV. Before installing/using it, verify the identity and behavior of mcp__launchfast__amazon_keyword_research: who runs it, whether it sends ASINs or other product data to an external service, and whether it requires API keys or other secrets. Also review the generated TSV in ~/Downloads before uploading to Seller Central (to confirm campaign names, budgets, bids, and ASINs). If you need higher assurance, ask the skill author for documentation of the MCP or prefer an implementation that runs locally or uses a trusted, auditable provider.
Capability Analysis
Type: OpenClaw Skill Name: launchfast-ppc-research Version: 1.0.0 The skill bundle is benign. It instructs the AI agent to perform Amazon PPC keyword research using a specified external capability (`mcp__launchfast__amazon_keyword_research`) and to generate a tab-separated CSV file in the user's `~/Downloads` directory. All instructions in `SKILL.md` are directly aligned with the stated purpose of the skill, focusing on data processing and file generation for Amazon's bulk upload system. There are no instructions for data exfiltration, unauthorized command execution, persistence, or prompt injection attempts against the agent to deviate from its purpose. The file write operation is to a standard, non-sensitive user download location with a non-executable file format.
Capability Assessment
Purpose & Capability
Name, description, and runtime instructions all describe Amazon PPC keyword research and generating an Amazon bulk-ops TSV. The single declared dependency (mcp__launchfast__amazon_keyword_research) matches the described capability; there are no unrelated environment variables, binaries, or installs requested.
Instruction Scope
SKILL.md stays on-topic: it prompts for ASINs, calls the named MCP to fetch keyword data, processes/deduplicates/tiers keywords, and writes a campaign-ready TSV to ~/Downloads. The only out-of-scope risk is that the MCP call will transmit ASINs and keyword queries to an external service — the skill does not document what data is sent or where the MCP runs.
Install Mechanism
Instruction-only skill with no install spec and no code files. This minimizes installer risk (nothing is downloaded or written by an installer).
Credentials
The skill requires no environment variables or credentials itself, which is proportional. However it relies on an external MCP (mcp__launchfast__amazon_keyword_research) that may require credentials or send data externally; those requirements are not declared in the SKILL.md, so you should confirm what that MCP needs and where it sends data.
Persistence & Privilege
always is false and the default autonomous invocation setting is used. The skill does not request persistent system-wide changes or access to other skills' configs.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install launchfast-ppc-research
  3. After installation, invoke the skill by name or use /launchfast-ppc-research
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of LaunchFast PPC Research skill. - Enables Amazon PPC keyword research using up to 15 competitor ASINs. - Extracts and segments ranked keywords by match type and opportunity tier. - Generates a campaign-ready, Amazon-compatible Bulk Operations CSV (TSV) file. - Previews keyword summary, tier breakdown, and negatives before CSV export. - Provides clear upload instructions for Amazon Seller Central.
Metadata
Slug launchfast-ppc-research
Version 1.0.0
License
All-time Installs 3
Active Installs 3
Total Versions 1
Frequently Asked Questions

What is LaunchFast PPC Research?

Conduct Amazon PPC keyword research by analyzing up to 15 competitor ASINs, extracting ranked keywords by tier and match type, and generating a bulk upload CSV. It is an AI Agent Skill for Claude Code / OpenClaw, with 561 downloads so far.

How do I install LaunchFast PPC Research?

Run "/install launchfast-ppc-research" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is LaunchFast PPC Research free?

Yes, LaunchFast PPC Research is completely free (open-source). You can download, install and use it at no cost.

Which platforms does LaunchFast PPC Research support?

LaunchFast PPC Research is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created LaunchFast PPC Research?

It is built and maintained by BlockchainHB (@blockchainhb); the current version is v1.0.0.

💬 Comments