Voice builder

Build a personalised voice profile inside a Codex or Claude project from a short interview plus 3 to 5 sample pieces of writing.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/voice-builder, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit charlie947/social-media-skills/skills/voice-builder#main ~/.claude/skills/voice-builder

For one project only, change the path to .claude/skills/voice-builder. This skill also uses about-me.md, voice.md, newsletter-voice.md — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Voice builder

Show the full text267 lines
namedescription
voice-builder> Build a personalised voice profile inside a Codex or Claude project from a short interview plus 3 to 5 sample pieces of writing. Works for any content format: LinkedIn posts, newsletters, essays, emails, blog posts, tweets, or any other published writing. Use this skill at the start of any project where the user wants the assistant to learn who they are and how they write before drafting new content. Trigger whenever the user says "build my voice", "learn my voice", "set up my content system", "onboard me", "train on my writing", "train on my posts", "I want Claude to sound like me", or drops a batch of writing samples into chat at the start of a project. Also trigger for first-time users who need a voice foundation before writing anything. Always produces two files (about-me.md and voice.md) saved into the project root.

Voice Builder

Codex and Claude runtime

  • Use this skill in Codex or Claude with the tools actually available in the current task. AskUserQuestion examples describe the questions, not a required API: use an available question tool within its limits, or ask in chat. Reuse answers and source material already supplied.
  • Work in the user-selected project. Read its about-me.md, voice.md and relevant brand files before personalised work. Confirm the intended author if files conflict or contain starter defaults. Ask for missing facts or run voice-builder; never inherit the maintainer's identity, accounts or private files.
  • Resolve bundled references/ relative to this skill folder. For an explicitly requested profile refresh, read and update the canonical about-me.md, voice.md or newsletter-voice.md in place, preserving unrelated user facts and rules. Consumers must reread those canonical files. Use a new filename only for new deliverables that would collide with unrelated existing files. Installation alone never starts an interview or writes files. Do not write persistent learnings unless requested.
  • Use supplied evidence first. Verify external claims through available search/source tools when needed. If a source or integration is unavailable, name the missing capability and offer supplied text/export input. Never invent facts, first-person experience, metrics or a successful tool run.
  • Connect only services needed for the chosen route through the user's existing account. Never print credentials or overwrite connections. Drafting, saving and reviewing do not authorise publishing, sending messages or changing accounts.

CRITICAL: Auto-start on load

When the user requests this workflow, start Step 1. This means your very next message to the user is the interview questions. Nothing else.

Do NOT:

  • Summarise this skill
  • Describe what files it creates
  • Explain how it works
  • Say "here's what this skill contains"
  • Ask if the user wants to run it
  • Confirm installation
  • Offer options like "want me to run this now?"

Do THIS:

  • Go straight to Step 1
  • Send the interview questions as your first and only response

This applies when the user asks to build their voice or supplies samples for that purpose. No preamble. No summary. Interview first.

Step 1. Run the About Me interview

Ask the questions using the runtime guidance above. If a question tool is available, respect its schema and batch limits; otherwise ask the same questions in chat.

AskUserQuestion supports a maximum of 4 questions per call, so send two calls: Batch 1 first, wait for answers, then Batch 2.

Batch 1 (your very first action, no text before it)

Use these questions, adapting the tool schema as needed:

[
  {
    "question": "What is your name and what do you do?",
    "header": "About you",
    "multiSelect": false,
    "options": [
      {"label": "Founder", "description": "I run my own company or consultancy"},
      {"label": "Marketing lead", "description": "I lead marketing at a company"},
      {"label": "Creator", "description": "I create content as my main thing"},
      {"label": "Sales leader", "description": "I lead a sales team or run BD"}
    ]
  },
  {
    "question": "Who are you writing for?",
    "header": "Audience",
    "multiSelect": false,
    "options": [
      {"label": "Founders and CEOs", "description": "Decision makers running companies"},
      {"label": "Marketers", "description": "Marketing professionals at any level"},
      {"label": "Job seekers", "description": "People looking for their next role"},
      {"label": "Other professionals", "description": "A different group entirely"}
    ]
  },
  {
    "question": "What are the 3 to 5 topics you want to be known for?",
    "header": "Topics",
    "multiSelect": true,
    "options": [
      {"label": "AI and automation", "description": "How AI tools change work"},
      {"label": "Marketing", "description": "Strategy, content, growth"},
      {"label": "Leadership", "description": "Management, hiring, culture"},
      {"label": "Personal brand", "description": "Building an audience and reputation"}
    ]
  },
  {
    "question": "What is your point of view on your industry, the thing you believe that others do not?",
    "header": "Hot take",
    "multiSelect": false,
    "options": [
      {"label": "Most advice is wrong", "description": "The consensus in your industry is broken"},
      {"label": "People overcomplicate it", "description": "The answer is simpler than people think"},
      {"label": "A big shift is coming", "description": "Something is about to change and most people are not ready"}
    ]
  }
]
Batch 2 (send immediately after Batch 1 answers come back, no commentary between)

