npx skills add https://github.com/dglowacki/mega-agent-v2 --skill fieldy-analysis处理并分析 Field Labs 教练转录数据,以生成每日邮件摘要。
分析今日的 Fieldy 数据:
python scripts/analyze_fieldy.py data/fieldy/fieldy_2026-01-04.json
生成每日摘要:
python scripts/generate_fieldy_summary.py data/fieldy/fieldy_2026-01-04.json --output summary.json
{
"date": "2026-01-04",
"transcriptions": [
{
"timestamp": "2026-01-04T10:30:00.000000+00:00",
"transcription": "Full text of the transcription...",
"transcriptions": [
{
"text": "Individual sentence or phrase",
"speaker": "Unknown",
"start": 0.704,
"end": 7.184,
"duration": null
}
],
"metadata": {
"ip_address": "192.168.1.1",
"user_agent": "python-httpx/0.28.1",
"received_at": "2026-01-04T10:30:00.000000"
}
}
]
}
Process and analyze Field Labs coaching transcription data to generate daily email summaries.
Analyze today's Fieldy data:
python scripts/analyze_fieldy.py data/fieldy/fieldy_2026-01-04.json
Generate daily summary:
python scripts/generate_fieldy_summary.py data/fieldy/fieldy_2026-01-04.json --output summary.json
{
"date": "2026-01-04",
"transcriptions": [
{
"timestamp": "2026-01-04T10:30:00.000000+00:00",
"transcription": "Full text of the transcription...",
"transcriptions": [
{
"text": "Individual sentence or phrase",
"speaker": "Unknown",
"start": 0.704,
"end": 7.184,
"duration": null
}
],
"metadata": {
"ip_address": "192.168.1.1",
"user_agent": "python-httpx/0.28.1",
"received_at": "2026-01-04T10:30:00.000000"
}
}
]
}
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
总会话数
总时长
平均会话长度
会话时间线
总词数
每会话平均词数
发言者
主题/关键词
分析 Fieldy 转录数据并计算指标。
用法:
python scripts/analyze_fieldy.py input.json --output analysis.json
输出:
{
"date": "2026-01-04",
"summary": {
"total_sessions": 12,
"total_duration_minutes": 145.3,
"avg_session_minutes": 12.1,
"total_words": 5234,
"avg_words_per_session": 436,
"first_session": "2026-01-04T08:15:00",
"last_session": "2026-01-04T17:45:00"
},
"sessions": [
{
"timestamp": "2026-01-04T08:15:00",
"duration_minutes": 8.5,
"word_count": 342,
"segment_count": 15
}
]
}
为每日邮件报告生成格式化摘要。
用法:
python scripts/generate_fieldy_summary.py input.json \
--output summary.json \
--format report
输出(报告格式):
{
"title": "Fieldy 每日摘要",
"subtitle": "2026年1月4日,星期五",
"metrics": [
{
"label": "总会话数",
"value": "12",
"trend": "up",
"change": "+2"
},
{
"label": "总时长",
"value": "145 分钟",
"trend": "up",
"change": "+15 分钟"
},
{
"label": "平均会话长度",
"value": "12.1 分钟",
"trend": "neutral"
}
],
"sections": [
{
"title": "会话时间线",
"type": "timeline",
"data": {
"events": [...]
}
}
]
}
使用文本分析从转录文本中提取关键主题和见解。
用法:
python scripts/extract_insights.py input.json --top-keywords 10
功能:
每日 Fieldy 邮件的标准格式:
主题: Fieldy 每日摘要 - [日期]
内容:
一周的聚合指标:
# 1. 读取今日的 Fieldy 数据
fieldy_file = f"data/fieldy/fieldy_{today}.json"
# 2. 使用 fieldy-analysis 技能进行分析
python scripts/analyze_fieldy.py {fieldy_file} --output analysis.json
# 3. 为报告生成摘要
python scripts/generate_fieldy_summary.py analysis.json --format report
# 4. 使用 report-generation 技能创建 HTML
python ../report-generation/scripts/generate_html_report.py \
summary.json --template daily-summary --output fieldy_report.html
# 5. 委托 communication-agent 发送邮件
task(agent="communication-agent",
prompt=f"Send fieldy_report.html to dave+mega@flycowgames.com")
用于结合 Fieldy 与其他指标的每周报告:
# 聚合一周的 Fieldy 数据
fieldy_weekly = aggregate_fieldy_week(start_date, end_date)
# 与 GitHub、Skillz 等数据结合
combined_report = {
"fieldy": fieldy_weekly,
"github": github_weekly,
"skillz": skillz_weekly
}
# 生成全面的每周报告
python ../report-generation/scripts/generate_html_report.py \
combined_report.json --template weekly-summary
数据缺失
异常值
完整性
Fieldy 智能体每日在以下时间运行:
时长计算
时区处理
错误处理
性能
Fieldy 每日摘要
2026年1月4日,星期五
摘要:
✓ 12 次教练会话
✓ 总时长 145 分钟
✓ 平均会话长度 12.1 分钟
时间线:
• 首次会话:上午 8:15 PT
• 末次会话:下午 5:45 PT
• 最活跃时段:下午 2:00 - 下午 4:00
热门关键词:
• technique (提及 45 次)
• training (提及 38 次)
• form (提及 32 次)
• practice (提及 28 次)
data/fieldy/fieldy_YYYY-MM-DD.jsondata/fieldy/archive/ (可选)config/email_accounts.json每周安装数
1
仓库
首次出现
1 天前
安全审计
安装于
zencoder1
amp1
cline1
openclaw1
opencode1
cursor1
Total Sessions
Total Duration
Average Session Length
Session Timeline
Total Words
Average Words per Session
Speakers
Topics/Keywords
Analyze Fieldy transcription data and calculate metrics.
Usage:
python scripts/analyze_fieldy.py input.json --output analysis.json
Output:
{
"date": "2026-01-04",
"summary": {
"total_sessions": 12,
"total_duration_minutes": 145.3,
"avg_session_minutes": 12.1,
"total_words": 5234,
"avg_words_per_session": 436,
"first_session": "2026-01-04T08:15:00",
"last_session": "2026-01-04T17:45:00"
},
"sessions": [
{
"timestamp": "2026-01-04T08:15:00",
"duration_minutes": 8.5,
"word_count": 342,
"segment_count": 15
}
]
}
Generate formatted summary for daily email report.
Usage:
python scripts/generate_fieldy_summary.py input.json \
--output summary.json \
--format report
Output (report format):
{
"title": "Fieldy Daily Summary",
"subtitle": "Friday, January 4, 2026",
"metrics": [
{
"label": "Total Sessions",
"value": "12",
"trend": "up",
"change": "+2"
},
{
"label": "Total Duration",
"value": "145 min",
"trend": "up",
"change": "+15 min"
},
{
"label": "Avg Session Length",
"value": "12.1 min",
"trend": "neutral"
}
],
"sections": [
{
"title": "Session Timeline",
"type": "timeline",
"data": {
"events": [...]
}
}
]
}
Extract key topics and insights from transcriptions using text analysis.
Usage:
python scripts/extract_insights.py input.json --top-keywords 10
Features:
Standard format for daily Fieldy email:
Subject: Fieldy Daily Summary - [Date]
Content:
Aggregate metrics for the week:
# 1. Read today's Fieldy data
fieldy_file = f"data/fieldy/fieldy_{today}.json"
# 2. Analyze with fieldy-analysis skill
python scripts/analyze_fieldy.py {fieldy_file} --output analysis.json
# 3. Generate summary for report
python scripts/generate_fieldy_summary.py analysis.json --format report
# 4. Use report-generation skill to create HTML
python ../report-generation/scripts/generate_html_report.py \
summary.json --template daily-summary --output fieldy_report.html
# 5. Delegate to communication-agent to send email
task(agent="communication-agent",
prompt=f"Send fieldy_report.html to dave+mega@flycowgames.com")
For weekly reports combining Fieldy with other metrics:
# Aggregate week's Fieldy data
fieldy_weekly = aggregate_fieldy_week(start_date, end_date)
# Combine with GitHub, Skillz, etc.
combined_report = {
"fieldy": fieldy_weekly,
"github": github_weekly,
"skillz": skillz_weekly
}
# Generate comprehensive weekly report
python ../report-generation/scripts/generate_html_report.py \
combined_report.json --template weekly-summary
Missing Data
Outliers
Completeness
The Fieldy Agent runs daily at:
Duration Calculation
Timezone Handling
Error Handling
Performance
Fieldy Daily Summary
Friday, January 4, 2026
Summary:
✓ 12 total coaching sessions
✓ 145 minutes total duration
✓ 12.1 minutes average session length
Timeline:
• First session: 8:15 AM PT
• Last session: 5:45 PM PT
• Most active period: 2:00 PM - 4:00 PM
Top Keywords:
• technique (45 mentions)
• training (38 mentions)
• form (32 mentions)
• practice (28 mentions)
data/fieldy/fieldy_YYYY-MM-DD.jsondata/fieldy/archive/ (optional)config/email_accounts.jsonWeekly Installs
1
Repository
First Seen
1 day ago
Security Audits
Installed on
zencoder1
amp1
cline1
openclaw1
opencode1
cursor1
Python PDF处理教程:合并拆分、提取文本表格、创建PDF文件
59,800 周安装
docx转markdown工具:将Word文档转换为GitHub风格Markdown格式,支持表格图片
166 周安装
Gemini CLI nano-banana 图像生成工具:AI 绘图、图标设计、照片修复
166 周安装
PyTorch AOTI 调试指南:解决 AOTInductor 常见错误与 CUDA 内存访问问题
166 周安装
上下文优化技术:压缩、掩蔽、缓存与分区策略,提升AI上下文窗口效率
166 周安装
反重力UI设计专家:GSAP+3D CSS打造玻璃态拟物化交互界面
166 周安装
Godot 游戏引擎高级架构指南:专家级设计模式、信号系统与分层架构实战教程
166 周安装