@elyracode/stack-filament 0.4.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.
- package/README.md +34 -0
- package/extensions/index.ts +13 -0
- package/package.json +27 -0
- package/skills/filament/SKILL.md +1841 -0
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# @elyracode/stack-filament
|
|
2
|
+
|
|
3
|
+
Elyra extension for **Filament v5** -- the full-featured admin panel builder for Laravel.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
elyra install npm:@elyracode/stack-filament
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## What's included
|
|
12
|
+
|
|
13
|
+
Comprehensive knowledge of Filament v5:
|
|
14
|
+
|
|
15
|
+
- **Resources**: CRUD generation, file structure, Eloquent queries, authorization
|
|
16
|
+
- **Tables**: Columns (text, icon, image, toggle), filters, actions, pagination, reordering
|
|
17
|
+
- **Forms**: All field types, validation, reactive fields, dependent selects, file uploads, repeaters
|
|
18
|
+
- **Schemas**: Grid, Section, Tabs, Wizard, Fieldset layouts
|
|
19
|
+
- **Actions**: Modals, confirmations, form actions, bulk actions, button styles
|
|
20
|
+
- **Widgets**: Stats overview, chart widgets, dashboard filters
|
|
21
|
+
- **Infolists**: Read-only display entries
|
|
22
|
+
- **Notifications**: Flash, database, and broadcast notifications
|
|
23
|
+
- **Multi-tenancy**: Team-based tenancy with registration and billing
|
|
24
|
+
- **Navigation**: Groups, clusters, custom pages, user menu
|
|
25
|
+
- **Testing**: Pest helpers for resources, tables, forms, and actions
|
|
26
|
+
|
|
27
|
+
## Usage
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
> Build a product management resource with Filament
|
|
31
|
+
> Create a dashboard with revenue chart and customer stats
|
|
32
|
+
> Add a multi-tenant admin panel with team switching
|
|
33
|
+
> Set up table filters for order status and date range
|
|
34
|
+
```
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ExtensionAPI } from "@elyracode/coding-agent";
|
|
2
|
+
|
|
3
|
+
export default function (elyra: ExtensionAPI) {
|
|
4
|
+
// The filament skill is auto-loaded from the skills/ directory.
|
|
5
|
+
// This extension adds stack-aware commands.
|
|
6
|
+
|
|
7
|
+
elyra.registerCommand("filament", {
|
|
8
|
+
description: "Filament v5 admin panel reference",
|
|
9
|
+
handler: async (_args, ctx) => {
|
|
10
|
+
ctx.ui.notify("Filament v5 profile loaded. Skills: filament. Use /skill:filament for full reference.");
|
|
11
|
+
},
|
|
12
|
+
});
|
|
13
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elyracode/stack-filament",
|
|
3
|
+
"version": "0.4.1",
|
|
4
|
+
"description": "Elyra extension for Filament v5 -- admin panels, resources, tables, forms, actions, widgets, and multi-tenancy for Laravel",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"keywords": ["elyra-package", "filament", "filamentphp", "laravel", "admin-panel", "crud"],
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"author": "Knut W. Horne",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/kwhorne/elyra.git",
|
|
12
|
+
"directory": "packages/stack-filament"
|
|
13
|
+
},
|
|
14
|
+
"elyra": {
|
|
15
|
+
"skills": ["./skills"],
|
|
16
|
+
"extensions": ["./extensions/index.ts"]
|
|
17
|
+
},
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"@elyracode/coding-agent": "*",
|
|
20
|
+
"typebox": "*"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"clean": "echo 'nothing to clean'",
|
|
24
|
+
"build": "echo 'nothing to build'",
|
|
25
|
+
"check": "echo 'nothing to check'"
|
|
26
|
+
}
|
|
27
|
+
}
|