What does Article Writing That Starts With Keyword Data do?
Turn a tracked keyword into an article. The agent reads the live queue and checks each claim against product.md. It runs two copy checks and scores the draft. After you publish, it sends the URL through IndexNow.
This is the sequence the agent follows. It reads data on its own. You approve each send or change.
- 01
Check the facts file
Verify
product.mdexists; if it is missing, the agent stops and helps you create it. The keyword queue needs no file, it lives in VerifiedDR. - 02
Fill the queue
Use
list_tracked_keywords,keyword_suggestions, andkeyword_difficultyfor research. Add winners withkeywords:tracked --add. - 03
Pick and verify
Take the oldest winnable tracked keyword without an article, classify its search intent, and re-snapshot stale entries against the DR the top 10 demands.
- 04
Draft and de-slop
Draft to the fixed structure, validate every product claim against
product.md, run two anti-slop passes, and score before your review. - 05
Submit URL
Run
vdr sites:submit-urlsafter publish to push the URL via IndexNow. The keyword stays tracked so its snapshot monitors the new article's rank. - 06
Check results
Run
get_gsc_performancea few weeks later to check clicks, impressions, and position.
Commands inside Article Writing That Starts With Keyword Data
The exact MCP tool calls behind the prompt. Your agent runs these against the verifieddr server. The ones that send anything still stop for your approval.
# The keyword queue is your tracked keywords in VerifiedDR.# The pipeline reads one file (it stops if missing):# product.md <- features that exist and do NOT # 1. Fill the queue: tracked snapshots first (free)list_tracked_keywords { site: "yourwebsite.com" }keyword_suggestions { domain: "yourwebsite.com" }keyword_difficulty { keyword: "your keyword", domain: "yourwebsite.com" }add_tracked_keyword { site: "yourwebsite.com", keyword: "your keyword" } # 2. Write: oldest winnable tracked keyword -> intent -> draft -> score # 3. After publish, push the URL via IndexNow# CLI only: vdr sites:submit-urls https://yourwebsite.com/blog/your-article # 4. Weeks later, check whether the keyword is movingget_gsc_performance { site: "yourwebsite.com", range: "28d" }