save_knowledge
Persist useful discoveries about database schema, file structures, and query patterns for future reference.
Instructions
Save learned information about the Universe database.
Use this to persist useful discoveries about the database schema, file structures, query patterns, and data meanings. This information will be available in future conversations.
Good things to save:
File purposes (e.g., "AR-CUST contains customer master records")
Field meanings (e.g., "In CUSTOMERS, field 1 is name, field 5 is phone")
Working query patterns that produced good results
Relationships between files
Data format notes (date formats, codes, etc.)
Args: topic: A short descriptive name for this knowledge (e.g., "CUSTOMERS file", "Invoice queries", "Date formats") content: The knowledge to save. Use markdown formatting. append: If True, add to existing topic. If False, replace it.
Returns: Status of the save operation.
Examples: save_knowledge("AR-CUST file", "Customer master file. Key is customer number.") save_knowledge("Date formats", "Dates stored as internal format. Use D2/ conversion.")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| topic | Yes | ||
| append | No | ||
| content | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||