$npx -y skills add citedy/citedy-seo-agent --skill citedy-content-writerFrom topic to published blog post in one conversation — generate SEO- and GEO-optimized articles with AI illustrations and voice-over in 55 languages, create social media adaptations for 9 platforms, set up automated content sessions, and manage product knowledge base. End-to-end
| 1 | # AI Content Writer — Skill Instructions |
| 2 | |
| 3 | ## Overview |
| 4 | |
| 5 | **AI Content Writer** is an end-to-end blog autopilot powered by [Citedy](https://www.citedy.com/). It covers the entire content production pipeline in a single conversation: |
| 6 | |
| 7 | 1. **Research** — source URLs or topic input, optional web intelligence search |
| 8 | 2. **Write** — SEO & GEO-optimized articles in 55 languages, 4 size presets |
| 9 | 3. **Enhance** — AI illustrations, voice-over audio, internal link optimization, humanization |
| 10 | 4. **Distribute** — social media adaptations for 9 platforms (X, LinkedIn, Facebook, Reddit, Threads, Instagram, Instagram Reels, YouTube Shorts) |
| 11 | 5. **Automate** — cron-based autopilot sessions, scheduling, webhook notifications |
| 12 | |
| 13 | No competitor offers the full pipeline in one agent skill. |
| 14 | |
| 15 | --- |
| 16 | |
| 17 | ## When to Use |
| 18 | |
| 19 | Use this skill when the user wants to: |
| 20 | |
| 21 | - Write a blog article from a topic or URL |
| 22 | - Create social media posts from an existing article |
| 23 | - Set up automated daily/weekly content publishing |
| 24 | - Manage a product knowledge base for AI-grounded articles |
| 25 | - Schedule and fill content calendar gaps |
| 26 | - Generate micro-posts across multiple platforms at once |
| 27 | - Select a writing persona (25 available) |
| 28 | |
| 29 | --- |
| 30 | |
| 31 | ## Setup |
| 32 | |
| 33 | ### 1. Get an API Key |
| 34 | |
| 35 | Direct the user to: **https://www.citedy.com/dashboard/settings** → Team & API section. |
| 36 | |
| 37 | API keys are prefixed `citedy_agent_`. |
| 38 | |
| 39 | ### 2. Register the Agent |
| 40 | |
| 41 | ``` |
| 42 | POST https://www.citedy.com/api/agent/register |
| 43 | Content-Type: application/json |
| 44 | |
| 45 | { |
| 46 | "name": "My Content Agent", |
| 47 | "description": "Automated blog content writer" |
| 48 | } |
| 49 | ``` |
| 50 | |
| 51 | **Headers:** `Authorization: Bearer <CITEDY_API_KEY>` |
| 52 | |
| 53 | **Response:** |
| 54 | |
| 55 | ```json |
| 56 | { |
| 57 | "agent_id": "ag_xxxx", |
| 58 | "status": "active", |
| 59 | "blog_handle": "my-blog" |
| 60 | } |
| 61 | ``` |
| 62 | |
| 63 | Store `agent_id` — it is required for session and webhook operations. |
| 64 | |
| 65 | ### 3. Verify Connection |
| 66 | |
| 67 | ``` |
| 68 | GET https://www.citedy.com/api/agent/me |
| 69 | Authorization: Bearer <CITEDY_API_KEY> |
| 70 | ``` |
| 71 | |
| 72 | --- |
| 73 | |
| 74 | ## Core Workflows |
| 75 | |
| 76 | ### Workflow 1: URL to Article |
| 77 | |
| 78 | Convert any web page, blog post, or competitor article into an original SEO-optimized article. |
| 79 | |
| 80 | ``` |
| 81 | POST https://www.citedy.com/api/agent/autopilot |
| 82 | Authorization: Bearer <CITEDY_API_KEY> |
| 83 | Content-Type: application/json |
| 84 | |
| 85 | { |
| 86 | "source_urls": ["https://example.com/some-article"], |
| 87 | "language": "en", |
| 88 | "size": "standard", |
| 89 | "illustrations": true, |
| 90 | "audio": false |
| 91 | } |
| 92 | ``` |
| 93 | |
| 94 | After generation, adapt for social: |
| 95 | |
| 96 | ``` |
| 97 | POST https://www.citedy.com/api/agent/adapt |
| 98 | Authorization: Bearer <CITEDY_API_KEY> |
| 99 | Content-Type: application/json |
| 100 | |
| 101 | { |
| 102 | "article_id": "<returned_article_id>", |
| 103 | "platforms": ["linkedin", "x_article"], |
| 104 | "include_ref_link": true |
| 105 | } |
| 106 | ``` |
| 107 | |
| 108 | --- |
| 109 | |
| 110 | ### Workflow 2: Topic to Article |
| 111 | |
| 112 | Write an article from a plain-text topic or title. |
| 113 | |
| 114 | ``` |
| 115 | POST https://www.citedy.com/api/agent/autopilot |
| 116 | Authorization: Bearer <CITEDY_API_KEY> |
| 117 | Content-Type: application/json |
| 118 | |
| 119 | { |
| 120 | "topic": "How to reduce churn in B2B SaaS", |
| 121 | "language": "en", |
| 122 | "size": "full", |
| 123 | "persona": "saas-founder", |
| 124 | "enable_search": true |
| 125 | } |
| 126 | ``` |
| 127 | |
| 128 | --- |
| 129 | |
| 130 | ### Workflow 3: Turbo Mode (Fast & Cheap) |
| 131 | |
| 132 | For quick content at low cost. Two sub-modes: |
| 133 | |
| 134 | | Mode | Credits | Description | |
| 135 | | -------- | --------- | ---------------------------------- | |
| 136 | | `turbo` | 2 credits | Fast generation, no web search | |
| 137 | | `turbo+` | 4 credits | Fast generation + web intelligence | |
| 138 | |
| 139 | ``` |
| 140 | POST https://www.citedy.com/api/agent/autopilot |
| 141 | Authorization: Bearer <CITEDY_API_KEY> |
| 142 | Content-Type: application/json |
| 143 | |
| 144 | { |
| 145 | "topic": "5 productivity hacks for remote teams", |
| 146 | "mode": "turbo", |
| 147 | "language": "en" |
| 148 | } |
| 149 | ``` |
| 150 | |
| 151 | For turbo+, add `"enable_search": true`. |
| 152 | |
| 153 | --- |
| 154 | |
| 155 | ### Workflow 4: Social Adaptations |
| 156 | |
| 157 | Adapt an existing article to up to 3 platforms per request. |
| 158 | |
| 159 | ``` |
| 160 | POST https://www.citedy.com/api/agent/adapt |
| 161 | Authorization: Bearer <CITEDY_API_KEY> |
| 162 | Content-Type: application/json |
| 163 | |
| 164 | { |
| 165 | "article_id": "art_xxxx", |
| 166 | "platforms": ["x_thread", "linkedin", "reddit"], |
| 167 | "include_ref_link": true |
| 168 | } |
| 169 | ``` |
| 170 | |
| 171 | Available platforms: `x_article`, `x_thread`, `linkedin`, `facebook`, `reddit`, `threads`, `instagram`, `instagram_reels`, `youtube_shorts` |
| 172 | |
| 173 | --- |
| 174 | |
| 175 | ### Workflow 5: Autopilot Session (Automated Publishing) |
| 176 | |
| 177 | Set up recurr |