Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:914
forks:138
updated:January 22, 2026 at 00:17
SKILL.md
Parse table definition to extract module name, model name, table name, and field definitions. First step of CRUD generation.
Generate database migration file for CatchAdmin module.
Generate Eloquent model for CatchAdmin module with full CatchModel features.
Generate CRUD controller for CatchAdmin module.
Generate form request validation for CatchAdmin module.
Generate route configuration for CatchAdmin module.
| name | import |
| description | Generate Excel import class for CatchAdmin module. |
åå»ºæ°æ®å¯Œå ¥ç±»ã
modules/{Module}/Import/{Model}.php
<?php
namespace Modules\{Module}\Import;
use Catch\Support\Excel\Import;
use Illuminate\Support\Collection;
use Modules\{Module}\Models\{Model};
class {Model} extends Import
{
public function collection(Collection $rows): void
{
// Skip header row
$rows->skip(1)->each(function ($row) {
{Model}::create([
'name' => $row[0],
// map other columns
]);
});
}
}
Excel å玢åŒä» 0 åŒå§ïŒ
$row[0]$row[1]$row[2]public function collection(Collection $rows): void
{
$rows->skip(1)->each(function ($row, $index) {
$data = [
'name' => $row[0] ?? null,
'email' => $row[1] ?? null,
];
$validator = Validator::make($data, [
'name' => 'required|string|max:100',
'email' => 'required|email',
]);
if ($validator->fails()) {
return; // Skip invalid row
}
{Model}::create($data);
});
}
public function import(Request $request, {Model}Import $import)
{
return $import->import($request->file('file'));
}