cc-codeconductor 0.2.10 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/README.md +5 -4
  2. package/dist/index.js +1636 -1078
  3. package/package.json +1 -1
  4. package/presets/agy/AGENTS.md +46 -2
  5. package/presets/claude/CLAUDE.md +62 -2
  6. package/presets/claude/skills/android/SKILL.md +119 -0
  7. package/presets/claude/skills/laravel-specialist/SKILL.md +264 -0
  8. package/presets/claude/skills/laravel-specialist/references/eloquent.md +351 -0
  9. package/presets/claude/skills/laravel-specialist/references/livewire.md +512 -0
  10. package/presets/claude/skills/laravel-specialist/references/queues.md +423 -0
  11. package/presets/claude/skills/laravel-specialist/references/routing.md +362 -0
  12. package/presets/claude/skills/laravel-specialist/references/testing.md +522 -0
  13. package/presets/claude/skills/php-pro/SKILL.md +208 -0
  14. package/presets/claude/skills/php-pro/references/async-patterns.md +412 -0
  15. package/presets/claude/skills/php-pro/references/laravel-patterns.md +377 -0
  16. package/presets/claude/skills/php-pro/references/modern-php-features.md +323 -0
  17. package/presets/claude/skills/php-pro/references/symfony-patterns.md +466 -0
  18. package/presets/claude/skills/php-pro/references/testing-quality.md +466 -0
  19. package/presets/codex/AGENTS.md +47 -2
  20. package/presets/codex/skills/android/SKILL.md +119 -0
  21. package/presets/codex/skills/laravel-specialist/SKILL.md +264 -0
  22. package/presets/codex/skills/laravel-specialist/references/eloquent.md +351 -0
  23. package/presets/codex/skills/laravel-specialist/references/livewire.md +512 -0
  24. package/presets/codex/skills/laravel-specialist/references/queues.md +423 -0
  25. package/presets/codex/skills/laravel-specialist/references/routing.md +362 -0
  26. package/presets/codex/skills/laravel-specialist/references/testing.md +522 -0
  27. package/presets/codex/skills/php-pro/SKILL.md +208 -0
  28. package/presets/codex/skills/php-pro/references/async-patterns.md +412 -0
  29. package/presets/codex/skills/php-pro/references/laravel-patterns.md +377 -0
  30. package/presets/codex/skills/php-pro/references/modern-php-features.md +323 -0
  31. package/presets/codex/skills/php-pro/references/symfony-patterns.md +466 -0
  32. package/presets/codex/skills/php-pro/references/testing-quality.md +466 -0
  33. package/presets/opencode/agents/implementer.md +2 -2
  34. package/presets/opencode/agents/orchestrator.md +132 -5
  35. package/presets/opencode/agents/reviewer.md +33 -0
  36. package/presets/opencode/prompts/v0.3.0/architect.md +221 -0
  37. package/presets/opencode/prompts/v0.3.0/docs.md +189 -0
  38. package/presets/opencode/prompts/v0.3.0/implementer.md +162 -0
  39. package/presets/opencode/prompts/v0.3.0/orchestrator.md +360 -0
  40. package/presets/opencode/prompts/v0.3.0/repo-explorer.md +110 -0
  41. package/presets/opencode/prompts/v0.3.0/reviewer.md +225 -0
  42. package/presets/opencode/prompts/v0.3.0/task-coach.md +155 -0
  43. package/presets/opencode/prompts/v0.3.0/tester.md +251 -0
  44. package/presets/opencode/skills/android/SKILL.md +119 -0
  45. package/presets/opencode/skills/laravel-specialist/SKILL.md +264 -0
  46. package/presets/opencode/skills/laravel-specialist/references/eloquent.md +351 -0
  47. package/presets/opencode/skills/laravel-specialist/references/livewire.md +512 -0
  48. package/presets/opencode/skills/laravel-specialist/references/queues.md +423 -0
  49. package/presets/opencode/skills/laravel-specialist/references/routing.md +362 -0
  50. package/presets/opencode/skills/laravel-specialist/references/testing.md +522 -0
  51. package/presets/opencode/skills/php-pro/SKILL.md +208 -0
  52. package/presets/opencode/skills/php-pro/references/async-patterns.md +412 -0
  53. package/presets/opencode/skills/php-pro/references/laravel-patterns.md +377 -0
  54. package/presets/opencode/skills/php-pro/references/modern-php-features.md +323 -0
  55. package/presets/opencode/skills/php-pro/references/symfony-patterns.md +466 -0
  56. package/presets/opencode/skills/php-pro/references/testing-quality.md +466 -0
  57. package/src/presets/manifests/agy.yml +3 -2
  58. package/src/presets/manifests/claude.yml +3 -2
  59. package/src/presets/manifests/codex.yml +3 -2
  60. package/src/presets/manifests/cursor.yml +3 -2
  61. package/src/presets/manifests/gemini.yml +3 -2
  62. package/src/presets/manifests/opencode.yml +3 -2
  63. package/src/presets/models/opencode.yml +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-codeconductor",
