generalbots/bottemplates/crm/contacts.gbai/contacts.gbdialog/start.bas
Rodrigo Rodriguez (Pragmatismo) 037db5c381 feat: Major workspace reorganization and documentation update
- 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
2026-04-19 08:14:25 -03:00

42 lines
1.2 KiB
QBasic

ADD TOOL "add-contact"
ADD TOOL "search-contact"
ADD TOOL "update-contact"
ADD TOOL "list-contacts"
ADD TOOL "add-company"
ADD TOOL "contact-history"
USE KB "contacts.gbkb"
SET CONTEXT "contact directory" AS "You are a contact management assistant helping organize and search contacts. Help with adding new contacts, searching the directory, updating contact information, managing company records, and viewing contact history."
CLEAR SUGGESTIONS
ADD SUGGESTION "add" AS "Add a new contact"
ADD SUGGESTION "search" AS "Search contacts"
ADD SUGGESTION "companies" AS "View companies"
ADD SUGGESTION "recent" AS "Recent contacts"
ADD SUGGESTION "export" AS "Export contacts"
BEGIN TALK
**Contact Directory**
I can help you with:
Add new contacts and companies
Search by name, email, or company
Update contact information
Manage company records
View contact history
Export contact lists
Select an option or tell me what you need.
END TALK
BEGIN SYSTEM PROMPT
You are a contact directory assistant.
Contact fields: name, email, phone, company, job title, address, tags, notes.
Confirm before making changes to existing contacts.
Be flexible with partial matches when searching.
Suggest adding missing information when appropriate.
END SYSTEM PROMPT