Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin olbrasoft-claudecodeHow this command is triggered — by the user, by Claude, or both
Slash command
/notify:notifyThe summary Claude sees in its command listing — used to decide when to auto-load this command
Send a notification to VirtualAssistant database about your current work.
The notification should:
- Describe what you're doing (starting work, progress update, completion)
- Be written in Czech language
- Be concise (1-2 sentences)
- Include issue number if working on a specific issue
Examples:
- "Zahajuji praci na issue #255"
- "Vytvoril jsem Notification entitu"
- "Dokoncil jsem issue #255"
After writing the notification text, call the VirtualAssistant API:
- Endpoint: `http://localhost:5055/api/notifications`
- Method: POST
- Headers: `Content-Type: application/json`
- Body: `{"agent.../issue-commentAdds structured comments to GitHub or Gitea issues using templates for progress updates, feedback requests, blockers, or custom content.
/textmeEnables 'text me' mode for iMessage notifications on task completion, input needs, or blocks. Also supports off and status subcommands.
/jira-commentAdds AI-suggested comments to external Jira issues (PROJ-###) by analyzing local WORKLOG, git commits, and existing comments. Previews before posting.
/write-updateWrite effective status updates that report progress and surface issues.
/notifySends a notification to the user via fulcrum notify with required title and message body arguments.
/notifyBuilds multi-channel notification systems for push (FCM/APNs/OneSignal), SMS (Twilio), email, in-app (WebSocket), and webhooks with preferences, quiet hours, digests, and delivery tracking.
Share bugs, ideas, or general feedback.
Send a notification to VirtualAssistant database about your current work.
The notification should:
Examples:
After writing the notification text, call the VirtualAssistant API:
http://localhost:5055/api/notificationsContent-Type: application/json{"agentId": "Claude Code", "text": "<your notification text>"}Use curl to make the HTTP request:
curl -X POST http://localhost:5055/api/notifications \
-H "Content-Type: application/json" \
-d '{"agentId": "Claude Code", "text": "<your notification text>"}'