43 lines
2.5 KiB
Markdown
43 lines
2.5 KiB
Markdown
# Documentation Index
|
|
|
|
This file contains a complete list of all documentation in this project.
|
|
|
|
## Documentation Files
|
|
|
|
### Root Level
|
|
|
|
- `docs/index.md` - This file; master index of all project documentation
|
|
- `docs/technical-requirements.md` - Technical requirements for the questionnaire system
|
|
- `docs/flow.md` - Mermaid flowchart of the two-stage Go/No Go process (pre-screening → category questionnaire)
|
|
- `docs/implementation-plan.md` - Step-by-step implementation plan from bare install to production-ready (14 steps with status tracking)
|
|
|
|
### Frontend
|
|
|
|
- `docs/theming-templating-vue.md` - Design tokens, Tailwind config, layout, shared Vue components, icon and scoring color standards
|
|
|
|
### Agents
|
|
|
|
- `docs/agents/code-style-reviewer.md` - Project-specific notes for the code style review agent
|
|
- `docs/agents/cypress-code-writer.md` - Project-specific notes for the Cypress E2E test writer agent
|
|
- `docs/agents/docs-writer.md` - Project-specific notes for the documentation writer agent
|
|
- `docs/agents/laravel-blade-code-writer.md` - Project-specific notes for the Blade template agent
|
|
- `docs/agents/laravel-config-code-writer.md` - Project-specific notes for the config management agent
|
|
- `docs/agents/laravel-nova-code-writer.md` - Project-specific notes for the Nova resource agent
|
|
- `docs/agents/laravel-php-code-writer.md` - Project-specific notes for the Laravel PHP code agent
|
|
- `docs/agents/phpunit-code-writer.md` - Project-specific notes for the PHPUnit test agent
|
|
- `docs/agents/vue-code-writer.md` - Project-specific notes for the Vue.js component agent
|
|
|
|
## Available Sub-Agents
|
|
|
|
These are the sub-agents available globally that can be used in this project:
|
|
|
|
- `code-style-reviewer` - Reviews code against project standards including Laravel Pint, strict types, and naming conventions
|
|
- `cypress-code-writer` - Writes, updates, and debugs Cypress E2E tests for user workflows
|
|
- `docs-writer` - Creates and updates documentation files and maintains the documentation index
|
|
- `laravel-blade-code-writer` - Creates and modifies Laravel Blade templates and views
|
|
- `laravel-config-code-writer` - Manages database-driven config groups, fields, and the Config Service
|
|
- `laravel-nova-code-writer` - Creates and modifies Laravel Nova 5 resources, actions, metrics, and dashboards
|
|
- `laravel-php-code-writer` - Writes and refactors PHP code (controllers, models, services, migrations) except Nova resources
|
|
- `phpunit-code-writer` - Creates, runs, and validates PHPUnit tests with mocking support
|
|
- `vue-code-writer` - Builds Vue.js components in the Laravel + Inertia.js stack
|