- Update CLAUDE.md to reference .ai/ directory as single source of truth
- Move documentation structure to organized .ai/ directory with core/, development/, patterns/, meta/ subdirectories
- Update .ai/README.md with correct path references
- Update .ai/meta/maintaining-docs.md to reflect new structure
- Consolidate sync-guide.md with detailed synchronization rules
- Fix cross-reference in frontend-patterns.md
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
8.6 KiB
AI Instructions Synchronization Guide
This document explains how AI instructions are organized and synchronized across different AI tools used with Coolify.
Overview
Coolify maintains AI instructions with a single source of truth approach:
- CLAUDE.md - Main entry point for Claude Code (references
.ai/directory) - .cursor/rules/coolify-ai-docs.mdc - Master reference file for Cursor IDE (references
.ai/directory) - .ai/ - Single source of truth containing all detailed documentation
All AI tools (Claude Code, Cursor IDE, etc.) reference the same .ai/ directory to ensure consistency.
Structure
CLAUDE.md (Root Directory)
- Purpose: Entry point for Claude Code with quick-reference guide
- Format: Single markdown file
- Includes:
- Quick-reference development commands
- High-level architecture overview
- Essential patterns and guidelines
- References to detailed
.ai/documentation
.cursor/rules/coolify-ai-docs.mdc
- Purpose: Master reference file for Cursor IDE
- Format: Single .mdc file with frontmatter
- Content: Quick decision tree and references to
.ai/directory - Note: Replaces all previous topic-specific .mdc files
.ai/ Directory (Single Source of Truth)
- Purpose: All detailed, topic-specific documentation
- Format: Organized markdown files by category
- Structure:
.ai/ ├── README.md # Navigation hub ├── core/ # Project information │ ├── technology-stack.md # Version numbers (SINGLE SOURCE OF TRUTH) │ ├── project-overview.md │ ├── application-architecture.md │ └── deployment-architecture.md ├── development/ # Development practices │ ├── development-workflow.md │ ├── testing-patterns.md │ └── laravel-boost.md ├── patterns/ # Code patterns │ ├── database-patterns.md │ ├── frontend-patterns.md │ ├── security-patterns.md │ ├── form-components.md │ └── api-and-routing.md └── meta/ # Documentation guides ├── maintaining-docs.md └── sync-guide.md (this file) - Used by: All AI tools through CLAUDE.md or coolify-ai-docs.mdc
Cross-References
All systems reference the .ai/ directory as the source of truth:
- CLAUDE.md → references
.ai/files for detailed documentation - .cursor/rules/coolify-ai-docs.mdc → references
.ai/files for detailed documentation - .ai/README.md → provides navigation to all documentation
Maintaining Consistency
1. Core Principles (MUST be consistent)
These are defined ONCE in .ai/core/technology-stack.md:
- Laravel version (currently Laravel 12.4.1)
- PHP version (8.4.7)
- All package versions (Livewire 3.5.20, Tailwind 4.1.4, etc.)
Exception: CLAUDE.md is permitted to show essential version numbers as a quick reference for convenience. These must stay synchronized with technology-stack.md. When updating versions, update both locations.
Other critical patterns defined in .ai/:
- Testing execution rules (Docker for Feature tests, mocking for Unit tests)
- Security patterns and authorization requirements
- Code style requirements (Pint, PSR-12)
2. Where to Make Changes
For version numbers (Laravel, PHP, packages):
- Update
.ai/core/technology-stack.md(single source of truth) - Update CLAUDE.md quick reference section (essential versions only)
- Verify both files stay synchronized
- Never duplicate version numbers in other locations
For workflow changes (how to run commands, development setup):
- Update
.ai/development/development-workflow.md - Update quick reference in CLAUDE.md if needed
- Verify
.cursor/rules/coolify-ai-docs.mdcreferences are correct
For architectural patterns (how code should be structured):
- Update appropriate file in
.ai/core/ - Add cross-references from related docs
- Update CLAUDE.md if it needs to highlight this pattern
For code patterns (how to write code):
- Update appropriate file in
.ai/patterns/ - Add examples from real codebase
- Cross-reference from related docs
For testing patterns:
- Update
.ai/development/testing-patterns.md - Ensure CLAUDE.md testing section references it
3. Update Checklist
When making significant changes:
- Identify if change affects core principles (version numbers, critical patterns)
- Update primary location in
.ai/directory - Check if CLAUDE.md needs quick-reference update
- Verify
.cursor/rules/coolify-ai-docs.mdcreferences are still accurate - Update cross-references in related
.ai/files - Verify all relative paths work correctly
- Test links in markdown files
- Run:
./vendor/bin/pinton modified files (if applicable)
4. Common Inconsistencies to Watch
- Version numbers: Should ONLY exist in
.ai/core/technology-stack.md - Testing instructions: Docker execution requirements must be consistent
- File paths: Ensure relative paths work from their location
- Command syntax: Docker commands, artisan commands must be accurate
- Cross-references: Links must point to current file locations
File Organization
/
├── CLAUDE.md # Claude Code entry point
├── .AI_INSTRUCTIONS_SYNC.md # Redirect to this file
├── .cursor/
│ └── rules/
│ └── coolify-ai-docs.mdc # Cursor IDE master reference
└── .ai/ # SINGLE SOURCE OF TRUTH
├── README.md # Navigation hub
├── core/ # Project information
├── development/ # Development practices
├── patterns/ # Code patterns
└── meta/ # Documentation guides
Recent Updates
2025-11-18 - Documentation Consolidation
- ✅ Consolidated all documentation into
.ai/directory - ✅ Created single source of truth for version numbers
- ✅ Reduced CLAUDE.md from 719 to 319 lines
- ✅ Replaced 11 .cursor/rules/*.mdc files with single coolify-ai-docs.mdc
- ✅ Organized by topic: core/, development/, patterns/, meta/
- ✅ Standardized version numbers (Laravel 12.4.1, PHP 8.4.7, Tailwind 4.1.4)
- ✅ Created comprehensive navigation with .ai/README.md
2025-10-07
- ✅ Added cross-references between CLAUDE.md and .cursor/rules/
- ✅ Synchronized Laravel version (12) across all files
- ✅ Added comprehensive testing execution rules (Docker for Feature tests)
- ✅ Added test design philosophy (prefer mocking over database)
- ✅ Fixed inconsistencies in testing documentation
Maintenance Commands
# Check for version inconsistencies (should only be in technology-stack.md)
# Note: CLAUDE.md is allowed to show quick reference versions
grep -r "Laravel 12" .ai/ CLAUDE.md .cursor/rules/coolify-ai-docs.mdc
grep -r "PHP 8.4" .ai/ CLAUDE.md .cursor/rules/coolify-ai-docs.mdc
# Check for broken cross-references to old .mdc files
grep -r "\.cursor/rules/.*\.mdc" .ai/ CLAUDE.md
# Format all documentation
./vendor/bin/pint CLAUDE.md .ai/**/*.md
# Search for specific patterns across all docs
grep -r "pattern_to_check" CLAUDE.md .ai/ .cursor/rules/
# Verify all markdown links work (from repository root)
find .ai -name "*.md" -exec grep -H "\[.*\](.*)" {} \;
Contributing
When contributing documentation:
- Check
.ai/directory for existing documentation - Update
.ai/files - this is the single source of truth - Use cross-references - never duplicate content
- Update CLAUDE.md if adding critical quick-reference information
- Verify
.cursor/rules/coolify-ai-docs.mdcstill references correctly - Test all links work from their respective locations
- Update this sync-guide.md if changing organizational structure
- Verify consistency before submitting PR
Questions?
If unsure about where to document something:
- Version numbers →
.ai/core/technology-stack.md(ONLY location) - Quick reference / commands → CLAUDE.md +
.ai/development/development-workflow.md - Detailed patterns / examples →
.ai/patterns/[topic].md - Architecture / concepts →
.ai/core/[topic].md - Development practices →
.ai/development/[topic].md - Documentation guides →
.ai/meta/[topic].md
Golden Rule: Each piece of information exists in ONE location in .ai/, other files reference it.
When in doubt, prefer detailed documentation in .ai/ and lightweight references in CLAUDE.md and coolify-ai-docs.mdc.