Skip to main content
Exécutez n'importe quel Skill dans Manus
en un clic
padosoft
Profil créateur GitHub

padosoft

Vue par dépôt de 83 skills collectés dans 36 dépôts GitHub.

skills collectés
83
dépôts
36
mis à jour
2026-07-18
carte des dépôts

Où se trouvent les skills

Principaux dépôts par nombre de skills collectés, avec leur part dans ce catalogue créateur et leur couverture métier.

Les 8 principaux dépôts sont affichés ici ; la liste complète continue ci-dessous.
explorateur de dépôts

Dépôts et skills représentatifs

admin-interface-backend
Développeurs de logiciels

Use when implementing the backend of a complex Laravel admin page (filters, KPI, lists, exports). Guides Request/DTO/service/controller/route layout, output contract design, and the minimum tests required. Trigger on tasks like "build admin index", "add filtered admin page", "write backend for admin dashboard".

2026-05-08
admin-interface-component-audit
Développeurs de logiciels

Use BEFORE creating or refactoring any admin interface to audit existing UI components, services, and helpers and decide REUSE / EXTEND / CREATE-DOMAIN / CREATE-GLOBAL for each piece. Trigger when starting a new admin page, when asked to "check existing components first", or before any "create-admin-interface" run.

2026-05-08
admin-interface-frontend
Développeurs de logiciels

Use when implementing the JS/CSS frontend of a complex Laravel admin page (entrypoint, API client, filters, table, KPI/charts, modals, empty/loading/error states). Trigger on tasks like "wire admin page JS", "build admin filters", "render admin table", or anything touching frontend modules of an admin view.

2026-05-08
create-admin-interface
Développeurs de logiciels

Orchestrator skill for creating or refactoring a complex Laravel admin page (filters, KPIs, tables, exports, charts, modals). Drives the full sequence — component audit, contract definition, backend, frontend, hardening — and chains the related admin-interface-* skills. Trigger on requests like "create admin page", "build dashboard for X", or "refactor admin index for Y".

2026-05-08
create-api-endpoint
Développeurs de logiciels

Use when adding or refactoring a Laravel 13 HTTP API endpoint. Drives the route → thin controller → FormRequest → DTO → service/action → JsonResource → feature test pipeline, with stable response shape and consistent status codes. Trigger on tasks like "add API endpoint", "expose X via API", or "create REST route".

2026-05-08
create-controller
Développeurs de logiciels

Use when adding or refactoring a Laravel 13 controller (web, API, or admin). Drives thin-controller patterns — FormRequest validation, DTO/command objects, delegation to service/action, coherent view/resource/redirect responses, plus the minimum feature test. Trigger on tasks like "add controller for X", "refactor controller", "expose admin action".

2026-05-08
create-crud-backend
Développeurs de logiciels

Use when scaffolding a standard Laravel 13 CRUD backend (model+migration, FormRequest, resource controller or API endpoints, view/JSON wiring, full validation/create/update/delete tests). Trigger on tasks like "create CRUD for X", "scaffold resource for Y", "add admin CRUD module".

2026-05-08
create-filesystem-helpers
Développeurs de logiciels

Use when introducing a new Laravel storage disk or file workflow (uploads, exports, generated artifacts like dossiers/PDFs). Centralizes disk config, path/naming rules, streaming for large files, visibility/retention/cleanup. Trigger on tasks like "add new disk", "store generated file", "manage uploads".

2026-05-08
Affichage des 8 principaux skills collectés sur 13 dans ce dépôt.
laravel-flow-admin-shell
Développeurs de logiciels

Anchor skill for the padosoft/laravel-flow-admin package. Read FIRST when opening this repo to understand stack (Laravel 13 + PHP 8.3/8.4 + Blade + Vite + Alpine.js + Playwright), where the design source lives (.design-source/), the read-model contract from padosoft/laravel-flow we consume, and the macro/subtask branch + Copilot review loop. Trigger when starting any work in this repo, when restarting a session, or when a sub-agent is dispatched.

2026-07-18
pre-push-self-review
Développeurs de logiciels

BEFORE every `git push`, run a systematic self-review on the diff against a checklist of the recurring footguns Copilot has flagged in this codebase. The goal is to catch issues that would otherwise consume Copilot review cycles. Trigger BEFORE typing `git push`, after `git commit`, when about to open a PR with `gh pr create`, when running the local test gate, or when the user asks to "review my changes" / "lint diff" / "check diff".

2026-05-06
admin-interface-backend
Développeurs de logiciels

Use to implement the backend slice of a complex Laravel admin page (controller, view-model factories, query layer with eager loading, FormRequest validation, action handlers gated by authorizer, pagination/sorting/filtering DTOs). Trigger when adding/modifying any controller under `src/Http/Controllers/` or `routes/flow-admin.php`, when wiring a new admin route, or when working on a Macro 5/6/7 backend slice per `docs/IMPLEMENTATION_PLAN.md`.

2026-05-05
admin-interface-component-audit
Développeurs de logiciels

Use BEFORE building or refactoring any admin page to inventory existing Blade components, partials, design tokens, and reusable Alpine stores so the new work composes existing primitives instead of duplicating them. Trigger at the start of every Macro 3/5/6/7 UI slice, before adding a new Blade component, or when Copilot flags duplication during review.

2026-05-05
admin-interface-frontend
Développeurs de logiciels

