Skip to content

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 agents folder 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 guidance
  • agents/billing.md - billing and Stripe context
  • agents/workspaces.md - workspace behavior and limits
  • agents/multi-tenancy.md - tenancy behavior and expectations
  • agents/testing.md - testing expectations and flows

Use these files as the first context source when asking an AI assistant to implement or refactor features.

  1. Open relevant agent guidance files before prompting.
  2. Ask AI to follow existing conventions and avoid introducing new architecture unless necessary.
  3. Request small, reviewable changes per prompt.
  4. Validate with:
    • php artisan test
    • npm run lint
    • npm run types
  5. Rebuild frontend assets when needed (npm run build for 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.