diff --git a/AGENTS.md b/AGENTS.md index d1aa98855..8c2835169 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -119,6 +119,7 @@ To see all development ports, refer to the index.html of `apps/dev-launchpad/pub - When adding code to the `private` part of the backend, put the actual implementation into `implementation` (if the submodule is checked out), and implement a simple fallback in `implementation-fallback` for self-hosters. `implementation.generated.ts` will automatically be generated, which you can then import from `index.ts`. (See the existing code as an example.) If the submodule isn't checked out, but you need to add code to the `private` part of the backend, let the user know. - Security-sensitive code on the backend that shouldn't be public should be in the `private` part of the backend. - When you fix some obscure bug, or otherwise make a small change that is the result of a complex thought, add a concise comment explaining the thought in detail. Your mental model should be that we want to keep track of all the tiny decisions that are not clearly visible in the code, such that when/if we rewrite the code in the future, we don't have to re-learn all the tiny decisions that were made iteratively. +- If you create any temporary files, always suffix them with `.untracked` or `.untracked.` so they don't get committed to Git. ### Code-related - Use ES6 maps instead of records wherever you can. diff --git a/packages/js/package.json b/packages/js/package.json index 327f4c184..db7a74532 100644 --- a/packages/js/package.json +++ b/packages/js/package.json @@ -2,7 +2,7 @@ "//": "THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY, INSTEAD EDIT THE CORRESPONDING FILE IN packages/template (FOR package.json FILES, PLEASE EDIT package-template.json)", "name": "@stackframe/js", "version": "2.8.109", - "repository": "https://github.com/hexclave/hexclave", + "repository": "https://github.com/hexclave/stack-auth", "sideEffects": false, "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/packages/react/package.json b/packages/react/package.json index 48cd01496..37c215188 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -2,7 +2,7 @@ "//": "THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY, INSTEAD EDIT THE CORRESPONDING FILE IN packages/template (FOR package.json FILES, PLEASE EDIT package-template.json)", "name": "@stackframe/react", "version": "2.8.109", - "repository": "https://github.com/hexclave/hexclave", + "repository": "https://github.com/hexclave/stack-auth", "sideEffects": false, "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/packages/stack/package.json b/packages/stack/package.json index b6d912877..a98d19bc1 100644 --- a/packages/stack/package.json +++ b/packages/stack/package.json @@ -2,7 +2,7 @@ "//": "THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY, INSTEAD EDIT THE CORRESPONDING FILE IN packages/template (FOR package.json FILES, PLEASE EDIT package-template.json)", "name": "@stackframe/stack", "version": "2.8.109", - "repository": "https://github.com/hexclave/hexclave", + "repository": "https://github.com/hexclave/stack-auth", "sideEffects": false, "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/packages/tanstack-start/package.json b/packages/tanstack-start/package.json index 946d9f805..8a86175f1 100644 --- a/packages/tanstack-start/package.json +++ b/packages/tanstack-start/package.json @@ -2,7 +2,7 @@ "//": "THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY, INSTEAD EDIT THE CORRESPONDING FILE IN packages/template (FOR package.json FILES, PLEASE EDIT package-template.json)", "name": "@stackframe/tanstack-start", "version": "2.8.109", - "repository": "https://github.com/hexclave/hexclave", + "repository": "https://github.com/hexclave/stack-auth", "sideEffects": false, "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/packages/template/package.json b/packages/template/package.json index 9b9f1f373..b57b69e13 100644 --- a/packages/template/package.json +++ b/packages/template/package.json @@ -3,7 +3,7 @@ "name": "@stackframe/template", "private": true, "version": "2.8.109", - "repository": "https://github.com/hexclave/hexclave", + "repository": "https://github.com/hexclave/stack-auth", "sideEffects": false, "main": "./dist/index.js", "types": "./dist/index.d.ts",