Use to implement the frontend slice of a complex Laravel admin page using Blade + Vite + Alpine.js (no SPA framework). Covers Blade partials/components, Alpine stores for client state, design-token CSS hygiene, status badges, JSON syntax-highlight, sparklines, charts, drawer, modal, ⌘K palette interactions. Trigger when adding/modifying templates under `resources/views/`, CSS under `resources/css/`, or JS under `resources/js/`, and when implementing a Macro 3/5/6/7/8 UI slice per `docs/IMPLEMENTATION_PLAN.md`.

2026-05-05
create-admin-interface
Développeurs de logiciels

Orchestrator skill for creating or refactoring complex Laravel admin pages with KPI tiles, filters, tables, drawers, modals, charts, exports. Coordinates the audit → backend → frontend → test phases by dispatching to `admin-interface-component-audit`, `admin-interface-backend`, `admin-interface-frontend`, and `playwright-enterprise-tester`. Trigger when user asks to "build an admin page", "add a dashboard view", "refactor the admin shell", or when starting any Macro 5/6/7 page implementation in `docs/IMPLEMENTATION_PLAN.md`.

2026-05-05
create-api-endpoint
Développeurs de logiciels

Use when creating a JSON endpoint under `/flow/api/*` (e.g. `/flow/api/search`, `/flow/api/live`) backing the admin UI. Covers route registration, FormRequest validation, JSON resource shape, authorizer gating, CSRF or session-based auth (no Sanctum tokens for browser-held UI), pagination contract, and Feature test coverage. Trigger when adding/modifying any AJAX or polling endpoint in `routes/flow-admin.php`.

2026-05-05
create-controller
Développeurs de logiciels

Use to introduce a new Laravel controller in this package following the FormRequest → DTO → Service → ViewModel → Blade pipeline. Covers route registration in `routes/flow-admin.php`, view namespace usage (`flow-admin::`), CSRF on POST forms, authorizer gating for mutations, and Feature test coverage via Testbench. Trigger when adding/modifying any class under `src/Http/Controllers/`.

2026-05-05
Affichage des 8 principaux skills collectés sur 11 dans ce dépôt.
docmd-docs
Développeurs de logiciels

Maintain the public docmd documentation site in docs-site.

2026-06-20
test-count-readme-sync
Développeurs de logiciels

BEFORE every `git push`, when you have added or removed unit / feature / assertion code in this commit, run the local test suite and reconcile every test-count / assertion-count claim across README.md, the PR description, sample-output blocks, comparison tables, roadmap rows, and inline narrative. Trigger when the commit modifies any `tests/**` file, when you've added or removed an `assert*()` call, when README.md still mentions a previous run's count, or when about to open a PR that touches test files.

2026-04-29
pre-push-self-review
Analystes en assurance qualité des logiciels et testeurs

BEFORE every `git push`, run a systematic self-review on the diff against a checklist of the recurring footguns Copilot has flagged in this codebase. The goal is to catch issues that would otherwise consume Copilot review cycles. Trigger BEFORE typing `git push`, after `git commit`, when about to open a PR with `gh pr create`, when running the local test gate, or when the user asks to "review my changes" / "lint diff" / "check diff".

2026-04-29
copilot-pr-review-loop
Analystes en assurance qualité des logiciels et testeurs

After EVERY commit-push-PR cycle, the agent MUST loop on Copilot review + CI status until ALL Copilot comments resolved AND ALL CI checks green. NEVER stop after a single push. Trigger when opening a PR with `gh pr create`, after `git push` to a PR branch, or when user asks to "fix PR" / "address review" / "make CI green". Applies to ALL repos lopadova/* and padosoft/*. The loop is mandatory for current and future sessions and for any developer working on this codebase.

2026-04-29
review-pr-comments
Analystes en assurance qualité des logiciels et testeurs

Leggi, classifica e indirizza review comments di una pull request in modo sistematico.

2026-04-28
local-copilot-review
Analystes en assurance qualité des logiciels et testeurs

BEFORE every push of a task/subtask branch, run a LOCAL GitHub Copilot CLI review loop on the FULL branch diff vs origin/main and iterate until zero actionable findings. Trigger before `git push`, before `gh pr create`, after completing a subtask implementation, or when the user asks for "local review" / "review locale" / "copilot locale". Complements (never replaces) copilot-pr-review-loop, which handles the PR-level review after push.

2026-07-08
laravel-flow-enterprise
Développeurs de logiciels

Use when working on padosoft/laravel-flow enterprise roadmap tasks, including persistence, queue/replay, approval gates, webhook outbox, companion dashboard contracts, API stability, release docs, or any restart after context loss.

2026-06-20
docmd-docs
Développeurs de logiciels

Create and maintain the docmd documentation site for laravel-flow.

2026-06-19
pre-push-self-review
Analystes en assurance qualité des logiciels et testeurs

BEFORE every `git push`, run a systematic self-review on the diff against a checklist of the recurring footguns Copilot has flagged in this codebase. The goal is to catch issues that would otherwise consume Copilot review cycles. Trigger BEFORE typing `git push`, after `git commit`, when about to open a PR with `gh pr create`, when running the local test gate, or when the user asks to "review my changes" / "lint diff" / "check diff".

2026-05-04
copilot-pr-review-loop
Analystes en assurance qualité des logiciels et testeurs

After EVERY commit-push-PR cycle, the agent MUST loop on Copilot review + CI status until ALL Copilot comments resolved AND ALL CI checks green. NEVER stop after a single push. Trigger when opening a PR with `gh pr create`, after `git push` to a PR branch, or when user asks to "fix PR" / "address review" / "make CI green". Applies to ALL repos lopadova/* and padosoft/*. The loop is mandatory for current and future sessions and for any developer working on this codebase.

2026-05-02
12 dépôts affichés sur 36