developer-advocacy
Use this skill when creating conference talks, live coding demos, technical blog posts, SDK quickstart examples, or community engagement strategies. Triggers on developer relations, DevRel, developer experience, tech evangelism, talk proposals, CFP submissions, demo scripts, tutorial writing, hackathon planning, community building, and any task involving advocating a product or API to a developer audience.
marketing devreltalksdemosblogcommunitysdkWhat is developer-advocacy?
Use this skill when creating conference talks, live coding demos, technical blog posts, SDK quickstart examples, or community engagement strategies. Triggers on developer relations, DevRel, developer experience, tech evangelism, talk proposals, CFP submissions, demo scripts, tutorial writing, hackathon planning, community building, and any task involving advocating a product or API to a developer audience.
developer-advocacy
developer-advocacy is a production-ready AI agent skill for claude-code, gemini-cli, openai-codex. Creating conference talks, live coding demos, technical blog posts, SDK quickstart examples, or community engagement strategies.
Quick Facts
| Field | Value |
|---|---|
| Category | marketing |
| Version | 0.1.0 |
| Platforms | claude-code, gemini-cli, openai-codex |
| License | MIT |
How to Install
- Make sure you have Node.js installed on your machine.
- Run the following command in your terminal:
npx skills add AbsolutelySkilled/AbsolutelySkilled --skill developer-advocacy- The developer-advocacy skill is now available in your AI coding agent (Claude Code, Gemini CLI, OpenAI Codex, etc.).
Overview
Developer advocacy is the practice of representing developers inside a company and representing the company's technology to the developer community. It sits at the intersection of engineering, marketing, and education - requiring the ability to write working code, explain it clearly, and build authentic relationships with technical audiences. This skill covers the five core pillars: conference talks, live demos, technical blog posts, SDK examples, and community engagement.
Tags
devrel talks demos blog community sdk
Platforms
- claude-code
- gemini-cli
- openai-codex
Related Skills
Pair developer-advocacy with these complementary skills:
Frequently Asked Questions
What is developer-advocacy?
Use this skill when creating conference talks, live coding demos, technical blog posts, SDK quickstart examples, or community engagement strategies. Triggers on developer relations, DevRel, developer experience, tech evangelism, talk proposals, CFP submissions, demo scripts, tutorial writing, hackathon planning, community building, and any task involving advocating a product or API to a developer audience.
How do I install developer-advocacy?
Run npx skills add AbsolutelySkilled/AbsolutelySkilled --skill developer-advocacy in your terminal. The skill will be immediately available in your AI coding agent.
What AI agents support developer-advocacy?
This skill works with claude-code, gemini-cli, openai-codex. Install it once and use it across any supported AI coding agent.
Maintainers
Generated from AbsolutelySkilled
SKILL.md
Developer Advocacy
Developer advocacy is the practice of representing developers inside a company and representing the company's technology to the developer community. It sits at the intersection of engineering, marketing, and education - requiring the ability to write working code, explain it clearly, and build authentic relationships with technical audiences. This skill covers the five core pillars: conference talks, live demos, technical blog posts, SDK examples, and community engagement.
When to use this skill
Trigger this skill when the user:
- Needs to write or review a conference talk proposal (CFP submission)
- Wants to plan or script a live coding demo
- Asks about writing a technical blog post or tutorial for developers
- Needs to create SDK quickstart examples or code samples
- Wants to build a community engagement strategy (forums, Discord, GitHub)
- Asks about developer experience (DX) improvements for an API or SDK
- Needs to plan a hackathon, workshop, or developer event
- Wants to measure DevRel impact with metrics and KPIs
Do NOT trigger this skill for:
- Pure marketing copy aimed at non-technical buyers - use a marketing or copywriting skill
- Internal engineering documentation with no external audience - use a technical writing skill
Key principles
Code is the message - Every piece of developer advocacy content must contain working, copy-pasteable code. Developers trust what they can run. A blog post without a working example is a press release.
Empathy over evangelism - Advocate for the developer's needs, not just the product's features. Acknowledge pain points honestly. Developers detect sales pitches instantly and disengage.
Show, don't tell - A 90-second demo that works is worth more than a 30-minute slide deck. Prioritize live, interactive formats. When slides are necessary, use them to frame a problem - then solve it with code.
Meet developers where they are - Use the platforms, languages, and tools your audience already uses. Don't ask a Python shop to read TypeScript examples. Don't post docs if your community lives on Discord.
Compound over campaign - A single blog post fades; a series builds authority. A one-off talk is forgotten; a consistent conference presence builds reputation. Invest in content that compounds: evergreen tutorials, maintained SDKs, active community channels.
Core concepts
The DevRel flywheel
Developer advocacy works as a feedback loop: Build (SDKs, examples, tools) -> Educate (talks, blogs, tutorials) -> Engage (community, support, events) -> Listen (feedback, pain points, feature requests) -> feed learnings back into Build. Breaking any link in this chain reduces the entire function's effectiveness.
Content formats by funnel stage
| Stage | Goal | Formats |
|---|---|---|
| Awareness | Developers learn you exist | Conference talks, social posts, podcasts |
| Evaluation | Developers try your tool | Quickstarts, blog tutorials, sandbox environments |
| Adoption | Developers ship with your tool | SDK examples, API guides, Stack Overflow answers |
| Retention | Developers stay and grow | Community channels, changelog updates, migration guides |
| Advocacy | Developers recommend you | Champion programs, guest blog invitations, co-speaking |
Measuring DevRel impact
DevRel metrics fall into three tiers. Track all three but report the tier that matches your stakeholder's concern.
- Activity metrics (leading): talks given, posts published, PRs to SDK repos
- Reach metrics (middle): unique visitors, video views, GitHub stars, community members
- Business metrics (lagging): API signups from DevRel-attributed sources, SDK adoption rate, time-to-first-API-call
Common tasks
1. Write a conference talk proposal (CFP)
A strong CFP answers three questions: what will the audience learn, why should they care, and why are you the right person to teach it.
CFP template:
Title: [Action verb] + [specific outcome] + [constraint/context]
Example: "Ship production WebSockets in 15 minutes with Durable Objects"
Abstract (max 200 words):
Paragraph 1 - The problem (what pain does the audience feel?)
Paragraph 2 - The approach (what will you show/build?)
Paragraph 3 - The takeaway (what do they leave with?)
Outline:
- [0:00-3:00] Problem framing - why this matters now
- [3:00-15:00] Live demo / core content (biggest block)
- [15:00-22:00] Deep dive on the non-obvious part
- [22:00-25:00] Recap + next steps + resources
Target audience: [Beginner | Intermediate | Advanced]
Prerequisites: [What should attendees already know?]
Format: [Talk | Workshop | Lightning talk]Avoid vague titles like "Introduction to X" or "X in 2026". Reviewers see hundreds of those. Lead with the outcome the audience gets.
2. Script a live coding demo
Live demos fail when they are too ambitious. Scope ruthlessly.
The 3-act demo structure:
- Setup (30 seconds) - Show the starting state. "Here's an empty project / a broken feature / a slow endpoint."
- Build (3-5 minutes) - Write the code live. Narrate what you type and why. Never type silently for more than 10 seconds.
- Payoff (30 seconds) - Run it. Show the working result. Celebrate briefly.
Demo safety checklist:
- Pre-install all dependencies; never run
npm installlive - Have a git branch with the finished state as a fallback
- Use large font (24pt minimum in terminal, 20pt in editor)
- Disable notifications, Slack, email, system popups
- Test on the exact hardware/display you will present on
- Record a backup video of the demo running successfully
- Use environment variables, never paste API keys on screen
3. Write a technical blog post
Structure for developer blog posts:
1. Hook (2-3 sentences) - State the problem. Make it personal.
2. Context (1 paragraph) - Why this problem exists / why now
3. Solution overview - One sentence: what you will build
4. Step-by-step walkthrough - Numbered steps with code blocks
5. Complete example - Full working code (copy-pasteable)
6. What's next - Links to docs, repo, communityWriting rules:
- Lead with the problem, not the product
- Every code block must be runnable in isolation or clearly marked as a snippet
- Use second person ("you") not first person ("we")
- Keep paragraphs to 3-4 sentences maximum
- Include a "Prerequisites" section if the reader needs accounts, keys, or tools
- Add a TL;DR at the top for scanners
4. Create SDK quickstart examples
Quickstarts must get a developer from zero to a working API call in under 5 minutes. Anything longer and they leave.
Quickstart structure:
## Prerequisites
- Language runtime version (e.g., Node.js >= 18)
- API key (link to signup/dashboard)
## Install
<single install command>
## Authenticate
<2-3 lines showing how to set the API key>
## Make your first call
<5-15 lines of code that do something visible>
## Next steps
- [Link to full API reference]
- [Link to more examples]
- [Link to community/support]Rules for code samples:
- Use the most common language for your audience first (JavaScript/Python)
- Show the import, setup, and call - never skip the import
- Use realistic values, not
foo/bar- e.g.,"acme-corp","order_12345" - Handle errors in examples; don't just show the happy path
- Pin SDK versions in install commands
5. Build a community engagement strategy
Channel selection framework:
| Channel | Best for | Effort | Response time |
|---|---|---|---|
| GitHub Discussions | Long-form Q&A, RFCs | Medium | 24 hours |
| Discord / Slack | Real-time help, casual chat | High | < 1 hour |
| Stack Overflow | SEO-visible answers | Low | 48 hours |
| Twitter/X | Announcements, threads | Medium | Same day |
| Dev.to / Hashnode | Cross-posting blog content | Low | N/A |
| YouTube | Tutorials, demos, livestreams | High | N/A |
Engagement rules:
- Respond to every first-time poster within 24 hours
- Never answer with just a docs link; include the relevant snippet inline
- Celebrate community contributions publicly (PRs, blog posts, talks)
- Create "good first issue" labels on your SDK repos
- Run a monthly community call or AMA
- Track community health: response time, unanswered questions, active contributors
6. Plan a developer workshop or hackathon
Workshop structure (90-120 minutes):
[0:00-0:10] Introduction + environment check (everyone has X installed)
[0:10-0:25] Concept overview (slides, max 10 slides)
[0:25-0:70] Guided hands-on (step-by-step, instructor-led)
[0:70-0:85] Free exploration (attendees extend the project)
[0:85-0:90] Wrap-up + resources + feedback formHackathon planning checklist:
- Define clear judging criteria before the event (not after)
- Provide starter templates / boilerplate repos
- Have mentors available during the entire hacking period
- Set a realistic scope - 24-hour hackathons need APIs that work in < 5 minutes
- Prepare prizes that developers actually want (cloud credits, conference tickets, hardware)
- Collect project submissions via GitHub repos, not slide decks
7. Measure and report DevRel impact
Monthly report template:
## DevRel Monthly Report - [Month Year]
### Content produced
- Talks: [N] delivered, [N] accepted/upcoming
- Blog posts: [N] published, [total views], [avg time on page]
- SDK updates: [versions released], [breaking changes]
### Community health
- New members: [N] ([platform])
- Questions answered: [N] / [N] total (response rate: [X]%)
- Median first-response time: [N] hours
- Community contributions: [N] PRs merged from external contributors
### Business impact
- API signups from DevRel-attributed sources: [N]
- Time-to-first-API-call (median): [N] minutes
- SDK downloads: [N] (month-over-month: [+/- X]%)
### Learnings
- Top 3 developer pain points heard this month
- Feature requests relayed to product teamAnti-patterns / common mistakes
| Mistake | Why it's wrong | What to do instead |
|---|---|---|
| Demo that requires live internet | Wi-Fi fails at every conference | Pre-cache responses or use a local mock server |
| Blog post with outdated SDK version | Broken code destroys trust instantly | Pin versions and set a calendar reminder to update quarterly |
| Measuring only vanity metrics (stars, likes) | Leadership needs business impact | Always pair reach metrics with at least one business metric |
| Talking at developers instead of with them | One-way broadcast kills community | Ask questions, run polls, respond to comments, co-create content |
| Skipping error handling in examples | Developers copy-paste and hit errors immediately | Always show try/catch or error callbacks in code samples |
| Over-polished demos that hide complexity | Developers feel tricked when real usage is harder | Show a real rough edge, then show how to handle it |
Gotchas
Demo Wi-Fi always fails - cache everything - Conference venue networks are unreliable. Any demo that makes a live HTTP call during the talk risks dying on stage. Pre-record a backup video of the demo working, use localhost or a local mock server, and cache all API responses before walking on stage.
SDK code samples without pinned versions break silently -
npm install acme-sdkinstalls the latest version, which may have different method signatures than your tutorial shows. Always pin with exact versions (acme-sdk@2.3.1) and set a quarterly calendar reminder to update samples.A/B testing advocacy content with vanity metrics gives false signal - GitHub stars and YouTube views are activity metrics, not impact metrics. A post can get 10,000 views but generate zero API signups. Always instrument content with UTM parameters that tie to your business conversion event.
Community channels without SLA commitments lose trust fast - Opening a Discord or forum and then taking 72+ hours to respond to first-time posters damages the community more than having no channel. Only open channels you can staff with a sub-24-hour first-response commitment.
Live-coding demos typed too fast lose the audience - Narrating your keystrokes is not optional - silence while typing causes the audience to disengage within 10 seconds. Practice narrating every step aloud: "I'm setting the API key as an environment variable because we never hard-code credentials."
References
For detailed guidance on specific sub-domains, read the relevant file from the
references/ folder:
references/talk-frameworks.md- Deep dive on talk structures, storytelling techniques, and slide design principles for technical audiencesreferences/content-strategy.md- Editorial calendars, SEO for developer content, cross-posting workflows, and content repurposing strategies
Only load a references file if the current task requires it - they are long and will consume context.
References
content-strategy.md
Content Strategy for Developer Advocacy
Editorial calendar framework
Planning cadence
Plan content monthly, publish weekly, promote daily. A realistic sustainable pace for a single developer advocate:
| Frequency | Content type | Time investment |
|---|---|---|
| Weekly | Social posts (2-3), community responses | 3-4 hours |
| Biweekly | Blog post or tutorial | 6-8 hours per post |
| Monthly | Video tutorial or livestream | 4-6 hours (prep + record + edit) |
| Quarterly | Conference talk (new or updated) | 15-20 hours (prep + practice + travel) |
| Quarterly | SDK example refresh / new quickstart | 8-12 hours |
Content pillars
Organize all content around 3-4 recurring pillars. Every piece of content maps to exactly one pillar. Example pillars for a hypothetical API company:
- Getting started - First-time setup, quickstarts, "hello world" examples
- Advanced patterns - Performance, scaling, edge cases, integration patterns
- Community spotlight - Guest posts, contributor stories, use-case showcases
- Product updates - Changelog walkthroughs, migration guides, new features
Monthly planning template
## [Month Year] Content Plan
### Theme: [one sentence focus for the month]
### Blog posts
- [ ] Week 1: [title] - Pillar: [pillar] - Author: [name]
- [ ] Week 3: [title] - Pillar: [pillar] - Author: [name]
### Video
- [ ] Week 2: [title] - Format: [tutorial/livestream/demo]
### Social
- [ ] Ongoing: [platform] - [N] posts promoting blog/video content
- [ ] Ongoing: Community thread engagement ([platform])
### Events
- [ ] [Date]: [Event name] - [Talk title or booth/workshop]
### SDK/Code
- [ ] [Repo]: [PR description] - updates examples for [version]SEO for developer content
Keyword strategy
Developers search differently from other audiences. They search for:
- Error messages (exact strings):
"TypeError: Cannot read property 'map' of undefined" - How-to queries:
"how to authenticate with OAuth2 in Python" - Comparison queries:
"REST vs GraphQL performance" - Version-specific queries:
"migrate from webpack 4 to 5"
On-page SEO checklist
- Title starts with the primary keyword or action verb
- URL slug is short and descriptive (
/blog/cursor-pagination-guide, not/blog/post-47) - First paragraph contains the primary search query naturally
- H2/H3 headings use question or task format ("How to implement...", "Setting up...")
- Code blocks are wrapped in proper language-tagged fences for syntax highlighting
- Include a "Prerequisites" section (captures long-tail queries)
- Add a "Troubleshooting" or "Common errors" section at the end
- Internal links to related posts and official docs
- Meta description is 150-160 characters, includes the primary keyword
Technical SEO for developer blogs
- Ensure code blocks are rendered as text (not images) so search engines can index them
- Use semantic HTML:
<code>,<pre>,<article>tags - Add
datePublishedanddateModifiedstructured data - Canonical URLs on cross-posted content to avoid duplicate content penalties
- Fast page load - developers have zero patience for slow sites
Cross-posting workflow
Where to cross-post
| Platform | Audience | Notes |
|---|---|---|
| Company blog | Existing users + SEO | Canonical URL lives here |
| Dev.to | Broad developer audience | Set canonical URL to company blog |
| Hashnode | Developer-focused, good SEO | Set canonical URL to company blog |
| Medium | General tech audience | Only if your audience is there; declining for devs |
| Professional/enterprise developers | Shorter format, link to full post |
Cross-posting rules
- Always publish on your own domain first - This is your canonical URL
- Wait 24-48 hours before cross-posting to let search engines index the original
- Set the canonical URL on every cross-posted version pointing to your domain
- Adapt the format - Dev.to readers expect different tone than enterprise blog readers
- Never copy-paste without adjusting - At minimum, update the intro for each platform
Syndication template
When cross-posting, add this footer:
---
*Originally published on [Company Blog](https://blog.example.com/original-post).
Follow us on [Twitter/X](https://twitter.com/example) for more developer content.*Content repurposing matrix
One piece of source content should generate 5-8 derivative pieces:
Source: 30-minute conference talk on "Building Real-time APIs with WebSockets"
Derivatives:
1. Blog post - Full written tutorial based on the talk content
2. Video clip - 2-minute highlight reel for Twitter/LinkedIn
3. Thread - 8-tweet thread summarizing key points
4. Code repo - GitHub repo with the demo code, cleaned up and documented
5. Quickstart - Simplified version of the demo as an official quickstart
6. Slide deck - Published to Speaker Deck or Google Slides (public link)
7. Newsletter - Summary + link in the next developer newsletter
8. Community - Post the recording in Discord/Slack with discussion promptRepurposing priority order
Not every derivative is worth the effort. Prioritize by ROI:
- Blog post from talk (highest ROI) - Evergreen, SEO value, easy to produce
- Code repo - Developers want to clone and run; high trust signal
- Social clips - Low effort, high reach
- Thread - Good engagement, fast to write
- Newsletter mention - Drives traffic to the main content
Content quality checklist
Before publishing any developer-facing content, verify:
Accuracy
- All code examples run successfully on a clean environment
- SDK/API versions are pinned and match current stable release
- Links to external resources are not broken
- Technical claims are verifiable (benchmarks, comparisons)
Clarity
- The reader knows what they'll learn in the first 2 sentences
- Each section has a clear purpose (no filler paragraphs)
- Code examples include comments explaining non-obvious lines
- Jargon is defined on first use or linked to a glossary
Completeness
- Prerequisites are listed (language version, tools, accounts needed)
- The "happy path" AND at least one error scenario are covered
- A "next steps" section points to deeper resources
- Complete, copy-pasteable code is provided (not just snippets)
Tone
- Written in second person ("you") not first person ("we")
- No marketing superlatives ("revolutionary", "game-changing", "seamless")
- Honest about limitations or trade-offs
- Respectful of the reader's time - no unnecessary preamble
talk-frameworks.md
Talk Frameworks for Developer Audiences
Talk archetypes
Choose one archetype per talk. Mixing them creates confusion.
1. The "How I Built X" talk
Structure: Problem -> failed attempts -> working solution -> lessons learned. Best for: Mid-level audiences who want real-world war stories. Length: 25-40 minutes.
[0:00-3:00] What I was trying to build and why
[3:00-8:00] First approach - what went wrong (show real code/errors)
[8:00-20:00] The approach that worked (live demo or walkthrough)
[20:00-25:00] What I'd do differently + key takeaways2. The "Deep Dive" talk
Structure: Surface behavior -> internal mechanics -> implications for your code. Best for: Advanced audiences who already use the technology. Length: 30-45 minutes.
[0:00-5:00] "You probably use X every day - but do you know how it works?"
[5:00-25:00] Walk through internals (diagrams, source code, benchmarks)
[25:00-35:00] Practical implications - what to do/avoid based on this knowledge3. The "Getting Started" talk
Structure: Zero to working app in N minutes. Best for: Beginners or new-to-the-tool audiences. Length: 20-30 minutes (heavily demo-driven).
[0:00-3:00] What this tool does (one sentence) + what we'll build
[3:00-20:00] Live demo - build the thing step by step
[20:00-25:00] Where to go from here (docs, community, next tutorial)4. The "Lessons Learned" talk
Structure: N mistakes/insights from doing X at scale. Best for: Any audience level; highly shareable format. Length: 20-30 minutes.
[0:00-2:00] Context - what we do and at what scale
[2:00-22:00] Lesson 1... Lesson N (3-5 minutes each, with concrete examples)
[22:00-25:00] Summary slide with all lessons as one-liners5. The "Lightning Talk" (5-10 minutes)
Structure: One idea, one demo, one takeaway. Rules: No more than 5 slides. One live demo or one code example. End with a single URL the audience should visit.
Storytelling techniques for technical talks
The "before and after" pattern
Show the painful way first. Let the audience feel the friction. Then show the better way. The contrast creates the "aha" moment that makes your talk memorable.
BAD: "Here's how to use our caching library" (no motivation)
GOOD: "Here's a page that takes 4 seconds to load. [show slow load]
Now let's add 3 lines of code. [add cache] Now it loads in 200ms."The "zoom in, zoom out" pattern
Start with the big picture (architecture diagram, user flow). Zoom into one specific component. Go deep. Then zoom back out to show how the component fits in the whole system. This gives the audience both context and depth.
The "running example" pattern
Pick one realistic example at the start (e.g., a to-do app, an e-commerce checkout, a notification system). Use that same example for every concept in the talk. Switching examples mid-talk forces the audience to rebuild context.
Handling Q&A
- Repeat every question into the microphone before answering
- "Great question - I don't know" is always acceptable; follow up afterward
- If a question would take > 2 minutes, offer to discuss after the talk
- Prepare 3-5 anticipated questions and have answers ready
Slide design principles
Text rules
- Maximum 6 words per bullet point
- Maximum 3 bullet points per slide
- Never put a paragraph on a slide - that's a speaker note
- Use the slide as a visual anchor; the words come from you
Code on slides
- Maximum 10 lines of code per slide
- Highlight the 1-2 lines that matter with color or a box
- Use syntax highlighting with a dark background for readability
- Increase font size to at least 24pt for code
Visual hierarchy
- One idea per slide
- Use full-bleed images when they add meaning (not stock photos)
- Diagrams > bullet points for showing relationships
- Animate builds: reveal one element at a time to control attention
Slide count guidelines
| Talk length | Slide count | Pace |
|---|---|---|
| 5 min lightning | 5-8 | 1 per ~45 sec |
| 25 min standard | 20-30 | 1 per ~60 sec |
| 45 min deep dive | 35-50 | 1 per ~60 sec |
These counts include title, section dividers, and closing slides. Pure content slides will be fewer.
Pre-talk checklist
- Tested slides on the actual projector/display resolution
- All live demos work offline or with pre-cached responses
- Speaker notes are written (not full scripts - bullet points only)
- Backup plan exists if demo fails (screenshots, video, skip to next section)
- Practiced the talk out loud at least twice (not just in your head)
- Timed the talk - aim to finish 2-3 minutes early, not right on time
- Water bottle on stage
- Slide clicker batteries checked
- Phone on silent, laptop notifications disabled
Recording and repurposing talks
Every talk should be repurposed into at least two other content formats:
- Talk -> Blog post: Transcribe key points, add code blocks, publish
- Talk -> Short video clips: Cut 1-2 minute segments for social media
- Talk -> Tutorial: Expand the demo into a step-by-step written guide
- Talk -> Thread: Summarize the 5 key points as a Twitter/X thread
Always ask the conference for recording permission and a copy of the video. Self-record with a phone as a backup.
Frequently Asked Questions
What is developer-advocacy?
Use this skill when creating conference talks, live coding demos, technical blog posts, SDK quickstart examples, or community engagement strategies. Triggers on developer relations, DevRel, developer experience, tech evangelism, talk proposals, CFP submissions, demo scripts, tutorial writing, hackathon planning, community building, and any task involving advocating a product or API to a developer audience.
How do I install developer-advocacy?
Run npx skills add AbsolutelySkilled/AbsolutelySkilled --skill developer-advocacy in your terminal. The skill will be immediately available in your AI coding agent.
What AI agents support developer-advocacy?
developer-advocacy works with claude-code, gemini-cli, openai-codex. Install it once and use it across any supported AI coding agent.