add-event-type
Installation
SKILL.md
Add Event Type
Instructions
-
Read current event types in
frontend/src/App.tsx:- Find the
EventTypeunion type definition - Review existing block components (UserMessageBlock, PlanBlock, TodoBlock, etc.)
- Find the
-
Define the new event type interface:
type NewEventType = { type: 'new_type'; // Add required fields }; -
Add to EventType union:
type EventType = UserMessage | Plan | Todo | ... | NewEventType;