Call AskUserQuestion again with:

[
  {
    "question": "What is the one thing you want people to think when they see your name?",
    "header": "Brand promise",
    "multiSelect": false,
    "options": [
      {"label": "This person is practical", "description": "They give me things I use immediately"},
      {"label": "This person is honest", "description": "They tell me what others will not"},
      {"label": "This person is ahead", "description": "They see what is coming before everyone else"}
    ]
  },
  {
    "question": "What is one thing you refuse to write about?",
    "header": "Off limits",
    "multiSelect": false,
    "options": [
      {"label": "Politics", "description": "No political takes, ever"},
      {"label": "Personal life", "description": "Keep it professional only"},
      {"label": "Competitors", "description": "No naming or shaming other people or brands"}
    ]
  }
]

After both batches are answered, move to Step 2. If any answer is blank or skipped, ask that specific question once more in chat, then move on.

Step 2. Write about-me.md

Create about-me.md in the project root. Use this structure:

# About Me

## Name and role
[From question 1]

## Audience
[From question 2, expanded into 2 to 3 sentences on who the reader is]

## Topic pillars
[3 to 5 topics from question 3, one line each]

## Point of view
[From question 4, the contrarian or distinctive belief, written as a clear statement]

## Brand promise
[From question 5, the one thought the author wants to own in the reader's head]

## Off limits
[From question 6, topics or angles never to write about]

Keep it under 300 words. Every line should be something the assistant would reference when writing.

Step 3. Ask for the samples

Say this:

Now paste 3 to 5 pieces of writing you want me to learn from. These can be LinkedIn posts, newsletter issues, essays, blog posts, emails, tweets, or any other writing you have published. They can be yours or someone whose voice you admire. One piece per message or all at once. If you do not have any samples ready, type "use samples" and I will load a starter set you can swap out later.

Wait for the user to paste. Minimum 3 samples before moving to analysis. If they paste fewer than 3, ask for more.

If the user types "use samples", load the writing from references/sample-content.md inside this skill folder. Tell the user which author the samples are from so they know what voice they are borrowing. Remind them they can replace these with their own writing later.

Step 4. Analyse the samples

Read every sample. Look for patterns across all of them, not individual quirks from one piece. Extract:

Voice signals

  • Average sentence length
  • Paragraph rhythm (single line breaks, blank lines, staccato versus flowing)
  • Hook or opening style (contrarian, question, data point, story, confession, observation)
  • Point of view (first person, second person, observational)
  • Tone (deadpan, warm, blunt, playful, clinical)
  • Signature phrases or recurring words
  • CTA or closing style

Structural signals

  • Length range
  • Lists versus prose
  • How they open, how they close
  • How they handle transitions

Topic signals

  • Subjects that come up across multiple samples
  • Who the audience appears to be
  • What the author stands for

Absence signals

  • Words and punctuation consistently absent (for example, em dashes in 0 of 5 samples)
  • Hook types the author never uses
  • Tones the author never hits
  • Structures the author avoids

Step 5. Write voice.md

Create voice.md in the project root. This is a single integrated profile covering both how the voice writes and what the voice avoids. No separate voice file.

# Voice Profile

## Who I sound like
[2 to 3 sentences describing the overall voice in plain language]

## Tone
[3 to 5 attributes the voice consistently hits, followed by 1 to 2 tones the voice never hits, drawn from gaps in the samples]

## Sentence rhythm
[Average length, pacing, paragraph structure. Include avoidance patterns: e.g. never staccato fragments, never tricolons, no sentences over 25 words]

## Hook patterns
[3 to 5 hook types observed, with one example each from the samples. Note any hook types absent across all samples, e.g. never rhetorical questions, never "imagine a world where"]

## How I open
[1 to 2 sentences. Note opening moves the voice avoids if a clear pattern of avoidance exists across samples]

## How I close
[1 to 2 sentences, include CTA style. Note closing moves the voice avoids, e.g. never motivational summaries, never "in conclusion"]

## Signature phrases
[Recurring words or phrases from the samples]

## Off-limits
[Words, punctuation, or constructions absent from every sample. Only list items the samples clearly avoid. Examples: no em dashes (0 of 5 samples), no hashtags, no corporate jargon by name]

## What this voice never does
[3 to 5 specific behaviours drawn from gaps in the samples. Be specific. If the samples never use the "not X, but Y" construction, list it. If they avoid a specific vocabulary set, name the words]

Fill every section from the actual samples. No generic filler. If a pattern is not present, say so. Do not duplicate audience or topic pillars from about-me.md.

Separate explicit user prohibitions from patterns merely absent in this small sample. Label the latter provisional, with sample counts; absence alone does not establish a permanent ban. Starter samples describe a borrowed style, never the user’s experiences or established voice.

Step 6. Confirm and hand off

Tell the user:

Your voice profile is built. Two files are now in your project: about-me.md and voice.md. These skills read both files when invoked in this project; a fresh task must discover the skills and use the same project context. You can open and edit either file anytime.

You are ready to go. Here is what you can do next:

  • Say "build my newsletter voice" to create newsletter-specific writing instructions
  • Say "write a post" to draft a LinkedIn post in your voice
  • Say "design a graphic" to create a visual for a post
  • Say "score my post" to get feedback on a draft
  • Say "optimize my profile" to rebuild your LinkedIn profile

Each of these is a separate skill. Pick one and go.

What this skill produces

Two files in the project root:

  1. about-me.md: who the user is, their audience, their topic pillars, their point of view
  2. voice.md: the integrated voice profile, covering positive signals (how the voice writes) and absence signals (what the voice avoids) in one document

Rules

  • When this skill triggers, go straight to Step 1. No summary, no explanation, no preamble.
  • Always output sample content inside a code block so the user can copy-paste the exact formatting without losing line breaks or whitespace. Use a plain code block (triple backticks with no language tag).
  • Work from what is in the samples. Do not invent patterns that are not there.
  • Minimum 3 samples for pattern detection. Ask for more if fewer than 3.
  • If samples contradict each other, note the contradiction in voice.md rather than smoothing it over.
  • Keep about-me.md under 300 words.
  • Keep voice.md under 500 words.
  • British English throughout unless the samples are clearly American.
  • Never use em dashes in any output file or in any draft.
  • Do not create a separate absence profile. Absence signals live inside voice.md.
1---
2name: voice-builder
3description: >
4 Build a personalised voice profile inside a Codex or Claude project from a short interview plus 3 to 5 sample pieces of writing. Works for any content format: LinkedIn posts, newsletters, essays, emails, blog posts, tweets, or any other published writing. Use this skill at the start of any project where the user wants the assistant to learn who they are and how they write before drafting new content. Trigger whenever the user says "build my voice", "learn my voice", "set up my content system", "onboard me", "train on my writing", "train on my posts", "I want Claude to sound like me", or drops a batch of writing samples into chat at the start of a project. Also trigger for first-time users who need a voice foundation before writing anything. Always produces two files (about-me.md and voice.md) saved into the project root.
5---
6 
7# Voice Builder
8 
9## Codex and Claude runtime
10 
11- Use this skill in Codex or Claude with the tools actually available in the current task. `AskUserQuestion` examples describe the questions, not a required API: use an available question tool within its limits, or ask in chat. Reuse answers and source material already supplied.
12- Work in the user-selected project. Read its `about-me.md`, `voice.md` and relevant brand files before personalised work. Confirm the intended author if files conflict or contain starter defaults. Ask for missing facts or run `voice-builder`; never inherit the maintainer's identity, accounts or private files.
13- Resolve bundled `references/` relative to this skill folder. For an explicitly requested profile refresh, read and update the canonical `about-me.md`, `voice.md` or `newsletter-voice.md` in place, preserving unrelated user facts and rules. Consumers must reread those canonical files. Use a new filename only for new deliverables that would collide with unrelated existing files. Installation alone never starts an interview or writes files. Do not write persistent learnings unless requested.
14- Use supplied evidence first. Verify external claims through available search/source tools when needed. If a source or integration is unavailable, name the missing capability and offer supplied text/export input. Never invent facts, first-person experience, metrics or a successful tool run.
15- Connect only services needed for the chosen route through the user's existing account. Never print credentials or overwrite connections. Drafting, saving and reviewing do not authorise publishing, sending messages or changing accounts.
16 
17## CRITICAL: Auto-start on load
18 
19When the user requests this workflow, start Step 1. This means your very next message to the user is the interview questions. Nothing else.
20 
21Do NOT:
22- Summarise this skill
23- Describe what files it creates
24- Explain how it works
25- Say "here's what this skill contains"
26- Ask if the user wants to run it
27- Confirm installation
28- Offer options like "want me to run this now?"
29 
30Do THIS:
31- Go straight to Step 1
32- Send the interview questions as your first and only response
33 
34This applies when the user asks to build their voice or supplies samples for that purpose. No preamble. No summary. Interview first.
35 
36## Step 1. Run the About Me interview
37 
38Ask the questions using the runtime guidance above. If a question tool is available, respect its schema and batch limits; otherwise ask the same questions in chat.
39 
40AskUserQuestion supports a maximum of 4 questions per call, so send two calls: Batch 1 first, wait for answers, then Batch 2.
41 
42### Batch 1 (your very first action, no text before it)
43 
44Use these questions, adapting the tool schema as needed:
45 
46```json
47[
48 {
49 "question": "What is your name and what do you do?",
50 "header": "About you",
51 "multiSelect": false,
52 "options": [
53 {"label": "Founder", "description": "I run my own company or consultancy"},
54 {"label": "Marketing lead", "description": "I lead marketing at a company"},
55 {"label": "Creator", "description": "I create content as my main thing"},
56 {"label": "Sales leader", "description": "I lead a sales team or run BD"}
57 ]
58 },
59 {
60 "question": "Who are you writing for?",
61 "header": "Audience",
62 "multiSelect": false,
63 "options": [
64 {"label": "Founders and CEOs", "description": "Decision makers running companies"},
65 {"label": "Marketers", "description": "Marketing professionals at any level"},
66 {"label": "Job seekers", "description": "People looking for their next role"},
67 {"label": "Other professionals", "description": "A different group entirely"}
68 ]
69 },
70 {
71 "question": "What are the 3 to 5 topics you want to be known for?",
72 "header": "Topics",
73 "multiSelect": true,
74 "options": [
75 {"label": "AI and automation", "description": "How AI tools change work"},
76 {"label": "Marketing", "description": "Strategy, content, growth"},
77 {"label": "Leadership", "description": "Management, hiring, culture"},
78 {"label": "Personal brand", "description": "Building an audience and reputation"}
79 ]
80 },
81 {
82 "question": "What is your point of view on your industry, the thing you believe that others do not?",
83 "header": "Hot take",
84 "multiSelect": false,
85 "options": [
86 {"label": "Most advice is wrong", "description": "The consensus in your industry is broken"},
87 {"label": "People overcomplicate it", "description": "The answer is simpler than people think"},
88 {"label": "A big shift is coming", "description": "Something is about to change and most people are not ready"}
89 ]
90 }
91]
92```
93 
94### Batch 2 (send immediately after Batch 1 answers come back, no commentary between)
95 
96Call AskUserQuestion again with:
97 
98```json
99[
100 {
101 "question": "What is the one thing you want people to think when they see your name?",
102 "header": "Brand promise",
103 "multiSelect": false,
104 "options": [
105 {"label": "This person is practical", "description": "They give me things I use immediately"},
106 {"label": "This person is honest", "description": "They tell me what others will not"},
107 {"label": "This person is ahead", "description": "They see what is coming before everyone else"}
108 ]
109 },
110 {
111 "question": "What is one thing you refuse to write about?",
112 "header": "Off limits",
113 "multiSelect": false,
114 "options": [
115 {"label": "Politics", "description": "No political takes, ever"},
116 {"label": "Personal life", "description": "Keep it professional only"},
117 {"label": "Competitors", "description": "No naming or shaming other people or brands"}
118 ]
119 }
120]
121```
122 
123After both batches are answered, move to Step 2. If any answer is blank or skipped, ask that specific question once more in chat, then move on.
124 
125## Step 2. Write about-me.md
126 
127Create about-me.md in the project root. Use this structure:
128 
129```
130# About Me
131 
132## Name and role
133[From question 1]
134 
135## Audience
136[From question 2, expanded into 2 to 3 sentences on who the reader is]
137 
138## Topic pillars
139[3 to 5 topics from question 3, one line each]
140 
141## Point of view
142[From question 4, the contrarian or distinctive belief, written as a clear statement]
143 
144## Brand promise
145[From question 5, the one thought the author wants to own in the reader's head]
146 
147## Off limits
148[From question 6, topics or angles never to write about]
149```
150 
151Keep it under 300 words. Every line should be something the assistant would reference when writing.
152 
153## Step 3. Ask for the samples
154 
155Say this:
156 
157> Now paste 3 to 5 pieces of writing you want me to learn from. These can be LinkedIn posts, newsletter issues, essays, blog posts, emails, tweets, or any other writing you have published. They can be yours or someone whose voice you admire. One piece per message or all at once. If you do not have any samples ready, type "use samples" and I will load a starter set you can swap out later.
158 
159Wait for the user to paste. Minimum 3 samples before moving to analysis. If they paste fewer than 3, ask for more.
160 
161If the user types "use samples", load the writing from `references/sample-content.md` inside this skill folder. Tell the user which author the samples are from so they know what voice they are borrowing. Remind them they can replace these with their own writing later.
162 
163## Step 4. Analyse the samples
164 
165Read every sample. Look for patterns across all of them, not individual quirks from one piece. Extract:
166 
167**Voice signals**
168- Average sentence length
169- Paragraph rhythm (single line breaks, blank lines, staccato versus flowing)
170- Hook or opening style (contrarian, question, data point, story, confession, observation)
171- Point of view (first person, second person, observational)
172- Tone (deadpan, warm, blunt, playful, clinical)
173- Signature phrases or recurring words
174- CTA or closing style
175 
176**Structural signals**
177- Length range
178- Lists versus prose
179- How they open, how they close
180- How they handle transitions
181 
182**Topic signals**
183- Subjects that come up across multiple samples
184- Who the audience appears to be
185- What the author stands for
186 
187**Absence signals**
188- Words and punctuation consistently absent (for example, em dashes in 0 of 5 samples)
189- Hook types the author never uses
190- Tones the author never hits
191- Structures the author avoids
192 
193## Step 5. Write voice.md
194 
195Create voice.md in the project root. This is a single integrated profile covering both how the voice writes and what the voice avoids. No separate voice file.
196 
197```
198# Voice Profile
199 
200## Who I sound like
201[2 to 3 sentences describing the overall voice in plain language]
202 
203## Tone
204[3 to 5 attributes the voice consistently hits, followed by 1 to 2 tones the voice never hits, drawn from gaps in the samples]
205 
206## Sentence rhythm
207[Average length, pacing, paragraph structure. Include avoidance patterns: e.g. never staccato fragments, never tricolons, no sentences over 25 words]
208 
209## Hook patterns
210[3 to 5 hook types observed, with one example each from the samples. Note any hook types absent across all samples, e.g. never rhetorical questions, never "imagine a world where"]
211 
212## How I open
213[1 to 2 sentences. Note opening moves the voice avoids if a clear pattern of avoidance exists across samples]
214 
215## How I close
216[1 to 2 sentences, include CTA style. Note closing moves the voice avoids, e.g. never motivational summaries, never "in conclusion"]
217 
218## Signature phrases
219[Recurring words or phrases from the samples]
220 
221## Off-limits
222[Words, punctuation, or constructions absent from every sample. Only list items the samples clearly avoid. Examples: no em dashes (0 of 5 samples), no hashtags, no corporate jargon by name]
223 
224## What this voice never does
225[3 to 5 specific behaviours drawn from gaps in the samples. Be specific. If the samples never use the "not X, but Y" construction, list it. If they avoid a specific vocabulary set, name the words]
226```
227 
228Fill every section from the actual samples. No generic filler. If a pattern is not present, say so. Do not duplicate audience or topic pillars from about-me.md.
229 
230Separate explicit user prohibitions from patterns merely absent in this small sample. Label the latter provisional, with sample counts; absence alone does not establish a permanent ban. Starter samples describe a borrowed style, never the user’s experiences or established voice.
231 
232## Step 6. Confirm and hand off
233 
234Tell the user:
235 
236> Your voice profile is built. Two files are now in your project: about-me.md and voice.md. These skills read both files when invoked in this project; a fresh task must discover the skills and use the same project context. You can open and edit either file anytime.
237>
238> You are ready to go. Here is what you can do next:
239>
240> - Say "build my newsletter voice" to create newsletter-specific writing instructions
241> - Say "write a post" to draft a LinkedIn post in your voice
242> - Say "design a graphic" to create a visual for a post
243> - Say "score my post" to get feedback on a draft
244> - Say "optimize my profile" to rebuild your LinkedIn profile
245>
246> Each of these is a separate skill. Pick one and go.
247 
248## What this skill produces
249 
250Two files in the project root:
251 
2521. about-me.md: who the user is, their audience, their topic pillars, their point of view
2532. voice.md: the integrated voice profile, covering positive signals (how the voice writes) and absence signals (what the voice avoids) in one document
254 
255## Rules
256 
257- When this skill triggers, go straight to Step 1. No summary, no explanation, no preamble.
258- Always output sample content inside a code block so the user can copy-paste the exact formatting without losing line breaks or whitespace. Use a plain code block (triple backticks with no language tag).
259- Work from what is in the samples. Do not invent patterns that are not there.
260- Minimum 3 samples for pattern detection. Ask for more if fewer than 3.
261- If samples contradict each other, note the contradiction in voice.md rather than smoothing it over.
262- Keep about-me.md under 300 words.
263- Keep voice.md under 500 words.
264- British English throughout unless the samples are clearly American.
265- Never use em dashes in any output file or in any draft.
266- Do not create a separate absence profile. Absence signals live inside voice.md.
267 

Discussion

Alternatives

Also in Workflow automationSee all 58 in Operations →
Browser Automation SkillWeb browser automation with AI-optimized snapshots for claude-flow agentsCoding · MITWeb Extract — Structured Data from the Open WebExtract structured JSON from web pages, search engines, and entire sites in ONE call — {title, summary, sections, key_metrics, outgoing_links, author, date, page_type, ...} fields, no second LLM pass to parse HTML. Six endpoints: scrape (single URL), scrape-interactive (JS-rendered pages with click/scroll/type), search (Google SERP + deep-scrape), map (URL discovery), crawl + crawl-status (async recursive crawl). Markdown/raw HTML on request. USE when the user needs page DATA — product pricing/specs, article fields, link graphs, JS-heavy SPAs, Google results with content. Prefer over browser-act (automation/screenshots) and WebFetch (static, no JS, no structured fields). Not for citation-rich research (use deep-research). Trigger (EN): scrape this URL, extract data from page, crawl this site, deep-scrape search results, map a domain's URLs, render this JS page. 触发词:抓取/爬取/网页提取/结构化抽取/搜索带内容/全站爬取/JS 渲染抓取/点击后抓取. Requires ZOODATA_API_KEY (free key: https://zoodata.ai/en/api-keys).Sales & ecommerce · MITAI workflow automation specialistAct as an AI Workflow Automation Specialist, guiding users in automating business processes, optimizing workflows, and integrating AI tools effectively.Infrastructure & ops · CC0-1.0Cyber security character workflowThis is a structured image generation workflow for creating cyber security characters. The workflow includes steps such as facial identity mapping, tactical equipment outfitting, cybernetic enhancements, and environmental integration to produce high-quality, cinematic renders. After uploading your face and filling in the values in the fields, your prompt is ready. NOTE: The sample image belongs to me and my brand; unauthorized use of the sample image is prohibited.Creator · CC0-1.0