From fd91ffe6e3e5db6d6f5b2ff6472a3cf71bb9aa5f Mon Sep 17 00:00:00 2001 From: Ivan Skvortsov Date: Mon, 18 May 2026 13:20:03 +0200 Subject: [PATCH 1/3] feat(frontend): pre-fill credentials and disable signup in demo mode --- .../src/modules/auth/components/LoginForm.vue | 8 +++++++- frontend/src/modules/auth/router.ts | 17 ++++++++++++----- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/frontend/src/modules/auth/components/LoginForm.vue b/frontend/src/modules/auth/components/LoginForm.vue index 81b5ecf..74ce968 100644 --- a/frontend/src/modules/auth/components/LoginForm.vue +++ b/frontend/src/modules/auth/components/LoginForm.vue @@ -24,6 +24,12 @@ const redirect = route.query.redirect as string | undefined const { handleSubmit } = useForm({ validationSchema: toTypedSchema(loginSchema), + initialValues: isDemo + ? { + email: 'demo@evsy.dev', + password: 'bestructured', + } + : undefined, }) const { mutate: runLogin, isPending: isLoading } = useMutation({ @@ -91,7 +97,7 @@ const onSubmit = handleSubmit(values => runLogin(values)) -
+
Don’t have an account? Date: Mon, 18 May 2026 13:23:05 +0200 Subject: [PATCH 2/3] Fix in AI.md --- AI.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AI.md b/AI.md index aaf0356..65d0319 100644 --- a/AI.md +++ b/AI.md @@ -9,7 +9,7 @@ ## 🚦 Strict Workflow Protocol Before modifying, generating, or deleting any files, the agent MUST follow these steps in exact order: 1. **Plan First:** Present a comprehensive architectural review, design summary, or pseudo-code strategy. Wait for explicit user greenlight. -2. **Git Branching:** Checkout to a distinct feature or refactor branch from `main` using the Conventional Commits specification (e.g., `feat(backend): ...`, `refactor(frontend): ...`). +2. **Git Branching:** Checkout to a distinct feature or refactor branch from `main` using the Conventional Commits specification (e.g., `feat(backend)/...`, `refactor(frontend)/...`). 3. **Execution:** Apply the changes within the tightly scoped workspace directory. 4. **Finalize:** Upon user validation, stage and commit changes with concise, structured commit messages. 5. **Documentation:** Auto-generate a pull request summary titled `pr_description.md` in the project root adhering to the workspace markdown template. From f391ca83bfb8c01f4cb531716e88b469d1bffdb8 Mon Sep 17 00:00:00 2001 From: Ivan Skvortsov Date: Mon, 18 May 2026 13:24:58 +0200 Subject: [PATCH 3/3] .gitignore addition --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e768b80..88d05b5 100644 --- a/.gitignore +++ b/.gitignore @@ -18,4 +18,7 @@ node_modules/ dist/ # Auxiliary scripts -reset_demo.sh \ No newline at end of file +reset_demo.sh + +# LLM generated files +pr_description.md \ No newline at end of file