fix(plugin): add commands/ auto-discover directory, fix plugin.json schema
Some checks failed
CI / PHP 8.4 (push) Failing after 2m3s
CI / PHP 8.3 (push) Failing after 2m11s

Commands must be in `.claude-plugin/commands/` for Claude Code auto-discovery.
Fixed plugin.json to use `{name, description, file}` array format.

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Snider 2026-03-13 10:18:41 +00:00
parent b0074e5870
commit e27f8b1088
3 changed files with 75 additions and 30 deletions

View file

@ -0,0 +1,24 @@
---
name: generate
description: Generate TypeScript/JavaScript API client from Laravel routes
args: [--ts|--js] [--openapi]
---
# Generate API Client
Generates a TypeScript or JavaScript API client from your project's Laravel routes.
## Usage
Generate TypeScript client (default):
`core:api generate`
Generate JavaScript client:
`core:api generate --js`
Generate OpenAPI spec:
`core:api generate --openapi`
## Action
This command will run a script to parse the routes and generate the client.

View file

@ -7,12 +7,11 @@
"email": "hello@host.uk.com"
},
"license": "EUPL-1.2",
"skills": [
"skills/php",
"skills/php-agent",
"skills/laravel"
],
"commands": [
"api/commands/generate.md"
{
"name": "api:generate",
"description": "Generate TypeScript/JavaScript API client from Laravel routes",
"file": "api/commands/generate.md"
}
]
}

View file

@ -10,8 +10,16 @@ composer test -- --filter=Name # Run single test by name
composer test -- --testsuite=Unit # Run specific test suite
composer pint # Format code with Laravel Pint
./vendor/bin/pint --dirty # Format only changed files
vendor/bin/phpstan analyse --memory-limit=2G # Static analysis (level 1)
vendor/bin/psalm --show-info=false # Type checking (level 8)
vendor/bin/rector process --dry-run # Code modernisation preview
composer audit # Security vulnerability check
```
## CI Matrix
Tests run against PHP 8.2/8.3/8.4 × Laravel 11/12 (excluding PHP 8.2 + Laravel 12). CI also runs Pint (`--test`), PHPStan, Psalm, and `composer audit`.
## Coding Standards
- **UK English**: colour, organisation, centre (never American spellings)
@ -53,15 +61,19 @@ Frontages are ServiceProviders in `src/Core/Front/` that fire context-specific l
Subdirectories under `src/Core/` are self-contained "L1 packages" with their own Boot.php, migrations, tests, and views:
```
src/Core/Actions/ # Action pattern + scheduled action scanning
src/Core/Activity/ # Activity logging (wraps spatie/laravel-activitylog)
src/Core/Bouncer/ # Security blocking/redirects
src/Core/Bouncer/ # Security blocking/redirects + honeypot + action gate
src/Core/Cdn/ # CDN integration
src/Core/Config/ # Dynamic configuration
src/Core/Config/ # Dynamic configuration with two-tier caching
src/Core/Front/ # Frontage system (Web, Admin, Api, Client, Cli, Mcp)
src/Core/Lang/ # Translation system
src/Core/Lang/ # Translation system with ICU + locale fallback chains
src/Core/Media/ # Media handling with thumbnail helpers
src/Core/Search/ # Search functionality
src/Core/Seo/ # SEO utilities
src/Core/Service/ # Service discovery and dependency resolution
src/Core/Storage/ # Storage with Redis circuit breaker + fallback
src/Core/Webhook/ # Webhook system + CronTrigger scheduled action
```
### Module Pattern
@ -71,7 +83,7 @@ class Boot
{
public static array $listens = [
WebRoutesRegistering::class => 'onWebRoutes',
AdminPanelBooting::class => ['onAdmin', 10], // With priority
AdminPanelBooting::class => ['onAdmin', 10], // With priority (higher = runs first)
];
public function onWebRoutes(WebRoutesRegistering $event): void
@ -83,6 +95,8 @@ class Boot
}
```
Scaffold new modules with artisan: `make:mod`, `make:website`, `make:plug`.
### Namespace Mapping
| Path | Namespace |
@ -115,24 +129,35 @@ class CreateOrder
// Usage: CreateOrder::run($user, $validated);
```
### Scheduled Actions
Actions can be marked for scheduled execution with the `#[Scheduled]` attribute. `ScheduledActionScanner` discovers these by scanning for the attribute.
```php
use Core\Actions\Scheduled;
#[Scheduled(frequency: 'dailyAt:09:00', timezone: 'Europe/London')]
class PublishDigest
{
use Action;
public function handle(): void { /* ... */ }
}
```
Frequency strings map to Laravel Schedule methods: `everyMinute`, `dailyAt:09:00`, `weeklyOn:1,09:00`, etc.
### Multi-Tenant Isolation
Models using `Core\Mod\Tenant\Concerns\BelongsToWorkspace` are automatically scoped to the current workspace. The `workspace_id` is set on create and queries are filtered transparently.
### Seeder Ordering
Seeders use PHP attributes for dependency ordering:
```php
use Core\Database\Seeders\Attributes\SeederPriority;
use Core\Database\Seeders\Attributes\SeederAfter;
#[SeederPriority(50)] // Lower runs first (default 50)
#[SeederAfter(FeatureSeeder::class)]
class PackageSeeder extends Seeder
{
public function run(): void
{
if (! Schema::hasTable('packages')) return; // Guard missing tables
// ...
}
}
class PackageSeeder extends Seeder { }
```
### HLCRF Layout System
@ -140,16 +165,15 @@ class PackageSeeder extends Seeder
Data-driven layouts with five regions (Header, Left, Content, Right, Footer):
```php
use Core\Front\Components\Layout;
$page = Layout::make('HCF') // Variant: Header-Content-Footer
->h(view('header'))
->c($content)
->f(view('footer'));
$page = Layout::make('HCF')->h(view('header'))->c($content)->f(view('footer'));
```
Variant strings: `C` (content only), `HCF` (standard page), `HLCF` (with sidebar), `HLCRF` (full dashboard).
### Go Bridge
`pkg/php/` contains Go code for a native desktop HTTP bridge (PHP-to-native calls), container/deployment utilities (Coolify), and Dockerfile generation.
## Testing
Uses Orchestra Testbench with in-memory SQLite. Tests can live:
@ -157,9 +181,7 @@ Uses Orchestra Testbench with in-memory SQLite. Tests can live:
- `src/Core/{Package}/Tests/` - L1 package co-located tests
- `src/Mod/{Module}/Tests/` - module co-located tests
Test fixtures are in `tests/Fixtures/`.
Base test class provides:
Test fixtures are in `tests/Fixtures/`. Base test class provides:
```php
$this->getFixturePath('Mod') // Returns tests/Fixtures/Mod path
```