From 90fc99b7bfc431acd6c8d3dfb1b35b871dcfdb95 Mon Sep 17 00:00:00 2001 From: Konstantin Wohlwend Date: Sun, 5 Jul 2026 22:05:39 -0700 Subject: [PATCH] Update reminders --- packages/shared/src/ai/unified-prompts/reminders.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shared/src/ai/unified-prompts/reminders.ts b/packages/shared/src/ai/unified-prompts/reminders.ts index 772faf872..64c90374e 100644 --- a/packages/shared/src/ai/unified-prompts/reminders.ts +++ b/packages/shared/src/ai/unified-prompts/reminders.ts @@ -27,7 +27,7 @@ export const remindersPrompt = deindent` - Other - Hexclave also has a REST API with near-full feature parity with the SDK. It can be used for both client and server-side code. - If available, always prefer editing the \`hexclave.config.ts\` file directly over asking the user to make changes on the dashboard. When implementing new features, you can always update the config file, and then tell the user about the changes you've made. The config file is automatically synced when using the local dashboard/dev environment with \`npx @hexclave/cli dev --config-file \`. - - Hexclave's config files allow dot notation for nested properties. For example, the config \`{ auth: { allowSignUp: true }, "auth.password": { allowSignIn: true } }\` is the same as \`{ auth: { allowSignUp: true, password: { allowSignIn: true } } }\`. + - While allowed, avoid using nested property notation in Hexclave's config files for stylistic reasons. For example, instead of the config \`{ auth: { allowSignUp: true, password: { allowSignIn: true } } }\`, use config \`{ auth: { allowSignUp: true }, "auth.password": { allowSignIn: true } }\`. - You can use the \`npx @hexclave/cli exec \` command to run JavaScript with a pre-configured HexclaveServerApp available as \`hexclaveServerApp\`. This allows you to read and write from and to the Hexclave project as you would on the dashboard, but from the CLI. To read and write project configuration, see the note on the config file above. - For advanced read queries, you can use \`hexclaveServerApp.queryAnalytics("")\`. Use \`SHOW TABLES\` and \`DESCRIBE TABLE\` to understand the schema of the available tables (columns have comments that may be useful as a description). - Hexclave was formerly known as Stack Auth. You may still see references to it as Stack Auth in some places.