Source: https://github.com/aipoch/medical-research-skills
Meeting Assistant
When to Use
- Use this skill when the request matches its documented task boundary.
- Use it when the user can provide the required inputs and expects a structured deliverable.
- Prefer this skill for repeatable, checklist-driven execution rather than open-ended brainstorming.
Key Features
- Scope-focused workflow aligned to: Extracts key meeting information in chronological order and outputs decisions and action items; use when you need meeting minutes, action tracking, or project sync notes from transcripts or raw notes.
- Documentation-first workflow with no packaged script requirement.
- Reference material available in
references/ for task-specific guidance.
- Reusable packaged asset(s), including
assets/meeting_minutes_template.md.
- Structured execution path designed to keep outputs consistent and reviewable.
Dependencies
Python: 3.10+. Repository baseline for current packaged skills.
Third-party packages: not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.
Example Usage
Skill directory: 20260316/scientific-skills/Others/meeting-assistant
No packaged executable script was detected.
Use the documented workflow in SKILL.md together with the references/assets in this folder.
Example run plan:
- Read the skill instructions and collect the required inputs.
- Follow the documented workflow exactly.
- Use packaged references/assets from this folder when the task needs templates or rules.
- Return a structured result tied to the requested deliverable.
Implementation Details
- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.
- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.
- Primary implementation surface: instruction-only workflow in
SKILL.md.
- Reference guidance:
references/ contains supporting rules, prompts, or checklists.
- Packaged assets: reusable files are available under
assets/.
- Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.
- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.
1. When to Use
Use this skill in the following scenarios (3-5 typical cases):
- Meeting minutes generation from raw notes or audio transcripts, especially when you need a clear timeline of what was discussed.
- Action item tracking after recurring meetings (weekly syncs, standups, steering committees) where owners and deadlines must be captured.
- Project synchronization across teams to consolidate decisions, disagreements, and follow-ups into a single structured output.
- Decision logging for governance/compliance needs where decisions must be separated from items still pending confirmation.
- Post-meeting follow-up preparation to produce a concise list of next steps and unresolved questions.
2. Key Features
- Chronological summarization of discussion points (timeline-first structure).
- Decision extraction with explicit separation of:
- confirmed decisions
- items pending confirmation
- Disagreement/issue marking to highlight unresolved conflicts or divergent viewpoints.
- Action item extraction including task, owner, deadline, and optional status.
- Structured outputs suitable for minutes, decision lists, and action tables.
- Sensitive data masking for common identifiers (e.g., phone numbers, emails) in the generated output.
- No external access: operates only on text provided in the conversation.
3. Dependencies
This is an instruction-based skill and requires no external packages.
| Dependency |
Version |
Notes |
| None |
N/A |
No scripts, no network calls, no file I/O |
4. Example Usage
Below is a complete, runnable example (copy/paste the input; the expected output format is shown).
Input (example transcript)
Meeting: Project Progress Sync
Date: 2025-01-15
Participants: Zhang San (PM), Li Si (Finance), Wang Wu (QA)
Recorder: Li Si
[10:00] Zhang San: Q1 goals are on track. Main risk is test environment readiness.
[10:05] Wang Wu: QA environment is not stable; we need infra support by next week.
[10:10] Li Si: Budget increase request is ready, but needs approval today.
[10:15] Zhang San: Decision needed: approve budget increase and postpone non-core features.
[10:18] Wang Wu: I disagree on postponing feature X; it impacts customer demo.
[10:22] Zhang San: Noted. We'll postpone non-core features except feature X pending confirmation.
[10:25] Li Si: Action items: Zhang drafts technical solution; I submit budget report; Wang arranges test environment.
Output (expected minutes)
# Meeting Minutes
## Basic Information
- Meeting Subject: Project Progress Sync
- Time: 2025-01-15
- Participants: Zhang San, Li Si, Wang Wu
- Recorder: Li Si
## Timeline Summary (Chronological)
1. [10:00] Q1 goals reported as on track; test environment readiness identified as a key risk.
2. [10:05] QA environment instability raised; infra support requested by next week.
3. [10:10] Budget increase request prepared and requires same-day approval.
4. [10:15] Proposal raised: approve budget increase; postpone non-core features.
5. [10:18] Disagreement: postponing feature X may impact customer demo.
6. [10:22] Interim conclusion: postpone non-core features **except feature X** (feature X decision pending confirmation).
7. [10:25] Action items assigned to owners.
## Decision List (Confirmed)
1. Approved the budget increase request.
## Items Pending Confirmation
1. Whether to postpone feature X (impact on customer demo needs validation).
## Disagreements / Open Issues
- Postponing feature X: PM proposes postponement; QA objects due to demo impact.
## Action Items
| Task | Owner | Deadline | Status |
|------|------|----------|--------|
| Complete technical solution document | Zhang San | 2025-01-20 | In Progress |
| Submit budget report | Li Si | 2025-01-22 | To Start |
| Arrange test environment | Wang Wu | 2025-01-25 | To Start |
5. Implementation Details
Processing Workflow
- Material normalization
- Prefer inputs containing timestamps and speaker labels.
- If missing, infer ordering from paragraphs and explicit time cues.
- Timeline parsing
- Sort entries by timestamp (or inferred order).
- Produce a concise chronological summary, preserving key context.
- Information extraction
- Decisions: statements indicating approval/confirmation/commitment.
- Pending items: proposals, unresolved questions, or "to be confirmed" items.
- Disagreements: explicit objections, conflicting viewpoints, or unresolved trade-offs.
- Action items: tasks with owner and deadline; if deadline is missing, mark as
TBD.
- Output structuring
- Generate sections: Basic Info → Timeline Summary → Decisions → Pending → Disagreements → Action Items table.
Output Rules / Parameters
- Chronology-first: timeline summary must follow meeting order.
- Separation of states: confirmed decisions must not be mixed with pending items.
- Action item completeness:
- Must include Owner; if unknown, use
Unassigned.
- Must include Deadline; if unknown, use
TBD.
- Data access constraints
- No local file system reads/writes.
- No URL/API access.
- Operates only on text provided in the conversation.
- Sensitive information masking
- Mask common sensitive identifiers (e.g., emails/phone numbers) in outputs when present.
When Not to Use
- Do not use this skill when the required source data, identifiers, files, or credentials are missing.
- Do not use this skill when the user asks for fabricated results, unsupported claims, or out-of-scope conclusions.
- Do not use this skill when a simpler direct answer is more appropriate than the documented workflow.
Required Inputs
- A clearly specified task goal aligned with the documented scope.
- All required files, identifiers, parameters, or environment variables before execution.
- Any domain constraints, formatting requirements, and expected output destination if applicable.
Recommended Workflow
- Validate the request against the skill boundary and confirm all required inputs are present.
- Select the documented execution path and prefer the simplest supported command or procedure.
- Produce the expected output using the documented file format, schema, or narrative structure.
- Run a final validation pass for completeness, consistency, and safety before returning the result.
Output Contract
- Return a structured deliverable that is directly usable without reformatting.
- If a file is produced, prefer a deterministic output name such as
meeting_assistant_result.md unless the skill documentation defines a better convention.
- Include a short validation summary describing what was checked, what assumptions were made, and any remaining limitations.
Validation and Safety Rules
- Validate required inputs before execution and stop early when mandatory fields or files are missing.
- Do not fabricate measurements, references, findings, or conclusions that are not supported by the provided source material.
- Emit a clear warning when credentials, privacy constraints, safety boundaries, or unsupported requests affect the result.
- Keep the output safe, reproducible, and within the documented scope at all times.
Failure Handling
- If validation fails, explain the exact missing field, file, or parameter and show the minimum fix required.
- If an external dependency or script fails, surface the command path, likely cause, and the next recovery step.
- If partial output is returned, label it clearly and identify which checks could not be completed.
Quick Validation
Run this minimal verification path before full execution when possible:
No local script validation step is required for this skill.
Expected output format:
Result file: meeting_assistant_result.md
Validation summary: PASS/FAIL with brief notes
Assumptions: explicit list if any
1---2name: meeting-assistant3description: Extracts key meeting information in chronological order and outputs decisions and action items; use when you need meeting minutes, action tracking, or project sync notes from transcripts or raw notes.4license: MIT5---6> **Source**: [https://github.com/aipoch/medical-research-skills](https://github.com/aipoch/medical-research-skills)
7
8# Meeting Assistant
9
10## When to Use
11
12- Use this skill when the request matches its documented task boundary.
13- Use it when the user can provide the required inputs and expects a structured deliverable.
14- Prefer this skill for repeatable, checklist-driven execution rather than open-ended brainstorming.
15
16## Key Features
17
18- Scope-focused workflow aligned to: Extracts key meeting information in chronological order and outputs decisions and action items; use when you need meeting minutes, action tracking, or project sync notes from transcripts or raw notes.
19- Documentation-first workflow with no packaged script requirement.
20- Reference material available in `references/` for task-specific guidance.
21- Reusable packaged asset(s), including `assets/meeting_minutes_template.md`.
22- Structured execution path designed to keep outputs consistent and reviewable.
23
24## Dependencies
25
26- `Python`: `3.10+`. Repository baseline for current packaged skills.
27- `Third-party packages`: `not explicitly version-pinned in this skill package`. Add pinned versions if this skill needs stricter environment control.
28
29## Example Usage
30
31```text
32Skill directory: 20260316/scientific-skills/Others/meeting-assistant
33No packaged executable script was detected.
34Use the documented workflow in SKILL.md together with the references/assets in this folder.
35```
36
37Example run plan:
381. Read the skill instructions and collect the required inputs.
392. Follow the documented workflow exactly.
403. Use packaged references/assets from this folder when the task needs templates or rules.
414. Return a structured result tied to the requested deliverable.
42
43## Implementation Details
44
45- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.
46- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.
47- Primary implementation surface: instruction-only workflow in `SKILL.md`.
48- Reference guidance: `references/` contains supporting rules, prompts, or checklists.
49- Packaged assets: reusable files are available under `assets/`.
50- Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.
51- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.
52
53## 1. When to Use
54Use this skill in the following scenarios (3-5 typical cases):
55
561. **Meeting minutes generation** from raw notes or audio transcripts, especially when you need a clear timeline of what was discussed.
572. **Action item tracking** after recurring meetings (weekly syncs, standups, steering committees) where owners and deadlines must be captured.
583. **Project synchronization** across teams to consolidate decisions, disagreements, and follow-ups into a single structured output.
594. **Decision logging** for governance/compliance needs where decisions must be separated from items still pending confirmation.
605. **Post-meeting follow-up preparation** to produce a concise list of next steps and unresolved questions.
61
62## 2. Key Features
63- **Chronological summarization** of discussion points (timeline-first structure).
64- **Decision extraction** with explicit separation of:
65 - confirmed decisions
66 - items pending confirmation
67- **Disagreement/issue marking** to highlight unresolved conflicts or divergent viewpoints.
68- **Action item extraction** including **task**, **owner**, **deadline**, and optional **status**.
69- **Structured outputs** suitable for minutes, decision lists, and action tables.
70- **Sensitive data masking** for common identifiers (e.g., phone numbers, emails) in the generated output.
71- **No external access**: operates only on text provided in the conversation.
72
73## 3. Dependencies
74This is an instruction-based skill and requires no external packages.
75
76| Dependency | Version | Notes |
77|---|---:|---|
78| None | N/A | No scripts, no network calls, no file I/O |
79
80## 4. Example Usage
81Below is a complete, runnable example (copy/paste the input; the expected output format is shown).
82
83### Input (example transcript)
84```text
85Meeting: Project Progress Sync
86Date: 2025-01-15
87Participants: Zhang San (PM), Li Si (Finance), Wang Wu (QA)
88Recorder: Li Si
89
90[10:00] Zhang San: Q1 goals are on track. Main risk is test environment readiness.
91[10:05] Wang Wu: QA environment is not stable; we need infra support by next week.
92[10:10] Li Si: Budget increase request is ready, but needs approval today.
93[10:15] Zhang San: Decision needed: approve budget increase and postpone non-core features.
94[10:18] Wang Wu: I disagree on postponing feature X; it impacts customer demo.
95[10:22] Zhang San: Noted. We'll postpone non-core features except feature X pending confirmation.
96[10:25] Li Si: Action items: Zhang drafts technical solution; I submit budget report; Wang arranges test environment.
97```
98
99### Output (expected minutes)
100```markdown
101
102# Meeting Minutes
103
104## Basic Information
105- Meeting Subject: Project Progress Sync
106- Time: 2025-01-15
107- Participants: Zhang San, Li Si, Wang Wu
108- Recorder: Li Si
109
110## Timeline Summary (Chronological)
1111. [10:00] Q1 goals reported as on track; test environment readiness identified as a key risk.
1122. [10:05] QA environment instability raised; infra support requested by next week.
1133. [10:10] Budget increase request prepared and requires same-day approval.
1144. [10:15] Proposal raised: approve budget increase; postpone non-core features.
1155. [10:18] Disagreement: postponing feature X may impact customer demo.
1166. [10:22] Interim conclusion: postpone non-core features **except feature X** (feature X decision pending confirmation).
1177. [10:25] Action items assigned to owners.
118
119## Decision List (Confirmed)
1201. Approved the budget increase request.
121
122## Items Pending Confirmation
1231. Whether to postpone feature X (impact on customer demo needs validation).
124
125## Disagreements / Open Issues
126- Postponing feature X: PM proposes postponement; QA objects due to demo impact.
127
128## Action Items
129| Task | Owner | Deadline | Status |
130|------|------|----------|--------|
131| Complete technical solution document | Zhang San | 2025-01-20 | In Progress |
132| Submit budget report | Li Si | 2025-01-22 | To Start |
133| Arrange test environment | Wang Wu | 2025-01-25 | To Start |
134```
135
136## 5. Implementation Details
137
138### Processing Workflow
1391. **Material normalization**
140 - Prefer inputs containing **timestamps** and **speaker labels**.
141 - If missing, infer ordering from paragraphs and explicit time cues.
1422. **Timeline parsing**
143 - Sort entries by timestamp (or inferred order).
144 - Produce a concise chronological summary, preserving key context.
1453. **Information extraction**
146 - **Decisions**: statements indicating approval/confirmation/commitment.
147 - **Pending items**: proposals, unresolved questions, or "to be confirmed" items.
148 - **Disagreements**: explicit objections, conflicting viewpoints, or unresolved trade-offs.
149 - **Action items**: tasks with **owner** and **deadline**; if deadline is missing, mark as `TBD`.
1504. **Output structuring**
151 - Generate sections: Basic Info → Timeline Summary → Decisions → Pending → Disagreements → Action Items table.
152
153### Output Rules / Parameters
154- **Chronology-first**: timeline summary must follow meeting order.
155- **Separation of states**: confirmed decisions must not be mixed with pending items.
156- **Action item completeness**:
157 - Must include **Owner**; if unknown, use `Unassigned`.
158 - Must include **Deadline**; if unknown, use `TBD`.
159- **Data access constraints**
160 - No local file system reads/writes.
161 - No URL/API access.
162 - Operates only on text provided in the conversation.
163- **Sensitive information masking**
164 - Mask common sensitive identifiers (e.g., emails/phone numbers) in outputs when present.
165
166## When Not to Use
167
168- Do not use this skill when the required source data, identifiers, files, or credentials are missing.
169- Do not use this skill when the user asks for fabricated results, unsupported claims, or out-of-scope conclusions.
170- Do not use this skill when a simpler direct answer is more appropriate than the documented workflow.
171
172## Required Inputs
173
174- A clearly specified task goal aligned with the documented scope.
175- All required files, identifiers, parameters, or environment variables before execution.
176- Any domain constraints, formatting requirements, and expected output destination if applicable.
177
178## Recommended Workflow
179
1801. Validate the request against the skill boundary and confirm all required inputs are present.
1812. Select the documented execution path and prefer the simplest supported command or procedure.
1823. Produce the expected output using the documented file format, schema, or narrative structure.
1834. Run a final validation pass for completeness, consistency, and safety before returning the result.
184
185## Output Contract
186
187- Return a structured deliverable that is directly usable without reformatting.
188- If a file is produced, prefer a deterministic output name such as `meeting_assistant_result.md` unless the skill documentation defines a better convention.
189- Include a short validation summary describing what was checked, what assumptions were made, and any remaining limitations.
190
191## Validation and Safety Rules
192
193- Validate required inputs before execution and stop early when mandatory fields or files are missing.
194- Do not fabricate measurements, references, findings, or conclusions that are not supported by the provided source material.
195- Emit a clear warning when credentials, privacy constraints, safety boundaries, or unsupported requests affect the result.
196- Keep the output safe, reproducible, and within the documented scope at all times.
197
198## Failure Handling
199
200- If validation fails, explain the exact missing field, file, or parameter and show the minimum fix required.
201- If an external dependency or script fails, surface the command path, likely cause, and the next recovery step.
202- If partial output is returned, label it clearly and identify which checks could not be completed.
203
204## Quick Validation
205
206Run this minimal verification path before full execution when possible:
207
208```text
209No local script validation step is required for this skill.
210```
211
212Expected output format:
213
214```text
215Result file: meeting_assistant_result.md
216Validation summary: PASS/FAIL with brief notes
217Assumptions: explicit list if any
218```