en un clic
transcript-analysis
Analyzes transcripts to extract structured data
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Analyzes transcripts to extract structured data
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Create GitHub epic issue from any implementation plan file
Extracts and synthesizes biographical information from multiple sources
Generates polished presenter profile content in professional narrative style
Analyzes multiple talks to extract themes, expertise areas, and CNCF project focus
Update epic issue with implementation journey and lessons learned after work completes
Generates polished case study sections
| name | transcript-analysis |
| description | Analyzes transcripts to extract structured data |
| version | 1.0.0 |
Extract structured information from corrected video transcripts to enable case study generation:
Find all mentions of CNCF projects and understand their usage context.
Common CNCF Projects:
For each project found, extract:
Example:
{
"name": "Kubernetes",
"usage_context": "container orchestration and workload scheduling"
}
Find all measurable achievements and improvements.
Metric Types:
Percentages:
Time Savings:
Scale:
Cost:
Reliability:
Format for each metric:
{
"value": "50%",
"type": "percentage",
"context": "reduction in deployment time",
"full_statement": "We saw a 50% reduction in deployment time after adopting Argo CD"
}
Analyze the transcript and extract content for each section type.
Section Types:
Background:
Keywords: "we are", "our company", "we work with", "our team", "in our industry"
Challenge:
Keywords: "the problem", "we faced", "difficulty", "challenge", "struggled", "couldn't"
Solution:
Keywords: "we implemented", "we adopted", "we deployed", "we chose", "solution", "approach"
Impact:
Keywords: "we achieved", "we saw", "improvement", "results", "now we can", "benefit"
Return a JSON object with this structure:
{
"cncf_projects": [
{
"name": "Kubernetes",
"usage_context": "container orchestration platform for microservices"
},
{
"name": "Argo CD",
"usage_context": "GitOps continuous delivery for Kubernetes"
}
],
"key_metrics": [
{
"value": "50%",
"type": "percentage",
"context": "reduction in deployment time",
"full_statement": "We reduced deployment time by 50%"
},
{
"value": "10,000",
"type": "scale",
"context": "pods managed in production",
"full_statement": "We now manage over 10,000 pods in production"
}
],
"sections": {
"background": "Relevant sentences and context...",
"challenge": "Description of problems faced...",
"solution": "How they implemented CNCF technologies...",
"impact": "Results and improvements achieved..."
}
}
We're a financial services company with 5000 employees. We were struggling
with slow deployments that took 2-3 hours. We adopted Kubernetes for
orchestration and Argo CD for continuous delivery. Now our deployments
take only 15 minutes and we manage 10,000 pods across multiple clusters.
{
"cncf_projects": [
{
"name": "Kubernetes",
"usage_context": "container orchestration"
},
{
"name": "Argo CD",
"usage_context": "continuous delivery"
}
],
"key_metrics": [
{
"value": "2-3 hours to 15 minutes",
"type": "time_savings",
"context": "deployment time",
"full_statement": "deployments took 2-3 hours, now take only 15 minutes"
},
{
"value": "10,000",
"type": "scale",
"context": "pods managed across clusters",
"full_statement": "we manage 10,000 pods across multiple clusters"
}
],
"sections": {
"background": "We're a financial services company with 5000 employees.",
"challenge": "We were struggling with slow deployments that took 2-3 hours.",
"solution": "We adopted Kubernetes for orchestration and Argo CD for continuous delivery.",
"impact": "Now our deployments take only 15 minutes and we manage 10,000 pods across multiple clusters."
}
}