Appearance
AI Coders
SaasForgeKit is prepared for AI-assisted development workflows (Cursor, Claude Code, and similar tooling).
Why this starter kit is AI-friendly
- Laravel Boost is installed (
laravel/boost) for Laravel-focused agent workflows. - The project includes an
agentsfolder with domain knowledge and implementation guidance. - The app structure is modular and feature-oriented, which makes AI context retrieval and targeted edits easier.
Key project files for AI assistants
In the SaasForgeKit project root:
agents/AGENTS.md- global agent rules and coding guidanceagents/billing.md- billing and Stripe contextagents/workspaces.md- workspace behavior and limitsagents/multi-tenancy.md- tenancy behavior and expectationsagents/testing.md- testing expectations and flows
Use these files as the first context source when asking an AI assistant to implement or refactor features.
Recommended AI workflow
- Open relevant agent guidance files before prompting.
- Ask AI to follow existing conventions and avoid introducing new architecture unless necessary.
- Request small, reviewable changes per prompt.
- Validate with:
php artisan testnpm run lintnpm run types
- Rebuild frontend assets when needed (
npm run buildfor production scenarios).
Prompting tips for better results
- Reference exact feature area (for example: billing, social auth, workspace invitations).
- Include expected behavior and edge cases.
- Ask AI to preserve existing route names, database structure, and coding style.
- Ask for tests when behavior changes.
Notes
- AI tools accelerate delivery, but do not replace code review and runtime validation.
- Keep secrets out of prompts and never paste private keys/tokens into AI chats.