{"id":"b66e9a10-19e6-45f5-8047-6cff4161910e","shortId":"FpeQTL","kind":"skill","title":"citedy-trend-scout","tagline":"Find what your audience is searching for right now — scout X/Twitter and Reddit for trending topics, discover and deep-analyze competitors, and find content gaps. Combine social signals with SEO intelligence. Powered by Citedy.","description":"# Trend & Intent Scout — Skill Instructions\n\n## Overview\n\nFind what your audience is searching for right now. This skill combines real-time social signals from X/Twitter and Reddit with SEO intelligence — giving you trending topics, competitor deep-dives, and content gaps in one workflow.\n\n**What sets this apart from DataForSEO or Semrush:** those tools show you historical search volume. This skill shows you what people are talking about _today_ on social — and maps those signals directly to content opportunities your competitors haven't covered yet.\n\nUse cases:\n\n- Morning briefing: what's blowing up in your niche right now?\n- Competitor research: what's their content strategy and where are their gaps?\n- Content calendar: find topics with social traction before they peak in SEO tools\n- Market research: understand audience intent at the conversation level\n\n---\n\n## When to Use\n\n| Situation                          | What to do                                         |\n| ---------------------------------- | -------------------------------------------------- |\n| \"What should I write about today?\" | Scout X + Reddit for trending topics in your niche |\n| \"What is my competitor doing?\"     | Discover + analyze competitor domains              |\n| \"What content am I missing?\"       | Generate content gaps vs competitor URLs           |\n| \"Morning briefing on AI trends\"    | Full workflow: X scout + Reddit scout + gaps       |\n| \"Find competitors in [niche]\"      | Discover competitors by keywords                   |\n\n---\n\n## Setup\n\n### 1. Register your agent\n\n```http\nPOST https://www.citedy.com/api/agent/register\nContent-Type: application/json\n\n{\n  \"name\": \"My Trend Scout\",\n  \"blog_url\": \"https://yourblog.com\"\n}\n```\n\n**Response:**\n\n```json\n{\n  \"api_key\": \"citedy_agent_xxxxxxxxxxxx\",\n  \"tenant_id\": \"uuid\",\n  \"blog_handle\": \"yourblog\",\n  \"credits\": 100\n}\n```\n\nStore `api_key` as `CITEDY_API_KEY` in your environment.\n\n### 2. Authenticate all requests\n\nAll API calls require:\n\n```\nAuthorization: Bearer $CITEDY_API_KEY\n```\n\n### 3. Verify setup\n\n```http\nGET https://www.citedy.com/api/agent/health\nAuthorization: Bearer $CITEDY_API_KEY\n```\n\n```json\n{ \"status\": \"ok\", \"version\": \"3.0.0\" }\n```\n\n---\n\n## Core Workflows\n\n### Workflow 1 — Scout X/Twitter for trending topics\n\n**Step 1: Start the scout run**\n\n```http\nPOST https://www.citedy.com/api/agent/scout/x\nAuthorization: Bearer $CITEDY_API_KEY\nContent-Type: application/json\n\n{\n  \"query\": \"AI content automation\",\n  \"mode\": \"fast\",\n  \"limit\": 20\n}\n```\n\nResponse:\n\n```json\n{\n  \"run_id\": \"x_run_abc123\",\n  \"status\": \"processing\",\n  \"estimated_seconds\": 15\n}\n```\n\n**Step 2: Poll for results** (poll every 5s until `status: \"completed\"`)\n\n```http\nGET https://www.citedy.com/api/agent/scout/x/x_run_abc123\nAuthorization: Bearer $CITEDY_API_KEY\n```\n\n```json\n{\n  \"run_id\": \"x_run_abc123\",\n  \"status\": \"completed\",\n  \"results\": [\n    {\n      \"topic\": \"GPT-5 rumored release date\",\n      \"engagement_score\": 94,\n      \"tweet_count\": 1240,\n      \"sentiment\": \"excited\",\n      \"top_posts\": [\"...\"],\n      \"content_angle\": \"Break down what GPT-5 means for content creators\"\n    }\n  ],\n  \"credits_used\": 35\n}\n```\n\n---\n\n### Workflow 2 — Scout Reddit for audience intent\n\n**Step 1: Start the scout run**\n\n```http\nPOST https://www.citedy.com/api/agent/scout/reddit\nAuthorization: Bearer $CITEDY_API_KEY\nContent-Type: application/json\n\n{\n  \"query\": \"AI writing tools comparison\",\n  \"subreddits\": [\"SEO\", \"marketing\", \"artificial\"],\n  \"limit\": 15\n}\n```\n\nResponse:\n\n```json\n{\n  \"run_id\": \"reddit_run_xyz789\",\n  \"status\": \"processing\",\n  \"estimated_seconds\": 12\n}\n```\n\n**Step 2: Poll for results**\n\n```http\nGET https://www.citedy.com/api/agent/scout/reddit/reddit_run_xyz789\nAuthorization: Bearer $CITEDY_API_KEY\n```\n\n```json\n{\n  \"run_id\": \"reddit_run_xyz789\",\n  \"status\": \"completed\",\n  \"results\": [\n    {\n      \"topic\": \"People frustrated with Jasper pricing\",\n      \"subreddit\": \"r/SEO\",\n      \"upvotes\": 847,\n      \"comments\": 134,\n      \"pain_point\": \"Too expensive for small teams\",\n      \"content_angle\": \"Write a comparison targeting budget-conscious teams\"\n    }\n  ],\n  \"credits_used\": 30\n}\n```\n\n---\n\n### Workflow 3 — Find content gaps vs competitors\n\n**Step 1: Generate gaps** (synchronous, returns when done)\n\n```http\nPOST https://www.citedy.com/api/agent/gaps/generate\nAuthorization: Bearer $CITEDY_API_KEY\nContent-Type: application/json\n\n{\n  \"competitor_urls\": [\n    \"https://jasper.ai/blog\",\n    \"https://copy.ai/blog\"\n  ]\n}\n```\n\n```json\n{\n  \"status\": \"completed\",\n  \"gaps_count\": 23,\n  \"top_gaps\": [\n    {\n      \"topic\": \"AI content for e-commerce product descriptions\",\n      \"competitor_coverage\": \"none\",\n      \"search_volume_est\": \"high\",\n      \"difficulty\": \"medium\",\n      \"recommended_angle\": \"Step-by-step guide with real examples\"\n    }\n  ],\n  \"credits_used\": 40\n}\n```\n\n**Step 2: Retrieve all gaps**\n\n```http\nGET https://www.citedy.com/api/agent/gaps\nAuthorization: Bearer $CITEDY_API_KEY\n```\n\n---\n\n### Workflow 4 — Discover and analyze competitors\n\n**Discover by keywords:**\n\n```http\nPOST https://www.citedy.com/api/agent/competitors/discover\nAuthorization: Bearer $CITEDY_API_KEY\nContent-Type: application/json\n\n{\n  \"keywords\": [\"AI blog automation\", \"SEO content tool\", \"autopilot blogging\"]\n}\n```\n\n```json\n{\n  \"competitors\": [\n    { \"domain\": \"jasper.ai\", \"relevance_score\": 0.94, \"category\": \"direct\" },\n    { \"domain\": \"surfer.seo\", \"relevance_score\": 0.81, \"category\": \"partial\" }\n  ],\n  \"credits_used\": 20\n}\n```\n\n**Deep-analyze a competitor:**\n\n```http\nPOST https://www.citedy.com/api/agent/competitors/scout\nAuthorization: Bearer $CITEDY_API_KEY\nContent-Type: application/json\n\n{\n  \"domain\": \"jasper.ai\",\n  \"mode\": \"fast\"\n}\n```\n\n```json\n{\n  \"domain\": \"jasper.ai\",\n  \"content_strategy\": {\n    \"posting_frequency\": \"3x/week\",\n    \"top_topics\": [\"copywriting\", \"AI tools\", \"marketing\"],\n    \"avg_word_count\": 1850,\n    \"formats\": [\"how-to\", \"listicle\", \"comparison\"]\n  },\n  \"top_performing_content\": [...],\n  \"weaknesses\": [\"No Reddit presence\", \"Ignores technical SEO topics\"],\n  \"credits_used\": 25\n}\n```\n\n---\n\n## Examples\n\n### Example 1 — \"What's trending in AI right now?\"\n\n```\n1. POST /api/agent/scout/x   { \"query\": \"AI tools 2025\", \"mode\": \"fast\" }\n2. Poll GET /api/agent/scout/x/{runId} until status = \"completed\"\n3. POST /api/agent/scout/reddit  { \"query\": \"AI tools\", \"subreddits\": [\"MachineLearning\", \"artificial\"] }\n4. Poll GET /api/agent/scout/reddit/{runId}\n5. Summarize top 5 opportunities with content angles\n```\n\nEstimated cost: 35 + 30 = **65 credits**\n\n---\n\n### Example 2 — \"Find content gaps vs competitor.com\"\n\n```\n1. POST /api/agent/competitors/scout  { \"domain\": \"competitor.com\", \"mode\": \"ultimate\" }\n2. POST /api/agent/gaps/generate  { \"competitor_urls\": [\"https://competitor.com/blog\"] }\n3. GET /api/agent/gaps\n4. Return top 10 gaps sorted by opportunity score\n```\n\nEstimated cost: 50 + 40 = **90 credits**\n\n---\n\n### Example 3 — \"Full morning briefing\"\n\n```\n1. POST /api/agent/scout/x    { \"query\": \"[your niche]\", \"mode\": \"fast\" }\n2. POST /api/agent/scout/reddit  { \"query\": \"[your niche]\", \"subreddits\": [...] }\n3. Poll both runs in parallel\n4. GET /api/agent/gaps  (use cached gaps from last generate)\n5. Compile briefing: trending topics + audience pain points + open content gaps\n```\n\nEstimated cost: 35 + 30 = **65 credits** (gaps free if cached)\n\n---\n\n## API Reference\n\n### Glue endpoints\n\n| Endpoint            | Method | Credits | Description                        |\n| ------------------- | ------ | ------- | ---------------------------------- |\n| `/api/agent/health` | GET    | 0       | Service health check               |\n| `/api/agent/me`     | GET    | 0       | Your account info, credits balance |\n| `/api/agent/status` | GET    | 0       | Current run statuses               |\n\n### Scout endpoints\n\n#### `POST /api/agent/scout/x`\n\nStart an async X/Twitter trend scout run.\n\n| Parameter | Type                 | Required | Description                                                                               |\n| --------- | -------------------- | -------- | ----------------------------------------------------------------------------------------- |\n| `query`   | string               | yes      | Topic or keyword to scout                                                                 |\n| `mode`    | `fast` \\| `ultimate` | no       | `fast` = top posts (35 credits), `ultimate` = deep analysis (70 credits). Default: `fast` |\n| `limit`   | number               | no       | Max results to return (default: 20, max: 50)                                              |\n\n**Response:** `{ run_id, status: \"processing\", estimated_seconds }`\n\n---\n\n#### `GET /api/agent/scout/x/{runId}`\n\nPoll X scout run status and results.\n\n**Response when processing:** `{ run_id, status: \"processing\" }`\n\n**Response when completed:** `{ run_id, status: \"completed\", results: [...], credits_used }`\n\nCredits: **0** (polling is free)\n\n---\n\n#### `POST /api/agent/scout/reddit`\n\nStart an async Reddit trend scout run.\n\n| Parameter    | Type     | Required | Description                                                   |\n| ------------ | -------- | -------- | ------------------------------------------------------------- |\n| `query`      | string   | yes      | Topic or keyword to scout                                     |\n| `subreddits` | string[] | no       | Specific subreddits to search (default: auto-select by topic) |\n| `limit`      | number   | no       | Max results (default: 15, max: 30)                            |\n\n**Response:** `{ run_id, status: \"processing\", estimated_seconds }`\n\nCredits: **30 per run**\n\n---\n\n#### `GET /api/agent/scout/reddit/{runId}`\n\nPoll Reddit scout run status and results.\n\nCredits: **0** (polling is free)\n\n---\n\n#### `POST /api/agent/gaps/generate`\n\nAnalyze competitor content and generate gaps for your blog. Synchronous.\n\n| Parameter         | Type     | Required | Description                           |\n| ----------------- | -------- | -------- | ------------------------------------- |\n| `competitor_urls` | string[] | yes      | Blog/content URLs to analyze (max: 5) |\n\n**Response:** `{ status: \"completed\", gaps_count, top_gaps: [...], credits_used }`\n\nCredits: **40 per call**\n\n---\n\n#### `GET /api/agent/gaps`\n\nRetrieve all previously generated content gaps for your account.\n\nCredits: **0**\n\n---\n\n#### `POST /api/agent/competitors/discover`\n\nFind competitors by keywords.\n\n| Parameter  | Type     | Required | Description                                       |\n| ---------- | -------- | -------- | ------------------------------------------------- |\n| `keywords` | string[] | yes      | Keywords that define your niche (min: 1, max: 10) |\n\n**Response:** `{ competitors: [{ domain, relevance_score, category }], credits_used }`\n\nCredits: **20 per call**\n\n---\n\n#### `POST /api/agent/competitors/scout`\n\nDeep-analyze a competitor's content strategy.\n\n| Parameter | Type                 | Required | Description                                                                              |\n| --------- | -------------------- | -------- | ---------------------------------------------------------------------------------------- |\n| `domain`  | string               | yes      | Competitor domain (e.g. `jasper.ai`)                                                     |\n| `mode`    | `fast` \\| `ultimate` | no       | `fast` = summary (25 credits), `ultimate` = full deep-dive (50 credits). Default: `fast` |\n\n**Response:** `{ domain, content_strategy, top_performing_content, weaknesses, credits_used }`\n\nCredits: **25 (fast) / 50 (ultimate)**\n\n---\n\n## Pricing\n\n| Action                      | Credits |\n| --------------------------- | ------- |\n| Scout X — fast              | 35      |\n| Scout X — ultimate          | 70      |\n| Scout Reddit                | 30      |\n| Content gaps generate       | 40      |\n| Retrieve gaps (cached)      | 0       |\n| Discover competitors        | 20      |\n| Scout competitor — fast     | 25      |\n| Scout competitor — ultimate | 50      |\n| Polling (any run)           | 0       |\n| Health / me / status        | 0       |\n\nCredits are deducted at job start. Failed runs are refunded automatically.\n\nTop up credits at: https://www.citedy.com/dashboard/billing\n\n---\n\n## Rate Limits\n\n| Category                    | Limit                |\n| --------------------------- | -------------------- |\n| Scout (X + Reddit combined) | 10 runs / hour       |\n| Content gaps generate       | 10 calls / hour      |\n| Competitor scout            | 20 calls / hour      |\n| General API                 | 60 requests / minute |\n\nRate limit headers are returned on every response:\n\n```\nX-RateLimit-Limit: 10\nX-RateLimit-Remaining: 7\nX-RateLimit-Reset: 1709295600\n```\n\n---\n\n## Limitations\n\n- **X scout** requires topics with sufficient public English-language conversation (min ~100 recent posts)\n- **Reddit scout** works best for niches active on Reddit; B2B topics may have fewer results\n- **Gaps generate** analyzes content at the URL level — paywalled or JS-only content may not be fully indexed\n- **Competitor scout** covers publicly accessible content only\n- **Async runs expire** after 24 hours — poll results within that window\n- Scout results reflect data at time of run; real-time trends can shift within hours\n\n---\n\n## Error Handling\n\n| HTTP Status | Code                   | Meaning                                              |\n| ----------- | ---------------------- | ---------------------------------------------------- |\n| 401         | `unauthorized`         | Invalid or missing API key                           |\n| 402         | `insufficient_credits` | Not enough credits for this operation                |\n| 404         | `run_not_found`        | Run ID doesn't exist or expired                      |\n| 422         | `validation_error`     | Invalid request parameters                           |\n| 429         | `rate_limited`         | Too many requests — check `X-RateLimit-Reset` header |\n| 500         | `internal_error`       | Server error — run will be auto-refunded             |\n\n**Error response format:**\n\n```json\n{\n  \"error\": {\n    \"code\": \"insufficient_credits\",\n    \"message\": \"This operation requires 35 credits, you have 12.\",\n    \"required\": 35,\n    \"available\": 12\n  }\n}\n```\n\n**On 429:** Wait until `X-RateLimit-Reset` timestamp, then retry.\n\n**On 500:** The run is automatically refunded. Retry after 30 seconds.\n\n---\n\n## Response Guidelines\n\nWhen presenting scout results to the user:\n\n1. **Lead with action** — don't just list topics, suggest the best content angle for each\n2. **Prioritize by opportunity** — sort by engagement_score or relevance, not alphabetically\n3. **Cross-reference signals** — a topic trending on both X and Reddit is a stronger signal than one platform alone\n4. **Connect gaps to trends** — the best opportunities are content gaps that are _also_ trending\n5. **Be specific** — \"Write about AI tools\" is useless; \"Write a comparison of Jasper vs Citedy targeting budget-conscious e-commerce teams (trending on r/SEO, 847 upvotes)\" is actionable\n\n---\n\n## Want More?\n\nThis skill covers trend scouting, competitor analysis, and content gaps.\n\nFor the full Citedy agent suite:\n\n- **Article Autopilot** — generate full SEO articles from topics found here\n- **Social Poster** — adapt articles to LinkedIn, X, Reddit, Instagram automatically\n- **Video Shorts** — turn articles into short-form video content\n- **Lead Magnets** — create checklists, swipe files, and frameworks from your content\n\nRegister at https://www.citedy.com or contact team@citedy.com for enterprise plans.","tags":["citedy","trend","scout","seo","agent","agent-skills","ai-agent","autogpt","content-marketing"],"capabilities":["skill","source-citedy","skill-citedy-trend-scout","topic-agent-skills","topic-ai-agent","topic-autogpt","topic-content-marketing","topic-seo"],"categories":["citedy-seo-agent"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/citedy/citedy-seo-agent/citedy-trend-scout","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add citedy/citedy-seo-agent","source_repo":"https://github.com/citedy/citedy-seo-agent","install_from":"skills.sh"}},"qualityScore":"0.456","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 12 github stars · SKILL.md body (15,630 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:07:18.172Z","embedding":null,"createdAt":"2026-04-23T13:04:22.987Z","updatedAt":"2026-05-18T19:07:18.172Z","lastSeenAt":"2026-05-18T19:07:18.172Z","tsv":"'-5':392,412 '/api/agent/competitors/discover':630,1119 '/api/agent/competitors/scout':677,793,1153 '/api/agent/gaps':611,808,852,1106 '/api/agent/gaps/generate':545,800,1067 '/api/agent/health':300,888 '/api/agent/me':894 '/api/agent/register':243 '/api/agent/scout/reddit':437,758,768,839,998,1052 '/api/agent/scout/reddit/reddit_run_xyz789':479 '/api/agent/scout/x':330,741,751,831,911,966 '/api/agent/scout/x/x_run_abc123':375 '/api/agent/status':902 '/blog':559,562,805 '/dashboard/billing':1263 '0':890,896,904,993,1062,1117,1226,1241,1245 '0.81':662 '0.94':655 '1':235,314,321,428,534,731,739,791,829,1137,1512 '10':812,1139,1272,1278,1303 '100':269,1327 '12':469,1476,1480 '1240':401 '134':505 '15':359,457,1037 '1709295600':1313 '1850':708 '2':280,361,421,471,603,748,785,798,837,1528 '20':347,667,955,1149,1229,1283 '2025':745 '23':568 '24':1375 '25':728,1179,1201,1233 '3':293,527,756,806,825,844,1540 '3.0.0':310 '30':525,781,873,1039,1048,1218,1501 '35':419,780,872,938,1211,1472,1478 '3x/week':698 '4':618,765,809,850,1561 '40':601,821,1102,1222 '401':1404 '402':1411 '404':1420 '422':1431 '429':1437,1482 '5':770,773,859,1091,1576 '50':820,957,1186,1203,1237 '500':1449,1493 '5s':367 '60':1288 '65':782,874 '7':1308 '70':943,1215 '847':503,1603 '90':822 '94':398 'abc123':354,386 'access':1368 'account':898,1115 'action':1206,1515,1606 'activ':1336 'adapt':1637 'agent':238,260,1623 'ai':217,341,448,572,641,702,736,743,760,1581 'alon':1560 'alphabet':1539 'also':1574 'analysi':942,1615 'analyz':25,200,621,670,1068,1089,1156,1347 'angl':407,514,590,777,1525 'apart':87 'api':257,271,275,285,291,304,334,379,441,483,549,615,634,681,880,1287,1409 'application/json':247,339,446,554,639,686 'articl':1625,1630,1638,1648 'artifici':455,764 'async':914,1001,1371 'audienc':8,49,166,425,864 'authent':281 'author':288,301,331,376,438,480,546,612,631,678 'auto':1027,1458 'auto-refund':1457 'auto-select':1026 'autom':343,643 'automat':1256,1497,1644 'autopilot':647,1626 'avail':1479 'avg':705 'b2b':1339 'balanc':901 'bearer':289,302,332,377,439,481,547,613,632,679 'best':1333,1523,1567 'blog':252,265,642,648,1076 'blog/content':1086 'blow':131 'break':408 'brief':128,215,828,861 'budget':520,1594 'budget-consci':519,1593 'cach':854,879,1225 'calendar':151 'call':286,1104,1151,1279,1284 'case':126 'categori':656,663,1145,1266 'check':893,1443 'checklist':1658 'citedi':2,39,259,274,290,303,333,378,440,482,548,614,633,680,1591,1622 'citedy-trend-scout':1 'code':1402,1465 'combin':31,57,1271 'comment':504 'commerc':577,1598 'comparison':451,517,714,1587 'competitor':26,74,120,138,197,201,212,227,231,532,555,580,622,650,672,801,1069,1082,1121,1141,1158,1169,1228,1231,1235,1281,1364,1614 'competitor.com':790,795,804 'competitor.com/blog':803 'compil':860 'complet':370,388,492,565,755,984,988,1094 'connect':1562 'conscious':521,1595 'contact':1670 'content':29,79,117,143,150,204,209,245,337,342,406,415,444,513,529,552,573,637,645,684,694,717,776,787,868,1070,1111,1160,1192,1196,1219,1275,1348,1358,1369,1524,1570,1617,1654,1665 'content-typ':244,336,443,551,636,683 'convers':170,1325 'copy.ai':561 'copy.ai/blog':560 'copywrit':701 'core':311 'cost':779,819,871 'count':400,567,707,1096 'cover':123,1366,1611 'coverag':581 'creat':1657 'creator':416 'credit':268,417,523,599,665,726,783,823,875,886,900,939,944,990,992,1047,1061,1099,1101,1116,1146,1148,1180,1187,1198,1200,1207,1246,1259,1413,1416,1467,1473 'cross':1542 'cross-refer':1541 'current':905 'data':1385 'dataforseo':89 'date':395 'deduct':1248 'deep':24,76,669,941,1155,1184 'deep-analyz':23,668,1154 'deep-div':75,1183 'default':945,954,1025,1036,1188 'defin':1133 'descript':579,887,922,1009,1081,1127,1165 'difficulti':587 'direct':115,657 'discov':21,199,230,619,623,1227 'dive':77,1185 'doesn':1426 'domain':202,651,658,687,692,794,1142,1166,1170,1191 'done':540 'e':576,1597 'e-commerc':575,1596 'e.g':1171 'endpoint':883,884,909 'engag':396,1534 'english':1323 'english-languag':1322 'enough':1415 'enterpris':1673 'environ':279 'error':1398,1433,1451,1453,1460,1464 'est':585 'estim':357,467,778,818,870,963,1045 'everi':366,1297 'exampl':598,729,730,784,824 'excit':403 'exist':1428 'expens':509 'expir':1373,1430 'fail':1252 'fast':345,690,747,836,932,935,946,1174,1177,1189,1202,1210,1232 'fewer':1343 'file':1660 'find':5,28,46,152,226,528,786,1120 'form':1652 'format':709,1462 'found':1423,1633 'framework':1662 'free':877,996,1065 'frequenc':697 'frustrat':496 'full':219,826,1182,1621,1628 'fulli':1362 'gap':30,80,149,210,225,530,536,566,570,606,788,813,855,869,876,1073,1095,1098,1112,1220,1224,1276,1345,1563,1571,1618 'general':1286 'generat':208,535,858,1072,1110,1221,1277,1346,1627 'get':297,372,476,608,750,767,807,851,889,895,903,965,1051,1105 'give':70 'glue':882 'gpt':391,411 'guid':595 'guidelin':1504 'handl':266,1399 'haven':121 'header':1293,1448 'health':892,1242 'high':586 'histor':96 'hour':1274,1280,1285,1376,1397 'how-to':710 'http':239,296,326,371,433,475,541,607,626,673,1400 'id':263,351,383,461,487,960,979,986,1042,1425 'ignor':722 'index':1363 'info':899 'instagram':1643 'instruct':44 'insuffici':1412,1466 'intellig':36,69 'intent':41,167,426 'intern':1450 'invalid':1406,1434 'jasper':498,1589 'jasper.ai':558,652,688,693,1172 'jasper.ai/blog':557 'job':1250 'js':1356 'js-on':1355 'json':256,306,349,381,459,485,563,649,691,1463 'key':258,272,276,292,305,335,380,442,484,550,616,635,682,1410 'keyword':233,625,640,928,1015,1123,1128,1131 'languag':1324 'last':857 'lead':1513,1655 'level':171,1352 'limit':346,456,947,1031,1265,1267,1292,1302,1314,1439 'linkedin':1640 'list':1519 'listicl':713 'machinelearn':763 'magnet':1656 'mani':1441 'map':112 'market':163,454,704 'max':950,956,1034,1038,1090,1138 'may':1341,1359 'mean':413,1403 'medium':588 'messag':1468 'method':885 'min':1136,1326 'minut':1290 'miss':207,1408 'mode':344,689,746,796,835,931,1173 'morn':127,214,827 'name':248 'nich':135,193,229,834,842,1135,1335 'none':582 'number':948,1032 'ok':308 'one':82,1558 'open':867 'oper':1419,1470 'opportun':118,774,816,1531,1568 'overview':45 'pain':506,865 'parallel':849 'paramet':919,1006,1078,1124,1162,1436 'partial':664 'paywal':1353 'peak':159 'peopl':104,495 'per':1049,1103,1150 'perform':716,1195 'plan':1674 'platform':1559 'point':507,866 'poll':362,365,472,749,766,845,968,994,1054,1063,1238,1377 'post':240,327,405,434,542,627,674,696,740,757,792,799,830,838,910,937,997,1066,1118,1152,1329 'poster':1636 'power':37 'presenc':721 'present':1506 'previous':1109 'price':499,1205 'priorit':1529 'process':356,466,962,977,981,1044 'product':578 'public':1321,1367 'queri':340,447,742,759,832,840,923,1010 'r/seo':501,1602 'rate':1264,1291,1438 'ratelimit':1301,1306,1311,1446,1487 'real':59,597,1391 'real-tim':58,1390 'recent':1328 'recommend':589 'reddit':17,66,187,223,423,462,488,720,1002,1055,1217,1270,1330,1338,1552,1642 'refer':881,1543 'reflect':1384 'refund':1255,1459,1498 'regist':236,1666 'releas':394 'relev':653,660,1143,1537 'remain':1307 'request':283,1289,1435,1442 'requir':287,921,1008,1080,1126,1164,1317,1471,1477 'research':139,164 'reset':1312,1447,1488 'respons':255,348,458,958,975,982,1040,1092,1140,1190,1298,1461,1503 'result':364,389,474,493,951,974,989,1035,1060,1344,1378,1383,1508 'retri':1491,1499 'retriev':604,1107,1223 'return':538,810,953,1295 'right':12,53,136,737 'rumor':393 'run':325,350,353,382,385,432,460,463,486,489,847,906,918,959,971,978,985,1005,1041,1050,1057,1240,1253,1273,1372,1389,1421,1424,1454,1495 'runid':752,769,967,1053 'score':397,654,661,817,1144,1535 'scout':4,14,42,185,222,224,251,315,324,422,431,908,917,930,970,1004,1017,1056,1208,1212,1216,1230,1234,1268,1282,1316,1331,1365,1382,1507,1613 'search':10,51,97,583,1024 'second':358,468,964,1046,1502 'select':1028 'semrush':91 'sentiment':402 'seo':35,68,161,453,644,724,1629 'server':1452 'servic':891 'set':85 'setup':234,295 'shift':1395 'short':1646,1651 'short-form':1650 'show':94,101 'signal':33,62,114,1544,1556 'situat':175 'skill':43,56,100,1610 'skill-citedy-trend-scout' 'small':511 'social':32,61,110,155,1635 'sort':814,1532 'source-citedy' 'specif':1021,1578 'start':322,429,912,999,1251 'status':307,355,369,387,465,491,564,754,907,961,972,980,987,1043,1058,1093,1244,1401 'step':320,360,427,470,533,592,594,602 'step-by-step':591 'store':270 'strategi':144,695,1161,1193 'string':924,1011,1019,1084,1129,1167 'stronger':1555 'subreddit':452,500,762,843,1018,1022 'suffici':1320 'suggest':1521 'suit':1624 'summar':771 'summari':1178 'surfer.seo':659 'swipe':1659 'synchron':537,1077 'talk':106 'target':518,1592 'team':512,522,1599 'team@citedy.com':1671 'technic':723 'tenant':262 'time':60,1387,1392 'timestamp':1489 'today':108,184 'tool':93,162,450,646,703,744,761,1582 'top':404,569,699,715,772,811,936,1097,1194,1257 'topic':20,73,153,190,319,390,494,571,700,725,863,926,1013,1030,1318,1340,1520,1546,1632 'topic-agent-skills' 'topic-ai-agent' 'topic-autogpt' 'topic-content-marketing' 'topic-seo' 'traction':156 'trend':3,19,40,72,189,218,250,318,734,862,916,1003,1393,1547,1565,1575,1600,1612 'turn':1647 'tweet':399 'type':246,338,445,553,638,685,920,1007,1079,1125,1163 'ultim':797,933,940,1175,1181,1204,1214,1236 'unauthor':1405 'understand':165 'upvot':502,1604 'url':213,253,556,802,1083,1087,1351 'use':125,174,418,524,600,666,727,853,991,1100,1147,1199 'useless':1584 'user':1511 'uuid':264 'valid':1432 'verifi':294 'version':309 'video':1645,1653 'volum':98,584 'vs':211,531,789,1590 'wait':1483 'want':1607 'weak':718,1197 'window':1381 'within':1379,1396 'word':706 'work':1332 'workflow':83,220,312,313,420,526,617 'write':182,449,515,1579,1585 'www.citedy.com':242,299,329,374,436,478,544,610,629,676,1262,1668 'www.citedy.com/api/agent/competitors/discover':628 'www.citedy.com/api/agent/competitors/scout':675 'www.citedy.com/api/agent/gaps':609 'www.citedy.com/api/agent/gaps/generate':543 'www.citedy.com/api/agent/health':298 'www.citedy.com/api/agent/register':241 'www.citedy.com/api/agent/scout/reddit':435 'www.citedy.com/api/agent/scout/reddit/reddit_run_xyz789':477 'www.citedy.com/api/agent/scout/x':328 'www.citedy.com/api/agent/scout/x/x_run_abc123':373 'www.citedy.com/dashboard/billing':1261 'x':186,221,352,384,969,1209,1213,1269,1300,1305,1310,1315,1445,1486,1550,1641 'x-ratelimit-limit':1299 'x-ratelimit-remain':1304 'x-ratelimit-reset':1309,1444,1485 'x/twitter':15,64,316,915 'xxxxxxxxxxxx':261 'xyz789':464,490 'yes':925,1012,1085,1130,1168 'yet':124 'yourblog':267 'yourblog.com':254","prices":[{"id":"b2b0f239-262c-4b88-9312-891972228ad8","listingId":"b66e9a10-19e6-45f5-8047-6cff4161910e","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"citedy","category":"citedy-seo-agent","install_from":"skills.sh"},"createdAt":"2026-04-23T13:04:22.987Z"}],"sources":[{"listingId":"b66e9a10-19e6-45f5-8047-6cff4161910e","source":"github","sourceId":"citedy/citedy-seo-agent/citedy-trend-scout","sourceUrl":"https://github.com/citedy/citedy-seo-agent/tree/main/skills/citedy-trend-scout","isPrimary":false,"firstSeenAt":"2026-04-23T13:04:22.987Z","lastSeenAt":"2026-05-18T19:07:18.172Z"}],"details":{"listingId":"b66e9a10-19e6-45f5-8047-6cff4161910e","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"citedy","slug":"citedy-trend-scout","github":{"repo":"citedy/citedy-seo-agent","stars":12,"topics":["agent-skills","ai-agent","autogpt","content-marketing","seo"],"license":"mit","html_url":"https://github.com/citedy/citedy-seo-agent","pushed_at":"2026-05-05T13:21:45Z","description":"AI-powered SEO content automation agent skill — trend scouting, competitor analysis, article generation in 55 languages, social media adaptations, and cron-based sessions.","skill_md_sha":"20505263fdaa02ed474e25d3f28941c38b9d40a7","skill_md_path":"skills/citedy-trend-scout/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/citedy/citedy-seo-agent/tree/main/skills/citedy-trend-scout"},"layout":"multi","source":"github","category":"citedy-seo-agent","frontmatter":{"name":"citedy-trend-scout","description":"Find what your audience is searching for right now — scout X/Twitter and Reddit for trending topics, discover and deep-analyze competitors, and find content gaps. Combine social signals with SEO intelligence. Powered by Citedy."},"skills_sh_url":"https://skills.sh/citedy/citedy-seo-agent/citedy-trend-scout"},"updatedAt":"2026-05-18T19:07:18.172Z"}}