mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
Implement comprehensive artifact tracking to record all file modifications made by the AI agent during conversations. Add artifact persistence, garbage collection, and UI updates with new "Discuss" button styling.
10 lines
No EOL
451 B
TypeScript
10 lines
No EOL
451 B
TypeScript
export enum Path {
|
|
Root = "/",
|
|
VaultkeeperAIDir = "Vaultkeeper AI",
|
|
Conversations = `${Path.VaultkeeperAIDir}/Conversations`,
|
|
Attachments = `${Path.Conversations}/Attachments`,
|
|
Artifacts = `${Path.Conversations}/Artifacts`,
|
|
UserInstructions = `${Path.VaultkeeperAIDir}/User Instructions`,
|
|
ExampleUserInstructions = `${Path.UserInstructions}/EXAMPLE_INSTRUCTIONS.md`,
|
|
Memories = `${Path.VaultkeeperAIDir}/Memories.md`
|
|
}; |