Loading...
Loading...
Compare original and translation side by side
# Check current directory
ls RULE.md
# If not found, check parent directories
ls ../RULE.md
ls ../../RULE.mdReadmethodologyDocument Templates > Meeting Notes Formatfile_naming_conventionmeetings/Auto Workflows > When Claude creates meeting notesls -la meetings/Found RULE.md:
- Methodology: Scrum (2-week sprints)
- Meeting types: daily-standups, sprint-planning, sprint-reviews, retrospectives
- Format: Structured with YAML frontmatter
- Naming: Date-prefixed (YYYY-MM-DD_meeting-name.md)
- Directory: meetings/{type}/# 检查当前目录
ls RULE.md
# 如果未找到,检查上级目录
ls ../RULE.md
ls ../../RULE.mdmethodologyDocument Templates > Meeting Notes Formatfile_naming_conventionmeetings/Auto Workflows > When Claude creates meeting notesls -la meetings/找到RULE.md:
- 方法论:Scrum(2周迭代)
- 会议类型:daily-standups、sprint-planning、sprint-reviews、retrospectives
- 格式:带YAML前置元数据的结构化格式
- 命名规则:日期前缀(YYYY-MM-DD_meeting-name.md)
- 目录:meetings/{type}/What type of meeting is this?
[Present options based on RULE.md methodology]
- Daily Standup
- Sprint Planning
- Sprint Review
- Retrospective
- General/OtherWhat's the meeting title?
Example: "Sprint 5 Planning" or "Q4 Roadmap Discussion"Meeting date? (Press Enter for today: YYYY-MM-DD)Who attended? (You can list names or reference team roles from RULE.md)
Example: "@alice @bob @carol" or "Whole dev team"How long was the meeting? (optional, in minutes)meetings/sprint-planning/Gathered:
- Type: Sprint Planning
- Title: "Sprint 5 Planning"
- Date: 2025-11-13
- Attendees: Alice (PO), Bob (SM), Carol, David, Eve, Frank (devs)
- Duration: 90 minutes
- Filename: 2025-11-13_sprint-5-planning.md
- Target: meetings/sprint-planning/这是什么类型的会议?
[根据RULE.md方法论提供选项]
- 每日站会
- 迭代规划会
- 迭代评审会
- 回顾会
- 通用/其他会议标题是什么?
示例:“Sprint 5 规划会”或“Q4路线图讨论”会议日期?(按回车键使用今日日期:YYYY-MM-DD)哪些人参加了会议?(可以列出姓名或引用RULE.md中的团队角色)
示例:“@alice @bob @carol”或“整个开发团队”会议持续了多久?(可选,以分钟为单位)meetings/sprint-planning/已收集信息:
- 类型:迭代规划会
- 标题:“Sprint 5 规划会”
- 日期:2025-11-13
- 参会人员:Alice(PO)、Bob(SM)、Carol、David、Eve、Frank(开发人员)
- 时长:90分钟
- 文件名:2025-11-13_sprint-5-planning.md
- 目标目录:meetings/sprint-planning/Document Templates > Meeting Notes Format---
title: [Meeting Title]
type: [meeting-type]
date: YYYY-MM-DD
attendees:
- Name 1
- Name 2
duration_minutes: [number]
related_sprint: [sprint number or "N/A"]
related_milestone: [milestone or "N/A"]
---
# [Meeting Title]
**Date**: YYYY-MM-DD
**Type**: [Type]
**Duration**: [X] minutes
## Attendees
- Name 1
- Name 2
## Agenda
[To be filled or pre-populated if provided]
## Discussion
[Meeting notes and key points]
## Action Items
[Will be extracted or added]
## Decisions
[Key decisions made during the meeting]
## Next Steps
[What happens next]
---
*Created by ProjectMaster track-meeting Skill*# [Meeting Title]
**Date**: YYYY-MM-DD
**Attendees**: Names
## Notes
[Content]
## Action Items
- [ ] Item 1
- [ ] Item 2
## Decisions
[Decisions]# [Meeting Title]
| Field | Value |
|-------|-------|
| Date | YYYY-MM-DD |
| Type | [Type] |
| Attendees | Names |
| Duration | X mins |
## Discussion Points
| Topic | Notes | Owner |
|-------|-------|-------|
| [Topic 1] | [Notes] | @name |
## Action Items
| Task | Owner | Due Date | Status |
|------|-------|----------|--------|
| [Task] | @name | YYYY-MM-DD | [ ] |[To be filled]Document Templates > Meeting Notes Format---
title: [会议标题]
type: [meeting-type]
date: YYYY-MM-DD
attendees:
- 姓名1
- 姓名2
duration_minutes: [数字]
related_sprint: [迭代编号或“N/A”]
related_milestone: [里程碑或“N/A”]
---
# [会议标题]
**日期**:YYYY-MM-DD
**类型**:[类型]
**时长**:[X]分钟
## 参会人员
- 姓名1
- 姓名2
## 议程
[待填写或如果已提供则预先填充]
## 讨论内容
[会议笔记和关键点]
## 行动项
[将被提取或添加]
## 决策结果
[会议期间做出的关键决策]
## 后续步骤
[接下来的安排]
---
*由ProjectMaster track-meeting Skill创建*# [会议标题]
**日期**:YYYY-MM-DD
**参会人员**:姓名列表
## 笔记
[内容]
## 行动项
- [ ] 项1
- [ ] 项2
## 决策结果
[决策内容]# [会议标题]
| 字段 | 值 |
|-------|-------|
| 日期 | YYYY-MM-DD |
| 类型 | [Type] |
| 参会人员 | 姓名列表 |
| 时长 | X分钟 |
## 讨论要点
| 主题 | 笔记 | 负责人 |
|-------|-------|-------|
| [主题1] | [笔记] | @name |
## 行动项
| 任务 | 负责人 | 截止日期 | 状态 |
|------|-------|----------|--------|
| [任务] | @name | YYYY-MM-DD | [ ] |[待填写]Pattern detection:
- "Bob will update the database schema" → @bob: Update database schema
- "TODO: Review PR #123" → Review PR #123
- "Alice needs to finalize designs by Friday" → @alice: Finalize designs - due: [next Friday]## Action Items
- [ ] [Task description] - @[owner] - due: YYYY-MM-DD
- [ ] [Task description] - @[owner] - due: YYYY-MM-DD- [ ] [Task]I've extracted these action items:
1. @bob: Update database schema - due: 2025-11-20
2. @alice: Finalize designs - due: 2025-11-15
3. Review PR #123 - no owner assigned
Are these correct? Any additions or changes?模式检测:
- “Bob will update the database schema” → @bob: 更新数据库架构
- “TODO: Review PR #123” → 评审PR #123
- “Alice needs to finalize designs by Friday” → @alice: 最终确定设计 - 截止日期:[下周五]## 行动项
- [ ] [任务描述] - @[负责人] - 截止日期:YYYY-MM-DD
- [ ] [任务描述] - @[负责人] - 截止日期:YYYY-MM-DD- [ ] [任务]我已提取以下行动项:
1. @bob: 更新数据库架构 - 截止日期:2025-11-20
2. @alice: 最终确定设计 - 截止日期:2025-11-15
3. 评审PR #123 - 未分配负责人
这些是否正确?是否需要添加或修改?# For sprint reference
ls sprints/sprint-05/
# For milestone
grep "milestone-name" milestones.yaml
# For previous meetings
ls meetings/*/YYYY-MM-DD*.md---
related_sprint: sprint-05
related_milestone: beta-release
related_issues: [123, 456]
related_docs: [docs/architecture.md]
related_meetings: [meetings/sprint-planning/2025-11-06_sprint-4-planning.md]
---## Context
This meeting is for [Sprint 5](../../sprints/sprint-05/sprint-plan.md) planning.
Related to [Beta Release](../../milestones.yaml#beta-release) milestone.
Follow-up from [previous retrospective](../retrospectives/2025-11-06_sprint-4-retro.md).# 检查迭代引用
ls sprints/sprint-05/
# 检查里程碑
grep "milestone-name" milestones.yaml
# 检查之前的会议
ls meetings/*/YYYY-MM-DD*.md---
related_sprint: sprint-05
related_milestone: beta-release
related_issues: [123, 456]
related_docs: [docs/architecture.md]
related_meetings: [meetings/sprint-planning/2025-11-06_sprint-4-planning.md]
---## 上下文
本次会议是为[Sprint 5](../../sprints/sprint-05/sprint-plan.md)规划召开的。
与[Beta发布](../../milestones.yaml#beta-release)里程碑相关。
跟进[上次回顾会](../retrospectives/2025-11-06_sprint-4-retro.md)的内容。meetings/[meeting-type]/[filename].md
Example: meetings/sprint-planning/2025-11-13_sprint-5-planning.mdmkdir -p meetings/[meeting-type]Writels -la meetings/[meeting-type]/[filename].md✅ Created: meetings/sprint-planning/2025-11-13_sprint-5-planning.mdmeetings/[meeting-type]/[filename].md
示例:meetings/sprint-planning/2025-11-13_sprint-5-planning.mdmkdir -p meetings/[meeting-type]ls -la meetings/[meeting-type]/[filename].md✅ 已创建:meetings/sprint-planning/2025-11-13_sprint-5-planning.mdRead meetings/README.md## Recent Meetings
### Sprint Planning
- [2025-11-13: Sprint 5 Planning](sprint-planning/2025-11-13_sprint-5-planning.md) - Planned authentication features (Last updated: 2025-11-13)
- [2025-10-30: Sprint 4 Planning](sprint-planning/2025-10-30_sprint-4-planning.md) - ... (Last updated: 2025-10-30)
[Keep sorted by date, most recent first]---
Last updated: 2025-11-13# Sprint Planning Meetings
## Meetings
- [2025-11-13: Sprint 5 Planning](2025-11-13_sprint-5-planning.md) - Description
- [Previous meetings...]
---
Last updated: 2025-11-13## Recent Activity
- 2025-11-13: Sprint 5 Planning meeting notes added
- [Previous activities...]---
Last updated: 2025-11-13Auto Workflows > When Claude creates meeting notes## When Claude creates meeting notes:
1. Extract all action items with @mentions
2. Update team member task lists
3. Link to related user stories if mentioned
4. Add to README.md meeting index
5. [Custom step specific to this project]Read meetings/README.md## 近期会议
### 迭代规划会
- [2025-11-13: Sprint 5规划会](sprint-planning/2025-11-13_sprint-5-planning.md) - 规划认证功能(最后更新:2025-11-13)
- [2025-10-30: Sprint 4规划会](sprint-planning/2025-10-30_sprint-4-planning.md) - ...(最后更新:2025-10-30)
[按日期排序,最新的排在前面]---
最后更新:2025-11-13
---# 迭代规划会
## 会议列表
- [2025-11-13: Sprint 5规划会](2025-11-13_sprint-5-planning.md) - 描述
- [之前的会议...]
---
最后更新:2025-11-13## 近期活动
- 2025-11-13:添加了Sprint 5规划会会议笔记
- [之前的活动...]---
最后更新:2025-11-13
---Auto Workflows > When Claude creates meeting notes## 当Claude创建会议笔记时:
1. 提取所有带@提及的行动项
2. 更新团队成员的任务列表
3. 如果提及则链接到相关的用户故事
4. 添加到README.md会议索引
5. [针对该项目的自定义步骤]✅ Meeting Notes Created Successfully!
📄 File: meetings/[type]/[filename].md
📅 Date: YYYY-MM-DD
👥 Attendees: [count] people
⏱️ Duration: [X] minutes
📋 Action Items: [count]
[List action items with owners]
🔗 Linked to:
- Sprint [X]
- Milestone: [name]
- Issues: #[numbers]
📚 Updated governance:
✓ meetings/README.md
✓ meetings/[type]/README.md
✓ Project README.md
💡 Next steps:
- Review action items with team
- Track action item completion
- Link to sprint/milestone if not already done
[If action items with owners exist:]
Reminder to notify:
- @[owner1] about [task]
- @[owner2] about [task]
[If custom workflows were executed:]
🤖 Executed custom workflows from RULE.md:
- [Workflow description]✅ 会议笔记创建成功!
📄 文件:meetings/[type]/[filename].md
📅 日期:YYYY-MM-DD
👥 参会人员:[数量]人
⏱️ 时长:[X]分钟
📋 行动项:[数量]项
[列出带负责人的行动项]
🔗 关联到:
- 迭代[X]
- 里程碑:[名称]
- 问题:#[编号]
📚 已更新治理内容:
✓ meetings/README.md
✓ meetings/[type]/README.md
✓ 项目README.md
💡 后续步骤:
- 与团队评审行动项
- 跟踪行动项的完成情况
- 如果尚未关联,链接到迭代/里程碑
[如果存在带负责人的行动项:]
提醒通知:
- @[负责人1] 关于[任务]
- @[负责人2] 关于[任务]
[如果执行了自定义工作流:]
🤖 已执行RULE.md中的自定义工作流:
- [工作流描述]User: "Today's standup: Everyone on track, Bob blocked on API issue, Alice will help"---
title: Daily Standup
type: standup
date: 2025-11-13
---
# Daily Standup - 2025-11-13
## Updates
- Team on track
- Bob: Blocked on API issue
- Alice: Will assist Bob
## Action Items
- [ ] Alice: Help Bob with API issue2025-11-13_standup.md用户:“今日站会:所有人进度正常,Bob在API问题上受阻,Alice会帮忙”---
title: 每日站会
type: standup
date: 2025-11-13
---
# 每日站会 - 2025-11-13
## 更新内容
- 团队进度正常
- Bob:在API问题上受阻
- Alice:将协助Bob
## 行动项
- [ ] Alice:协助Bob解决API问题2025-11-13_standup.mdundefinedundefinedundefinedundefinedYYYY-MM-DD_standup.mdYYYY-MM-DD_weekly-sync.md## Previous Meeting
[Last week's sync](2025-11-06_weekly-sync.md)
## Follow-up on Previous Action Items
- [X] Item from last week - completed
- [ ] Item from last week - in progressYYYY-MM-DD_standup.mdYYYY-MM-DD_weekly-sync.md## 上次会议
[上周同步会](2025-11-06_weekly-sync.md)
## 上次行动项跟进
- [X] 上周的项 - 已完成
- [ ] 上周的项 - 进行中---
title: [Incident Title]
type: incident
severity: [high|critical]
date: YYYY-MM-DD HH:MM
---
# Incident: [Title]
## Timeline
- HH:MM - Incident detected
- HH:MM - Team notified
- HH:MM - Root cause identified
- HH:MM - Fix deployed
- HH:MM - Incident resolved
## Impact
[Description of impact]
## Root Cause
[What caused the incident]
## Resolution
[How it was fixed]
## Action Items
- [ ] Prevent recurrence: [task]
- [ ] Post-mortem: [task]---
title: [事件标题]
type: incident
severity: [高/严重]
date: YYYY-MM-DD HH:MM
---
# 事件:[标题]
## 时间线
- HH:MM - 检测到事件
- HH:MM - 通知团队
- HH:MM - 确定根本原因
- HH:MM - 部署修复方案
- HH:MM - 事件解决
## 影响
[影响描述]
## 根本原因
[事件的起因]
## 解决方案
[如何修复的]
## 行动项
- [ ] 防止复发:[任务]
- [ ] 事后总结:[任务]⚠️ No RULE.md found in this directory or parent directories.
This appears to not be a ProjectMaster-initialized project.
Options:
1. Initialize project first: "Initialize a new project for [name]"
2. Create meeting note with default format (no governance)
3. Specify a different directory
What would you like to do?⚠️ 未在当前目录或上级目录中找到RULE.md。
这似乎不是一个由ProjectMaster初始化的项目。
选项:
1. 先初始化项目:“为[名称]初始化一个新项目”
2. 使用默认格式创建会议笔记(无治理)
3. 指定其他目录
您想怎么做?⚠️ No meetings/ directory found.
I'll create it now with proper governance structure.mkdir -p meetings/
echo "[README.md content]" > meetings/README.md⚠️ 未找到meetings/目录。
我将立即创建该目录并配置适当的治理结构。mkdir -p meetings/
echo "[README.md内容]" > meetings/README.md⚠️ Meeting type "[type]" not recognized for this project.
Available types based on your RULE.md:
- [type1]
- [type2]
- [type3]
Would you like to:
1. Use one of the available types
2. Create as "General" meeting
3. Add "[type]" to RULE.md as a new meeting type
Which option?⚠️ 未识别该项目的会议类型“[type]”。
根据您的RULE.md,可用类型包括:
- [type1]
- [type2]
- [type3]
您想:
1. 使用可用类型之一
2. 创建为“通用”会议
3. 将“[type]”添加到RULE.md中作为新的会议类型
选择哪个选项?⚠️ A meeting note already exists with this name:
meetings/[type]/[filename].md
Options:
1. Create with different name (e.g., append "-v2")
2. Update/append to existing note
3. Cancel creation
What would you like to do?⚠️ 已存在同名的会议笔记:
meetings/[type]/[filename].md
选项:
1. 使用不同名称创建(例如,追加“-v2”)
2. 更新/追加到现有笔记
3. 取消创建
您想怎么做?ls sprints/current/related_sprint: sprint-05sprints/sprint-05/sprint-plan.md## Meetings
- [Planning](../../meetings/sprint-planning/2025-11-13_sprint-5-planning.md)ls sprints/current/related_sprint: sprint-05sprints/sprint-05/sprint-plan.md## 会议
- [规划会](../../meetings/sprint-planning/2025-11-13_sprint-5-planning.md)related_milestone: beta-releasenotes: "Discussed in meeting: meetings/planning/2025-11-13_sprint-5-planning.md"related_milestone: beta-releasenotes: “在会议中讨论:meetings/planning/2025-11-13_sprint-5-planning.md”## References
- [Architecture Decision 001](../../decisions/001-database-choice.md)
- [API Documentation](../../knowledge/api-docs.md)## 参考资料
- [架构决策001](../../decisions/001-database-choice.md)
- [API文档](../../knowledge/api-docs.md)User: I need to create notes for our sprint 5 planning meeting
Claude: I'll create sprint planning notes. Let me gather details...
Meeting title? (e.g., "Sprint 5 Planning")
User: Sprint 5 Planning
Claude: Great! Attendees?
User: Whole team - Alice (PO), Bob (SM), Carol, David, Eve, Frank (devs)
Claude: How long was the meeting?
User: About 90 minutes
Claude: Perfect! Any content to include, or should I create a template for you to fill?
User: Create template, but add that we're focusing on authentication features
Claude: Got it! Creating structured sprint planning notes...
✅ Created: meetings/sprint-planning/2025-11-13_sprint-5-planning.md
📄 Structured template with:
- Sprint goal: Authentication features
- Sections for user stories, estimates, assignments
- Action items section
- Links to Sprint 5 documentation
📚 Updated:
✓ meetings/README.md
✓ meetings/sprint-planning/README.md
✓ Project README.md
✓ sprints/sprint-05/sprint-plan.md (added planning meeting link)
You can now edit the file to add detailed notes, user stories, and estimates.用户:我需要为我们的Sprint 5规划会创建笔记
Claude:我将创建迭代规划会笔记。让我收集详细信息...
会议标题?(例如:“Sprint 5规划会”)
用户:Sprint 5规划会
Claude:好的!参会人员有哪些?
用户:整个团队 - Alice(PO)、Bob(SM)、Carol、David、Eve、Frank(开发人员)
Claude:会议持续了多久?
用户:大约90分钟
Claude:完美!是否需要添加内容,还是我创建一个模板供您填写?
用户:创建模板,但要加上我们重点关注认证功能
Claude:收到!正在创建结构化迭代规划会笔记...
✅ 已创建:meetings/sprint-planning/2025-11-13_sprint-5-planning.md
📄 结构化模板包含:
- 迭代目标:认证功能
- 用户故事、估算、分配章节
- 行动项章节
- 链接到Sprint 5文档
📚 已更新:
✓ meetings/README.md
✓ meetings/sprint-planning/README.md
✓ 项目README.md
✓ sprints/sprint-05/sprint-plan.md(添加了规划会链接)
您现在可以编辑文件以添加详细笔记、用户故事和估算。User: Today's standup: Carol finished user signup, David starting login, Eve blocked on OAuth config, Bob will help Eve
Claude: Recording daily standup...
✅ Created: meetings/daily-standups/2025-11-13_standup.md
📋 Summary:
- Carol: Completed user signup ✓
- David: Starting login feature
- Eve: Blocked on OAuth configuration
- Bob: Will assist Eve
Action Items:
- [ ] Bob: Help Eve with OAuth configuration
📚 Governance updated
💡 Reminder: Bob to assist Eve with OAuth blocker用户:今日站会:Carol完成了用户注册功能,David开始登录功能,Eve在OAuth配置上受阻,Bob会帮忙
Claude:正在记录每日站会...
✅ 已创建:meetings/daily-standups/2025-11-13_standup.md
📋 摘要:
- Carol:已完成用户注册 ✓
- David:开始登录功能开发
- Eve:在OAuth配置上受阻
- Bob:将协助Eve
行动项:
- [ ] Bob:协助Eve解决OAuth配置问题
📚 已更新治理内容
💡 提醒:Bob需协助Eve解决OAuth阻塞问题User: Create retro notes for sprint 4
Claude: I'll create a Sprint 4 retrospective note. Let me use the retrospective template...
What went well in Sprint 4?
User: We delivered all planned features, team collaboration was great, no major bugs
Claude: What could be improved?
User: Estimations were off, needed better testing before review
Claude: Any specific action items for next sprint?
User: Allocate more time for testing, involve QA earlier, re-calibrate story points
Claude: Creating retrospective...
✅ Created: meetings/retrospectives/2025-11-13_sprint-4-retro.md
📊 Sprint 4 Retrospective:
🎉 What Went Well:
- Delivered all planned features
- Strong team collaboration
- No major bugs
🔧 What Could Be Improved:
- Estimation accuracy
- Testing workflow timing
📋 Action Items for Sprint 5:
- [ ] Allocate dedicated testing time in sprint planning
- [ ] Involve QA from story refinement stage
- [ ] Re-calibrate story point estimates based on Sprint 4 actuals
📚 Updated governance and linked to Sprint 4 documentation
💡 These action items will be tracked in Sprint 5 planning.用户:为Sprint 4创建回顾会笔记
Claude:我将创建Sprint 4回顾会笔记。让我使用回顾会模板...
Sprint 4中哪些地方做得好?
用户:我们交付了所有规划的功能,团队协作很棒,没有重大bug
Claude:哪些地方需要改进?
用户:估算不准确,评审前需要更好的测试
Claude:下一个迭代有具体的行动项吗?
用户:分配更多时间用于测试,更早让QA参与,重新校准故事点
Claude:正在创建回顾会笔记...
✅ 已创建:meetings/retrospectives/2025-11-13_sprint-4-retro.md
📊 Sprint 4回顾会:
🎉 做得好的地方:
- 交付了所有规划的功能
- 团队协作紧密
- 无重大bug
🔧 需要改进的地方:
- 估算准确性
- 测试工作流时机
📋 下一个迭代的行动项:
- [ ] 在迭代规划中分配专门的测试时间
- [ ] 在故事细化阶段就让QA参与
- [ ] 根据Sprint 4的实际情况重新校准故事点估算
📚 已更新治理内容并链接到Sprint 4文档
💡 这些行动项将在Sprint 5规划中被跟踪。