This skill defines the TALL stack configuration. Apply when working on Laravel/DDEV projects.
/plugin marketplace add Syntek-Studio/syntek-dev-suite/plugin install syntek-studio-syntek-dev-suite@Syntek-Studio/syntek-dev-suiteThis skill inherits all available tools. When active, it can use any tool Claude has access to.
This skill defines the TALL stack configuration. Apply when working on Laravel/DDEV projects.
| Layer | Technology |
|---|---|
| Platform | DDEV (Docker abstraction) |
| Backend | Laravel 11.x, Livewire 3 |
| Frontend | TailwindCSS, Alpine.js, Vite |
| Testing | Pest PHP |
CRITICAL: Never use raw docker commands. Always use DDEV wrappers.
| Task | Command |
|---|---|
| Start environment | ddev start |
| Stop environment | ddev stop |
| Artisan commands | ddev artisan <command> |
| Composer | ddev composer <command> |
| NPM | ddev exec npm <command> |
| Run tests | ddev exec php artisan test |
| Run specific test | ddev exec php artisan test --filter=TestName |
| Database import | ddev import-db < dump.sql |
| Database export | ddev export-db > dump.sql |
| Migrations | ddev artisan migrate |
| Fresh migrate | ddev artisan migrate:fresh --seed |
| Tinker | ddev artisan tinker |
wire:navigate for SPA-like navigation#[Rule] attributes for validation#[Computed] for derived data<x-components> exclusively@include - extract to components instead<x-module.component-name>x-data in separate JS files for complex logicx-data for simple toggle states only$wire for Livewire integrationx-cloak to prevent flash of unstyled contentit('can create a user', function () {
// Arrange
$data = ['name' => 'Test User', 'email' => 'test@example.com'];
// Act
$response = post('/users', $data);
// Assert
$response->assertStatus(201);
expect(User::count())->toBe(1);
});
app/
├── Livewire/ # Livewire components
├── Models/ # Eloquent models
├── Services/ # Business logic
├── Actions/ # Single-purpose actions
└── Http/
├── Controllers/ # Minimal, delegate to services
└── Requests/ # Form validation
resources/
├── views/
│ ├── components/ # Blade components
│ ├── livewire/ # Livewire views
│ └── layouts/ # Layout templates
└── js/
└── alpine/ # Complex Alpine components
tests/
├── Feature/ # Integration tests
└── Unit/ # Unit tests
docs/
└── METRICS/ # Self-learning system (see global-workflow skill)
├── README.md
├── config.json
├── runs/
├── feedback/
└── optimisations/
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.