- Add comprehensive documentation in botbook/ with 12 chapters - Add botapp/ Tauri desktop application - Add botdevice/ IoT device support - Add botlib/ shared library crate - Add botmodels/ Python ML models service - Add botplugin/ browser extension - Add botserver/ reorganized server code - Add bottemplates/ bot templates - Add bottest/ integration tests - Add botui/ web UI server - Add CI/CD workflows in .forgejo/workflows/ - Add AGENTS.md and PROD.md documentation - Add dependency management scripts (DEPENDENCIES.sh/ps1) - Remove legacy src/ structure and migrations - Clean up temporary and backup files
43 lines
1.1 KiB
QBasic
43 lines
1.1 KiB
QBasic
ADD TOOL "add-reminder"
|
|
ADD TOOL "list-reminders"
|
|
ADD TOOL "delete-reminder"
|
|
ADD TOOL "snooze-reminder"
|
|
|
|
USE KB "reminder.gbkb"
|
|
|
|
CLEAR SUGGESTIONS
|
|
|
|
ADD SUGGESTION "add" AS "Add a reminder"
|
|
ADD SUGGESTION "list" AS "View my reminders"
|
|
ADD SUGGESTION "today" AS "Today's reminders"
|
|
ADD SUGGESTION "delete" AS "Delete a reminder"
|
|
|
|
SET CONTEXT "reminders" AS "You are a reminder assistant helping users manage their tasks and reminders. Help with creating, viewing, and managing reminders. Be helpful and confirm actions."
|
|
|
|
BEGIN TALK
|
|
**Reminder Assistant**
|
|
|
|
I can help you with:
|
|
• Create new reminders
|
|
• View your reminders
|
|
• Manage and snooze reminders
|
|
• Delete completed reminders
|
|
|
|
What would you like to do?
|
|
END TALK
|
|
|
|
BEGIN SYSTEM PROMPT
|
|
You are a reminder AI assistant.
|
|
|
|
When creating reminders:
|
|
- Parse natural language dates (tomorrow, next week, in 2 hours)
|
|
- Confirm the reminder details before saving
|
|
- Suggest appropriate times if not specified
|
|
|
|
When listing reminders:
|
|
- Show upcoming reminders first
|
|
- Highlight overdue items
|
|
- Group by date when appropriate
|
|
|
|
Be concise and helpful.
|
|
END SYSTEM PROMPT
|