Create a new meeting note in the Obsidian vault.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add DavidROliverBA/ArchitectKB --skill meeting --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Meeting?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/davidroliverba-meeting)More formats (shields.io, HTML) on the badges page.
---
context: fork
model: haiku
---
# /meeting
Create a new meeting note in the Obsidian vault.
## Usage
```
/meeting <title>
/meeting <title> with <attendees>
/meeting <title> for <project>
```
## Examples
```
/meeting Weekly Sync
/meeting MyDataIntegration Review with Johann, Pat
/meeting NewProductLine Update for Project - 777-X EIS Programme
```
## Instructions
1. Parse the command for:
- **title**: The meeting name (required)
- **attendees**: People mentioned after "with" (optional)
- **project**: Project mentioned after "for" (optional)
2. Generate filename: `Meeting - YYYY-MM-DD {{title}}.md`
- Use today's date
- Sanitize title (remove special characters)
3. Create the meeting note in the **+Meetings/** folder with this structure:
```markdown
---
type: Meeting
title: { { title } }
created: { { DATE } }
modified: { { DATE } }
tags: []
date: "{{DATE}}"
project: { { project_link or null } }
attendees: [{ { attendee_links } }]
summary:
collections: { { collections or null } }
---
# {{title}}
## Attendees
{{attendee_list}}
## Agenda
1.
## Discussion Notes
## Action Items
- [ ]
## Decisions Made
-
## Follow-up
-
```
4. For attendees:
- Format as wiki-links: `[[Name]]`
- In frontmatter: `["[[Jane Doe]]", "[[Johann Fender]]"]`
- In body: bullet list with links
5. For project:
- Format as wiki-link: `"[[Project - MyDataIntegration]]"`
- Match against existing project names if partial match given
6. After creating, confirm and show the file path
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!