skills/public/podcast-generation/templates/tech-explainer.md
Use this template when converting technical documentation, API guides, or developer tutorials into podcasts.
When the user wants to convert technical content to a podcast, help them structure the input:
Simplify Code Examples: Replace code snippets with plain language descriptions
Remove Complex Notation:
Add Context:
# Using the API
POST /api/v1/users
{
"name": "John",
"email": "[email protected]"
}
Response: 201 Created
# Creating Users with the API
The user creation feature allows applications to register new users in the system.
When you want to add a new user, you send their name and email address to the server.
If everything goes well, the server confirms the user was created successfully.
This is commonly used in signup flows, admin dashboards, or when importing users from other systems.
python /mnt/skills/public/podcast-generation/scripts/generate.py \
--script-file /mnt/user-data/workspace/tech-explainer-script.json \
--output-file /mnt/user-data/outputs/tech-explainer-podcast.mp3 \
--transcript-file /mnt/user-data/outputs/tech-explainer-transcript.md