用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/castrojo/casestudypilot --skill transcript-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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",
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",