feat(#24): implement mosaic-plugin-calendar skill

This commit is contained in:
Jason Woltje
2026-01-29 21:11:50 -06:00
parent 9de0b2f92f
commit 93f6c87113
3 changed files with 479 additions and 0 deletions

35
packages/skills/README.md Normal file
View File

@@ -0,0 +1,35 @@
# Mosaic Stack Skills
This directory contains Clawdbot skills for integrating with Mosaic Stack APIs.
## Skills
### Calendar (`calendar/`)
Integration with Mosaic Stack's Events API for calendar management.
**Features:**
- Create events with rich metadata
- Query events with flexible filtering
- Update and reschedule events
- Delete/cancel events
- Natural language interaction support
**Usage:** See `calendar/SKILL.md` for complete documentation.
## Skill Structure
Each skill follows Clawdbot skill conventions:
```
skill-name/
├── SKILL.md # Skill documentation and metadata
└── scripts/ # Executable tools for skill functionality
```
## Adding New Skills
1. Create a new directory under `packages/skills/`
2. Add `SKILL.md` with YAML frontmatter and documentation
3. Add any necessary scripts or resources
4. Update this README