Files
stack/packages/skills
Jason Woltje ba9c272c20 fix: address code review feedback
- Fix API endpoint paths: /events (not /api/events) to match actual NestJS routes
- Convert script to ES modules (import/export) to match package.json type: module
- Add detailed error messages for common HTTP status codes (401, 403, 404, 400)
- Improve error handling with actionable guidance
2026-01-29 21:23:35 -06:00
..

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