원클릭으로
laravel-api-crud-scaffold-review
Review Laravel API CRUD scaffold release evidence for routes, JSON codes, tests, and Pint.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review Laravel API CRUD scaffold release evidence for routes, JSON codes, tests, and Pint.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generates new .skills/<slug>/SKILL.md entries on demand from a one-line description, guarded by a review gate so unreviewed skills do not become defaults.
Use simplicio-cli to turn a one-line task into a verified code change (diff + test + verify loop). Trigger ALWAYS when the user asks for a small/medium code edit in a known file — "hide X for non-admins", "add validation to Y", "fix the empty-state on Z", "rename the prop in <file>" — even if they do not mention the word "simplicio". Especially trigger when the active model is small/local (Ollama, Gemma, Llama 3 sub-8B, Phi, Qwen 7B), or the user mentions "task-to-code", "diff+test", "verify loop", "6-layer contract", "pass-rate", "precedent + skill router", or any of the benchmark numbers (+39 pts, +51 pts, +58 pts, 99% pass-rate). Use this skill BEFORE writing the edit by hand — simplicio-cli measurably boosts pass-rate on the same model from ~41% to ~99% on frontier and ~35% to ~74% on sub-4B by stacking mapper + precedent + skill-router + 6-layer prompt + test + verify-loop. Also trigger on explicit invocations: `$simplicio`, `/simplicio`, "use simplicio", "rode o simplicio".
Human review workflow for baseline rows where code generation is disabled.
Validate generated FastAPI CRUD scaffolds before they enter release evidence.
Review Go Gin CRUD release evidence before human approval.
Human review workflow for issue-closure audit artifacts and blocker traceability across issues.
| name | laravel-api-crud-scaffold-review |
| description | Review Laravel API CRUD scaffold release evidence for routes, JSON codes, tests, and Pint. |
| trigger | Use when reviewing release evidence for a Laravel API CRUD scaffold before merge, release, or handoff. |
| auto_generated | {"by":"skill-opt","date":"2026-05-31T00:00:00.000Z","source_goal":"Generate a release-evidence reviewer checklist for Laravel API CRUD scaffolds, including route tests, JSON status codes, and Pint expectations.","planner_model":"codex-cli/default","review_required":true} |
Use this skill when validating a Laravel API CRUD scaffold and its release evidence. It applies to generated or hand-written resources with API routes, controllers, requests, resources, policies, migrations, factories, and feature tests.
index, store, show, update, and destroy.routes/api.php or route registration defines the intended API routes, names, middleware, and model binding.php artisan route:list or the project-approved equivalent, filtered to the scaffolded resource when possible.200 for read/update success, 201 for create, 204 for delete with no body, 404 for missing records, 422 for validation, and 401 or 403 for protected flows.php artisan test or the narrowest project-approved filter, and save the command plus result excerpt as release evidence../vendor/bin/pint --test or the project-approved wrapper, and record the result.php artisan test or the scoped approved test command passes../vendor/bin/pint --test or the project wrapper.200 responses while skipping 201, 204, 404, 422, 401, or 403.