$npx -y skills add AGI-comming/functional-skill-creator --skill meeting-notes-to-actionsConvert meeting notes into owners, action items, decisions, and follow-up messages.
| 1 | # meeting-notes-to-actions |
| 2 | |
| 3 | ## Goal |
| 4 | |
| 5 | Convert raw meeting notes into a structured follow-up plan. This example demonstrates a functional skill that is not tied to any specific agent runtime or business domain. |
| 6 | |
| 7 | ## Principles |
| 8 | |
| 9 | - Orchestration stays in `SKILL.md`. |
| 10 | - Function behavior lives in `functions/*.md`. |
| 11 | - Do not fabricate owners, due dates, or decisions that are missing from the meeting notes. |
| 12 | - Only use trace logs when the caller enables reporting. |
| 13 | - Deterministic input normalization belongs in `scripts/`, not in prompt judgment. |
| 14 | |
| 15 | ## References |
| 16 | |
| 17 | | Resource | Load Timing | Purpose | |
| 18 | |---|---|---| |
| 19 | | `shared_glossary` | On demand | Shared terminology for this example. | |
| 20 | |
| 21 | ## External Inputs |
| 22 | |
| 23 | | Field | Source | Description | |
| 24 | |---|---|---| |
| 25 | | `meeting_notes` | user | Raw meeting notes text. | |
| 26 | | `default_due_date` | user | Optional fallback due date label. | |
| 27 | | `report_mode` | user | `off`, `local`, or `remote`; defaults to `off`. | |
| 28 | |
| 29 | ## Execution Pipeline |
| 30 | |
| 31 | | Step | Function | Purpose | Input | Output | |
| 32 | |---:|---|---|---|---| |
| 33 | | 1 | `load_meeting_notes` | Normalize raw notes and source metadata. | `meeting_notes` | `notes_context` | |
| 34 | | 2 | `extract_action_items` | Extract owners, actions, decisions, and open questions. | `notes_context`<br>`default_due_date` | `action_items`<br>`decisions`<br>`open_questions` | |
| 35 | | 3 | `draft_follow_up` | Draft a concise follow-up message. | `action_items`<br>`decisions`<br>`open_questions` | `follow_up_message` | |
| 36 | |
| 37 | ## Output Scope |
| 38 | |
| 39 | This example returns structured data and does not write project files. |