3
- "version": "0.2.10",
3
+ "version": "0.3.1",
4
4
  "description": "A multi-agent orchestration framework for AI-assisted software engineering workflows.",
5
5
  "keywords": [
6
6
  "ai",
@@ -6,6 +6,26 @@ This file configures CodeConductor for **Google Antigravity CLI (agy)** and Anti
6
6
 
7
7
  ---
8
8
 
9
+ ## Behavioral Discipline
10
+
11
+ These principles apply to **all agents** in every workflow. They reduce common
12
+ LLM coding mistakes and bias toward caution over speed.
13
+
14
+ 1. **Think Before Coding** — State assumptions explicitly. If uncertain, ask. If
15
+ multiple interpretations exist, present them — don't pick silently. If a
16
+ simpler approach exists, say so.
17
+ 2. **Simplicity First** — Minimum code that solves the problem. No features
18
+ beyond what was asked. No abstractions for single-use code. No speculative
19
+ "flexibility." Ask: "Would a senior engineer say this is overcomplicated?"
20
+ 3. **Surgical Changes** — Touch only what you must. Don't "improve" adjacent
21
+ code. Match existing style. Remove only what YOUR changes made unused. Every
22
+ changed line must trace directly to the user's request.
23
+ 4. **Goal-Driven Execution** — Transform tasks into verifiable goals with
24
+ success criteria. For multi-step tasks, state a plan with verification
25
+ checks. Loop until verified.
26
+
27
+ ---
28
+
9
29
  ## Workflow Contract
10
30
 
11
31
  Do not touch a single file until you understand the task contract.
@@ -101,8 +121,13 @@ When multiple signals apply, take the highest risk level. Do not average.
101
121
  1. Validate the Task Card before doing anything else.
102
122
  2. Classify the risk level using the table above.
103
123
  3. Select and document the agent route.
104
- 4. Surface blockers rather than working around them.
105
- 5. Declare completion only when all Deliverables are produced and verified.
124
+ 4. Enforce **Behavioral Discipline Gates**:
125
+ - **Think Before Coding Checkpoint**: Verify assumptions are explicitly documented before architect starts.
126
+ - **Simplicity Gate**: Review Technical Plan to ensure no speculative code or abstractions are planned.
127
+ - **Surgical Changes Audit**: Audit reviewer report and diff to verify only planned files were modified.
128
+ - **Goal-Driven Verification**: Confirm all acceptance criteria have passing tests.
129
+ 5. Surface blockers rather than working around them.
130
+ 6. Declare completion only when all Deliverables are produced and verified.
106
131
 
107
132
  **Task Card validation — required fields before routing:**
108
133
  - Title (short description, max 80 chars)
@@ -263,6 +288,10 @@ High-risk checkpoint: [yes | no — if yes, describe what triggers a stop]
263
288
  3. Read the target files.
264
289
  4. Verify tests pass before starting.
265
290
 
291
+ **Surgical Changes Rules:**
292
+ - Modify ONLY planned files. Do not improve adjacent code, comments, or formatting.
293
+ - Match existing style. Remove imports/variables/functions made unused by YOUR changes. Do not touch existing dead code.
294
+
266
295
  **Implementation Summary format:**
267
296
  ```markdown
268
297
  ## Implementation Summary
@@ -323,6 +352,10 @@ High-risk checkpoint: [yes | no — if yes, describe what triggers a stop]
323
352
 
324
353
  **Model:** `{{MODEL_GEMINI}}`
325
354
 
355
+ **Review Axes & Gates:**
356
+ - **Simplicity Gate**: Flag overcomplicated/speculative code. Ask: "Would a senior engineer say this is overbuilt?"
357
+ - **Surgical Changes**: Verify no adjacent or unrelated code was changed.
358
+
326
359
  **Review Report format:**
327
360
  ```markdown
328
361
  ## Review Report
@@ -351,4 +384,15 @@ High-risk checkpoint: [yes | no — if yes, describe what triggers a stop]
351
384
 
352
385
  **Model:** `{{MODEL_GEMINI}}`
353
386
 
387
+ ---
388
+
389
+ ## Loop Agent & Monorepos
390
+
391
+ ### Loop Agent Mode (Intense Workflows)
392
+ - If tests fail, run the cycle: Implementer (applies fix) -> Tester (verifies suite) up to 3 times.
393
+ - If still failing, stop and report back with findings.
394
+
395
+ ### Monorepo Workspaces
396
+ - Focus operations strictly within the specified sub-package or workspace directory in the Task Card scope. Do not modify files or run commands outside this package directory.
397
+
354
398
  <!-- CODECONDUCTOR:END managed -->
@@ -6,6 +6,24 @@ This is a framework, not a prompt collection. When you receive a `/command`, you
6
6
  orchestrate a structured multi-agent workflow. Each step is executed by a
7
7
  specialized role. Roles do not overlap. Steps are not skipped.
8
8
 
9
+ ## Behavioral Discipline
10
+
11
+ These principles apply to **all agents** in every workflow. They reduce common
12
+ LLM coding mistakes and bias toward caution over speed.
13
+
14
+ 1. **Think Before Coding** — State assumptions explicitly. If uncertain, ask. If
15
+ multiple interpretations exist, present them — don't pick silently. If a
16
+ simpler approach exists, say so.
17
+ 2. **Simplicity First** — Minimum code that solves the problem. No features
18
+ beyond what was asked. No abstractions for single-use code. No speculative
19
+ "flexibility." Ask: "Would a senior engineer say this is overcomplicated?"
20
+ 3. **Surgical Changes** — Touch only what you must. Don't "improve" adjacent
21
+ code. Match existing style. Remove only what YOUR changes made unused. Every
22
+ changed line must trace directly to the user's request.
23
+ 4. **Goal-Driven Execution** — Transform tasks into verifiable goals with
24
+ success criteria. For multi-step tasks, state a plan with verification
25
+ checks. Loop until verified.
26
+
9
27
  ---
10
28
 
11
29
  ## Core Terminology
@@ -45,8 +63,13 @@ verified.
45
63
  1. Validate the Task Card before doing anything else.
46
64
  2. Select the routing path based on the Routing Policy.
47
65
  3. Execute the correct agent sequence.
48
- 4. Surface blockers rather than working around them.
49
- 5. Declare completion only when all Deliverables are produced and verified.
66
+ 4. Enforce **Behavioral Discipline Gates**:
67
+ - **Think Before Coding Checkpoint**: Verify assumptions are explicitly documented before architect starts.
68
+ - **Simplicity Gate**: Review Technical Plan to ensure no speculative code or abstractions are planned.
69
+ - **Surgical Changes Audit**: Audit reviewer report and diff to verify only planned files were modified.
70
+ - **Goal-Driven Verification**: Confirm all acceptance criteria have passing tests.
71
+ 5. Surface blockers rather than working around them.
72
+ 6. Declare completion only when all Deliverables are produced and verified.
50
73
 
51
74
  **Task Card validation — required fields before routing:**
52
75
 
@@ -302,6 +325,7 @@ branch, declare done before running tests.
302
325
  - **No scope creep.** If the plan says "add one endpoint," add one endpoint.
303
326
  - **Run tests before declaring done.** If any test fails, investigate and fix
304
327
  before completing.
328
+ - **Surgical Changes.** Modify ONLY planned files. Do not improve adjacent code, comments, or formatting. Match existing style. Remove imports/variables/functions made unused by YOUR changes. Do not touch existing dead code.
305
329
 
306
330
  **Implementation Summary format:**
307
331
 
@@ -400,6 +424,8 @@ code.
400
424
  | Error handling | Are failure cases handled explicitly and safely? |
401
425
  | Test coverage | Do the tests verify all acceptance criteria? |
402
426
  | Technical debt | Does the implementation introduce debt without acknowledging it? |
427
+ | Simplicity | Flag overcomplicated or speculative code (overbuilt patterns). |
428
+ | Surgical | Verify that NO adjacent or unrelated code/comments were changed. |
403
429
 
404
430
  **Finding categories:**
405
431
 
@@ -564,6 +590,27 @@ dependencies, apply `.claude/skills/python-fastapi-stack/SKILL.md`.
564
590
  When the active task touches SQLAlchemy models, queries, sessions, bulk
565
591
  operations, or Alembic migrations, apply `.claude/skills/sqlalchemy/SKILL.md`.
566
592
 
593
+ When the active task touches Next.js components, Server Actions, or App Router layouts,
594
+ apply `.claude/skills/nextjs-typescript/SKILL.md`.
595
+
596
+ When the active task touches Astro pages or configuration,
597
+ apply `.claude/skills/astro/SKILL.md`.
598
+
599
+ When the active task touches Android project files (Kotlin, Compose, Media3, Gradle),
600
+ apply `.claude/skills/android/SKILL.md`.
601
+
602
+ When the active task touches Laravel project files (Eloquent, blade, livewire, controllers, routes),
603
+ apply `.claude/skills/laravel-specialist/SKILL.md`.
604
+
605
+ When the active task touches PHP project files (PHPUnit, Composer, syntax, types),
606
+ apply `.claude/skills/php-pro/SKILL.md`.
607
+
608
+ When the active task touches backend security, authorization, or data verification,
609
+ apply `.claude/skills/security/SKILL.md`.
610
+
611
+ When the active task requires debugging frontend interactions or accessibility (a11y) checks,
612
+ apply `.claude/skills/a11y-debugging/SKILL.md` and `.claude/skills/modern-web-guidance/SKILL.md`.
613
+
567
614
  When the user asks to create a Spring Boot feature (entity, service, controller,
568
615
  or tests), apply `.claude/skills/spring-boot-feature/SKILL.md`.
569
616
 
@@ -577,6 +624,19 @@ extending capabilities, apply `.claude/skills/find-skills/SKILL.md`.
577
624
 
578
625
  ---
579
626
 
627
+ ## Teammate & Loop Agent Rules
628
+
629
+ ### Teammate delegation (Presets supporting multi-teams)
630
+ - Utilize parallel sub-agent execution by enabling `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS` in `settings.json`.
631
+ - Allocate tasks to specific teammates: use `sonnet` for Orchestrator and Architect, and delegate secondary tasks (e.g. testing, review, docs) to `haiku` to optimize token budgets.
632
+
633
+ ### Loop Agent Mode (Intense Workflows)
634
+ - If tests or verifications fail, do not stop. Re-route the failure logs back to the Implementer teammate.
635
+ - The workflow iterates: Implementer (applies fix) -> Tester (verifies suite).
636
+ - Permit up to 3 self-correction iterations. If tests still fail, halt and escalate to the human with diagnostic details.
637
+
638
+ ---
639
+
580
640
  ## What Never Changes
581
641
 
582
642
  - Do not invoke the Implementer role without an accepted Technical Plan.
@@ -0,0 +1,119 @@
1
+ ---
2
+ id: android
3
+ version: 1.0.0
4
+ name: Android + Kotlin (Jetpack Compose & Media3)
5
+ description: >
6
+ Provides expert knowledge for building modern native Android apps using Kotlin, Jetpack Compose, Material Design 3, MVI architecture, Hilt dependency injection, and Media3/ExoPlayer.
7
+
8
+ user-invokable: true
9
+ license: MIT
10
+ metadata:
11
+ author: lgzarturo
12
+ category: mobile
13
+
14
+ compatibility:
15
+ tools: [claude, codex, gemini, agy, opencode]
16
+ stacks:
17
+ languages: [kotlin, java]
18
+ frameworks: [android]
19
+
20
+ risk:
21
+ level: medium
22
+ can_execute_shell: true
23
+ can_modify_files: true
24
+ requires_network: false
25
+
26
+ inputs: []
27
+
28
+ outputs: []
29
+
30
+ quality:
31
+ reviewed_by: codeconductor-core
32
+ version: 0.1.0
33
+ ---
34
+
35
+ # Android + Kotlin (Jetpack Compose & Media3)
36
+
37
+ This playbook defines the architecture, UI design system, performance guidelines, and testing strategy for native Android applications.
38
+
39
+ ---
40
+
41
+ ## 1. Lead Architect & Modularization
42
+
43
+ ### Architecture (MVI / MVVM with Clean Architecture)
44
+ - Prefer **MVI (Model-View-Intent)** for state management. Ensure a strict unidirectional data flow:
45
+ - **UiState**: Single source of truth for the UI state.
46
+ - **UiIntent**: Actions initiated by the user or system.
47
+ - **UiEffect**: One-time events (navigation, toasts, snackbars).
48
+ - Separate the project into clean logical modules:
49
+ - `app`: Application entry point, launcher activity, global dependency injection configuration.
50
+ - `core`: Shared resources, network layer, media playback logic (ExoPlayer/Media3), storage.
51
+ - `feature`: Individual business features (isolated and independent of other features).
52
+
53
+ ### Dependency Injection (Hilt)
54
+ - Annotate the Application class with `@HiltAndroidApp`.
55
+ - Annotate Activities and Fragments with `@AndroidEntryPoint`.
56
+ - Use constructor injection for ViewModels with `@HiltViewModel`.
57
+
58
+ ---
59
+
60
+ ## 2. Jetpack Compose UI/UX
61
+
62
+ ### Recomposition & State Management
63
+ - Consume `StateFlow` from ViewModels safely using `collectAsStateWithLifecycle()` to respect the activity lifecycle.
64
+ - Keep data models immutable. Mark configuration classes with `@Immutable` or `@Stable` to prevent redundant recompositions.
65
+ - Use `contentType` and `key` in `LazyColumn` and `LazyRow` to optimize item recycling and rendering performance.
66
+ - Avoid fixed hardcoded margins. Apply `WindowInsets` to support modern edge-to-edge screens.
67
+
68
+ ---
69
+
70
+ ## 3. Performance & Multimedia (Media3 / ExoPlayer)
71
+
72
+ ### Playback & Services
73
+ - Run `ExoPlayer` / `Media3` inside a robust `Foreground Service` (using `MediaSessionService`) to ensure playback continues when the app is in the background.
74
+ - Clean up resources: release player instances in `onDestroy` or when the service is stopped.
75
+ - Control wake locks strictly to avoid draining the user's battery when playback is paused.
76
+
77
+ ### Kotlin Coroutines & Threading
78
+ - Always inject `CoroutineDispatcher` instances instead of hardcoding them:
79
+ - `Dispatchers.IO`: Database access, network operations, file reading.
80
+ - `Dispatchers.Default`: CPU-intensive operations (parsing JSON, filtering large lists).
81
+ - `Dispatchers.Main`: UI modifications and light interactions.
82
+
83
+ ### R8 & Resource Optimization
84
+ - Enable shrinking and obfuscation in production builds:
85
+ - `isMinifyEnabled = true`
86
+ - `isShrinkResources = true`
87
+ - Convert all static images to the modern `WebP` format to minimize the application binary size.
88
+
89
+ ---
90
+
91
+ ## 4. Quality Assurance & Automated Testing
92
+
93
+ ### Unit Testing
94
+ - Use JUnit 5 and MockK for mocking dependencies.
95
+ - Test ViewModels and Reducers by asserting StateFlow updates. Use `Turbine` to easily test Kotlin Flows.
96
+ - Mock all multimedia/ExoPlayer components to avoid loading actual audio/video resources in unit tests.
97
+
98
+ ### UI Testing
99
+ - Create UI tests using Compose test rules: `createComposeRule()` or `createAndroidComposeRule<MainActivity>()`.
100
+ - Assert correct rendering, visibility states, and user interactions without executing real network calls.
101
+
102
+ ---
103
+
104
+ ## 5. Key Gradle & ADB Commands
105
+
106
+ Use these commands for building, checking code style, running tests, and profiling performance:
107
+
108
+ | Command | Action |
109
+ | ------- | ------ |
110
+ | `./gradlew init` | Initialize a new Gradle project structure. |
111
+ | `./gradlew app:dependencies` | List all dependencies of the application module. |
112
+ | `./gradlew assembleDebug` | Validate compilation and generate debug APK. |
113
+ | `./gradlew ktlintCheck` | Run KtLint check to enforce Kotlin style guidelines. |
114
+ | `./gradlew lintDebug` | Run Android Lint tool to inspect code quality and UI issues. |
115
+ | `./gradlew testDebugUnitTest` | Run unit tests for debug build variant. |
116
+ | `./gradlew connectedAndroidTest` | Run instrumented UI tests on connected emulator or device. |
117
+ | `./gradlew assembleRelease` | Generate release build variant with R8 optimizations. |
118
+ | `adb shell dumpsys batterystats` | Profile system battery consumption metrics. |
119
+ | `adb shell am dumpheap <package> heap.hprof` | Dump application heap memory file for profiling. |
@@ -0,0 +1,264 @@
1
+ ---
2
+ name: laravel-specialist
3
+ description: Build and configure Laravel 10+ applications, including creating Eloquent models and relationships, implementing Sanctum authentication, configuring Horizon queues, designing RESTful APIs with API resources, and building reactive interfaces with Livewire. Use when creating Laravel models, setting up queue workers, implementing Sanctum auth flows, building Livewire components, optimising Eloquent queries, or writing Pest/PHPUnit tests for Laravel features.
4
+ license: MIT
5
+ metadata:
6
+ author: https://github.com/Jeffallan
7
+ version: "1.1.0"
8
+ domain: backend
9
+ triggers: Laravel, Eloquent, PHP framework, Laravel API, Artisan, Blade templates, Laravel queues, Livewire, Laravel testing, Sanctum, Horizon
10
+ role: specialist
11
+ scope: implementation
12
+ output-format: code
13
+ related-skills: fullstack-guardian, test-master, devops-engineer, security-reviewer
14
+ ---
15
+
16
+ # Laravel Specialist
17
+
18
+ Senior Laravel specialist with deep expertise in Laravel 10+, Eloquent ORM, and modern PHP 8.2+ development.
19
+
20
+ ## Core Workflow
21
+
22
+ 1. **Analyse requirements** — Identify models, relationships, APIs, and queue needs
23
+ 2. **Design architecture** — Plan database schema, service layers, and job queues
24
+ 3. **Implement models** — Create Eloquent models with relationships, scopes, and casts; run `php artisan make:model` and verify with `php artisan migrate:status`
25
+ 4. **Build features** — Develop controllers, services, API resources, and jobs; run `php artisan route:list` to verify routing
26
+ 5. **Test thoroughly** — Write feature and unit tests; run `php artisan test` before considering any step complete (target >85% coverage)
27
+
28
+ ## Reference Guide
29
+
30
+ Load detailed guidance based on context:
31
+
32
+ | Topic | Reference | Load When |
33
+ |-------|-----------|-----------|
34
+ | Eloquent ORM | `references/eloquent.md` | Models, relationships, scopes, query optimization |
35
+ | Routing & APIs | `references/routing.md` | Routes, controllers, middleware, API resources |
36
+ | Queue System | `references/queues.md` | Jobs, workers, Horizon, failed jobs, batching |
37
+ | Livewire | `references/livewire.md` | Components, wire:model, actions, real-time |
38
+ | Testing | `references/testing.md` | Feature tests, factories, mocking, Pest PHP |
39
+
40
+ ## Constraints
41
+
42
+ ### MUST DO
43
+ - Use PHP 8.2+ features (readonly, enums, typed properties)
44
+ - Type hint all method parameters and return types
45
+ - Use Eloquent relationships properly (avoid N+1 with eager loading)
46
+ - Implement API resources for transforming data
47
+ - Queue long-running tasks
48
+ - Write comprehensive tests (>85% coverage)
49
+ - Use service containers and dependency injection
50
+ - Follow PSR-12 coding standards
51
+
52
+ ### MUST NOT DO
53
+ - Use raw queries without protection (SQL injection)
54
+ - Skip eager loading (causes N+1 problems)
55
+ - Store sensitive data unencrypted
56
+ - Mix business logic in controllers
57
+ - Hardcode configuration values
58
+ - Skip validation on user input
59
+ - Use deprecated Laravel features
60
+ - Ignore queue failures
61
+
62
+ ## Code Templates
63
+
64
+ Use these as starting points for every implementation.
65
+
66
+ ### Eloquent Model
67
+
68
+ ```php
69
+ <?php
70
+
71
+ declare(strict_types=1);
72
+
73
+ namespace App\Models;
74
+
75
+ use Illuminate\Database\Eloquent\Factories\HasFactory;
76
+ use Illuminate\Database\Eloquent\Model;
77
+ use Illuminate\Database\Eloquent\Relations\BelongsTo;
78
+ use Illuminate\Database\Eloquent\Relations\HasMany;
79
+ use Illuminate\Database\Eloquent\SoftDeletes;
80
+
81
+ final class Post extends Model
82
+ {
83
+ use HasFactory, SoftDeletes;
84
+
85
+ protected $fillable = ['title', 'body', 'status', 'user_id'];
86
+
87
+ protected $casts = [
88
+ 'status' => PostStatus::class, // backed enum
89
+ 'published_at' => 'immutable_datetime',
90
+ ];
91
+
92
+ // Relationships — always eager-load via ::with() at call site
93
+ public function author(): BelongsTo
94
+ {
95
+ return $this->belongsTo(User::class, 'user_id');
96
+ }
97
+
98
+ public function comments(): HasMany
99
+ {
100
+ return $this->hasMany(Comment::class);
101
+ }
102
+
103
+ // Local scope
104
+ public function scopePublished(Builder $query): Builder
105
+ {
106
+ return $query->where('status', PostStatus::Published);
107
+ }
108
+ }
109
+ ```
110
+
111
+ ### Migration
112
+
113
+ ```php
114
+ <?php
115
+
116
+ use Illuminate\Database\Migrations\Migration;
117
+ use Illuminate\Database\Schema\Blueprint;
118
+ use Illuminate\Support\Facades\Schema;
119
+
120
+ return new class extends Migration
121
+ {
122
+ public function up(): void
123
+ {
124
+ Schema::create('posts', function (Blueprint $table): void {
125
+ $table->id();
126
+ $table->foreignId('user_id')->constrained()->cascadeOnDelete();
127
+ $table->string('title');
128
+ $table->text('body');
129
+ $table->string('status')->default('draft');
130
+ $table->timestamp('published_at')->nullable();
131
+ $table->softDeletes();
132
+ $table->timestamps();
133
+ });
134
+ }
135
+
136
+ public function down(): void
137
+ {
138
+ Schema::dropIfExists('posts');
139
+ }
140
+ };
141
+ ```
142
+
143
+ ### API Resource
144
+
145
+ ```php
146
+ <?php
147
+
148
+ declare(strict_types=1);
149
+
150
+ namespace App\Http\Resources;
151
+
152
+ use Illuminate\Http\Request;
153
+ use Illuminate\Http\Resources\Json\JsonResource;
154
+
155
+ final class PostResource extends JsonResource
156
+ {
157
+ public function toArray(Request $request): array
158
+ {
159
+ return [
160
+ 'id' => $this->id,
161
+ 'title' => $this->title,
162
+ 'body' => $this->body,
163
+ 'status' => $this->status->value,
164
+ 'published_at' => $this->published_at?->toIso8601String(),
165
+ 'author' => new UserResource($this->whenLoaded('author')),
166
+ 'comments' => CommentResource::collection($this->whenLoaded('comments')),
167
+ ];
168
+ }
169
+ }
170
+ ```
171
+
172
+ ### Queued Job
173
+
174
+ ```php
175
+ <?php
176
+
177
+ declare(strict_types=1);
178
+
179
+ namespace App\Jobs;
180
+
181
+ use App\Models\Post;
182
+ use Illuminate\Bus\Queueable;
183
+ use Illuminate\Contracts\Queue\ShouldQueue;
184
+ use Illuminate\Foundation\Bus\Dispatchable;
185
+ use Illuminate\Queue\InteractsWithQueue;
186
+ use Illuminate\Queue\SerializesModels;
187
+
188
+ final class PublishPost implements ShouldQueue
189
+ {
190
+ use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
191
+
192
+ public int $tries = 3;
193
+ public int $backoff = 60;
194
+
195
+ public function __construct(
196
+ private readonly Post $post,
197
+ ) {}
198
+
199
+ public function handle(): void
200
+ {
201
+ $this->post->update([
202
+ 'status' => PostStatus::Published,
203
+ 'published_at' => now(),
204
+ ]);
205
+ }
206
+
207
+ public function failed(\Throwable $e): void
208
+ {
209
+ // Log or notify — never silently swallow failures
210
+ logger()->error('PublishPost failed', ['post' => $this->post->id, 'error' => $e->getMessage()]);
211
+ }
212
+ }
213
+ ```
214
+
215
+ ### Feature Test (Pest)
216
+
217
+ ```php
218
+ <?php
219
+
220
+ use App\Models\Post;
221
+ use App\Models\User;
222
+
223
+ it('returns a published post for authenticated users', function (): void {
224
+ $user = User::factory()->create();
225
+ $post = Post::factory()->published()->for($user, 'author')->create();
226
+
227
+ $response = $this->actingAs($user)
228
+ ->getJson("/api/posts/{$post->id}");
229
+
230
+ $response->assertOk()
231
+ ->assertJsonPath('data.status', 'published')
232
+ ->assertJsonPath('data.author.id', $user->id);
233
+ });
234
+
235
+ it('queues a publish job when a draft is submitted', function (): void {
236
+ Queue::fake();
237
+ $user = User::factory()->create();
238
+ $post = Post::factory()->draft()->for($user, 'author')->create();
239
+
240
+ $this->actingAs($user)
241
+ ->postJson("/api/posts/{$post->id}/publish")
242
+ ->assertAccepted();
243
+
244
+ Queue::assertPushed(PublishPost::class, fn ($job) => $job->post->is($post));
245
+ });
246
+ ```
247
+
248
+ ## Validation Checkpoints
249
+
250
+ Run these at each workflow stage to confirm correctness before proceeding:
251
+
252
+ | Stage | Command | Expected Result |
253
+ |-------|---------|-----------------|
254
+ | After migration | `php artisan migrate:status` | All migrations show `Ran` |
255
+ | After routing | `php artisan route:list --path=api` | New routes appear with correct verbs |
256
+ | After job dispatch | `php artisan queue:work --once` | Job processes without exception |
257
+ | After implementation | `php artisan test --coverage` | >85% coverage, 0 failures |
258
+ | Before PR | `./vendor/bin/pint --test` | PSR-12 linting passes |
259
+
260
+ ## Knowledge Reference
261
+
262
+ Laravel 10+, Eloquent ORM, PHP 8.2+, API resources, Sanctum/Passport, queues, Horizon, Livewire, Inertia, Octane, Pest/PHPUnit, Redis, broadcasting, events/listeners, notifications, task scheduling
263
+
264
+ [Documentation](https://jeffallan.github.io/claude-skills/skills/backend/laravel-specialist/)