| name | GroundEffect |
| description | Use this skill when the user asks about email, calendar, or Gmail/Google Calendar management via GroundEffect CLI. Triggers include "search my email", "list recent emails", "check my calendar", "what's on my calendar", "show my meetings", "calendar tomorrow", "calendar next week", "create a calendar event", "manage groundeffect accounts", "sync status", "start the daemon", "groundeffect", "groundeffect command", "draft email", "save draft", "save as draft", "create draft", "send email". |
| version | 1.0.0 |
GroundEffect CLI
GroundEffect provides local-first email and calendar management with semantic search capabilities. All data is synced locally and searchable offline.
Quick Reference
Email Commands
groundeffect email search "query"
groundeffect email list
groundeffect email show <id>
groundeffect email thread <thread_id>
groundeffect email send --to X --subject "X" --body "X"
groundeffect email send --to X --subject "X" --body "X" --html
groundeffect email send --to X --subject "X" --body "X" --save-as-draft
groundeffect email attachment <email_id> <filename>
groundeffect email folders
Draft Commands
groundeffect email draft create --from X --to X --subject "X" --body "X"
groundeffect email draft create --from X --to X --subject "X" --body "X" --reply-to <email_id>
groundeffect email draft list --from X
groundeffect email draft show --from X --draft-id <id>
groundeffect email draft update --from X --draft-id <id> --body "X"
groundeffect email draft send --from X --draft-id <id>
groundeffect email draft delete --from X --draft-id <id>
Calendar Commands
groundeffect calendar events
groundeffect calendar events --from 2026-01-07 --to 2026-01-08 --human
groundeffect calendar search "query"
groundeffect calendar list
groundeffect calendar show <event_id>
groundeffect calendar create --summary "X" --start "ISO" --end "ISO"
Calendar Events vs Calendar Search:
- Use
calendar events when the user asks "what's on my calendar tomorrow/next week" (date-based, no query)
- Use
calendar search when the user asks "find meetings about project X" (semantic search)
Account Commands
groundeffect account list
groundeffect account show <email|alias>
groundeffect account add
groundeffect account delete <email|alias>
groundeffect account configure <email|alias>
Sync Commands
groundeffect sync status
groundeffect sync reset <email|alias>
groundeffect sync extend <email|alias>
groundeffect sync download-attachments <email|alias>
Daemon Commands
groundeffect daemon install
groundeffect daemon uninstall
groundeffect daemon status
groundeffect daemon restart
Config Commands
groundeffect config settings
groundeffect config add-permissions
groundeffect config remove-permissions
Important Guidelines
DRAFTS: When the user asks to "save as draft", "draft an email", or "save this draft", ALWAYS use the groundeffect email draft create command to save it to Gmail drafts. Do NOT save email drafts to markdown files - use Gmail's native draft system so the user can access, edit, and send drafts from any device.
SENDING: When composing an email, use groundeffect email send --save-as-draft to save to Gmail drafts, or add --confirm to send immediately. Without these flags, the command returns a preview.
Usage Notes
- CLI binary:
groundeffect
- Output format: JSON by default, use
--human for readable output
- Date format: Use YYYY-MM-DD for date parameters
- Account references: Use email address or alias interchangeably
- Help: Add
--help to any command for detailed options
Detailed Documentation
For complete command documentation with all flags and examples, read the appropriate reference file:
- Email:
references/email-commands.md - search, list, show, thread, send (HTML support), attachment, folders, drafts
- Calendar:
references/calendar-commands.md - search, list, show, create
- Accounts:
references/account-commands.md - list, show, add, delete, configure
- Sync:
references/sync-commands.md - status, reset, extend, download-attachments
- Daemon:
references/daemon-commands.md - install, uninstall, status, restart
- Config:
references/config-commands.md - settings, add-permissions, remove-permissions
Common Workflows
See examples/common-workflows.md for step-by-step usage patterns.