From b4569ec08de3d9c8a6201bd260f5b14de3dcfbab Mon Sep 17 00:00:00 2001 From: roble Date: Mon, 8 Jun 2026 20:59:21 +0100 Subject: [PATCH 1/4] feat: update agent prompt for clarity and detail in instructions --- resources/js/vue/pages/sections/HeroSection.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/vue/pages/sections/HeroSection.vue b/resources/js/vue/pages/sections/HeroSection.vue index 1831b9c..50cfe77 100644 --- a/resources/js/vue/pages/sections/HeroSection.vue +++ b/resources/js/vue/pages/sections/HeroSection.vue @@ -13,7 +13,7 @@ const tabs = [ const CLI_COMMAND = 'laravel new --using=saucebase/saucebase --phpunit --boost'; const AGENT_PROMPT = - 'I\'m building a SaaS with Saucebase.\n\nFetch https://saucebase-dev.github.io/docs/for-agents.md and treat it as the source of truth for this project.'; + 'I\'m building a new application with Saucebase — a modular Laravel SaaS starter kit. \n\n Fetch and follow the instructions from https://saucebase-dev.github.io/docs/for-agents.md Treat the returned Markdown as the source of truth for how to install, set up, and build with Saucebase in this session.'; const currentIcon = computed(() => (tab.value === 'cli' ? Terminal : Bot)); const currentText = computed(() => (tab.value === 'cli' ? CLI_COMMAND : AGENT_PROMPT)); From cc52456becf83bd9b54e857b5e0b2ae9549e9bd8 Mon Sep 17 00:00:00 2001 From: roble Date: Tue, 16 Jun 2026 20:53:22 +0100 Subject: [PATCH 2/4] feat: refactor ModulesSection to use useModuleList for module management --- resources/js/vue/pages/sections/ModulesSection.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/resources/js/vue/pages/sections/ModulesSection.vue b/resources/js/vue/pages/sections/ModulesSection.vue index 3524825..43a3367 100644 --- a/resources/js/vue/pages/sections/ModulesSection.vue +++ b/resources/js/vue/pages/sections/ModulesSection.vue @@ -1,13 +1,12 @@