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

AratKruglik

Vue par dépôt de 95 skills collectés dans 4 dépôts GitHub.

skills collectés
95
dépôts
4
mis à jour
2026-06-16
explorateur de dépôts

Dépôts et skills représentatifs

node-conventions
Développeurs de logiciels

Node.js backend conventions: project layout, configuration, logging, routing, and error handling patterns. Apply when implementing or modifying Node.js backend code in projects matching the nodejs stack profile. Use this skill to: - Pick conventional file/folder structure for a new module. - Wire configuration through env vars correctly. - Use the project's existing logger style. - Implement error handling that matches the framework (Express/Fastify/Koa). - Follow async/await patterns consistently. Do NOT use this skill for: - Frontend code (React/Vue/RN have their own conventions). - NestJS-specific patterns (decorators, DI, modules) — nest-plugin owns those. - Database schema design (call out as a sub-task; npm-patterns covers package management, not DB).

2026-06-16
pipeline-orchestrator
Autres occupations informatiques

Universal SDLC pipeline orchestrator with stack provider auto-discovery. Reads stack.md profiles from installed plugins, picks the highest-priority match, executes a 5-phase pipeline (BA → Dev → QA → Sec → Docs) plus stack-defined extra phases. Use when: - User invokes /sdlc:start "<feature>" - User asks to "run the SDLC pipeline" or "go through the full pipeline" - You need to coordinate specialist agents to deliver a complete feature Do NOT use for: - Trivial single-file edits (just edit directly) - Read-only questions about the codebase - Casual conversation

2026-06-16
angular-conventions
Développeurs de logiciels

Angular 18-21 project structure, standalone components vs NgModule, control flow (@if/@for/@switch + *ngIf/*ngFor legacy), decorators, dependency injection (inject() function), lifecycle hooks, pipes, Angular Universal SSR pointer. Use this skill to: - Detect project style (standalone vs NgModule) and apply matching patterns. - Pick correct decorators and DI approach. - Use modern control flow (@if/@for/@switch) in Angular 17+ projects. - Apply `inject()` function over constructor injection where appropriate. - Wire bootstrap correctly (bootstrapApplication for standalone, AppModule for legacy). Do NOT use this skill for: - State management (see angular-state-and-rx). - Routing (see angular-routing). - Forms (see angular-forms). - Testing (see angular-testing).

2026-06-16
angular-forms
Développeurs de logiciels

Angular forms: Reactive Forms (preferred — typed FormGroup/FormControl since Angular 14, FormBuilder, custom + async validators, FormArray, multi-step) and Template-driven (`[(ngModel)]` + FormsModule). Validation strategies, server error mapping, accessibility. Use this skill to: - Build Reactive Forms with typed FormGroup/FormControl. - Use FormBuilder для concise syntax. - Implement custom synchronous and async validators. - Wire FormArray for dynamic field lists. - Map server errors back to form fields. - Pick Reactive vs Template-driven (prefer Reactive). Do NOT use this skill for: - General conventions (see angular-conventions). - State management beyond forms (see angular-state-and-rx). - Routing (see angular-routing). - Testing forms (see angular-testing).

2026-06-16
angular-routing
Développeurs de logiciels

Angular Router (built-in `@angular/router`) — route configuration for standalone and NgModule projects, functional guards (Angular 14.1+), lazy loading, route resolvers, typed params via signals/observables, programmatic navigation, route data and meta. Use this skill to: - Configure routes (standalone-style or NgModule-style). - Use functional guards (canActivate as function, preferred over class-based in 17+). - Lazy-load components or feature modules. - Implement auth guards via route meta + functional guards. - Read params/queries via `inject(ActivatedRoute)` + signals or RxJS. Do NOT use this skill for: - General conventions (see angular-conventions). - State management (see angular-state-and-rx). - Forms (see angular-forms). - Testing routes (see angular-testing).

2026-06-16
angular-state-and-rx
Développeurs de logiciels

State management for Angular 18-21: signals (signal/computed/effect), services-as-state, NgRx Store + Effects + Selectors, NgRx Component Store, NgRx Signals (newer signal-based store). RxJS essentials — operators, async pipe, takeUntilDestroyed, signal/observable interop. Use this skill to: - Pick the right state tool (signals / services / NgRx variant / vue-query equivalent). - Use signals correctly (signal/computed/effect — when each). - Build a Pinia-style service-as-state singleton. - Set up NgRx Store + Effects + Selectors. - Use RxJS without leaking subscriptions (async pipe, takeUntilDestroyed, Subject patterns). - Bridge signals ↔ observables via toSignal / toObservable. Do NOT use this skill for: - General Angular conventions (see angular-conventions). - Routing state (see angular-routing). - Form state (see angular-forms). - Testing state (see angular-testing).

2026-06-16
angular-testing
Analystes en assurance qualité des logiciels et testeurs

Testing Angular 18-21: TestBed, component harnesses (@angular/cdk/testing), Karma+Jasmine (default historical) vs Jest (jest-preset-angular, modern), Angular Testing Library (RTL-style). HttpClient mocking via HttpTestingController. NgRx Effects testing. Cypress / Playwright e2e. Use this skill to: - Detect runner (Karma+Jasmine vs Jest) and configure correctly. - Write component tests with TestBed. - Use component harnesses for Material / custom UI components. - Mock HttpClient via provideHttpClientTesting + HttpTestingController. - Test signal-based inputs with componentRef.setInput(). - Test NgRx Effects with provideMockActions. Do NOT use this skill for: - General Angular conventions (see angular-conventions). - Routing patterns broadly (see angular-routing — covers testing routes briefly). - Form patterns broadly (see angular-forms).

2026-06-16
aspnet-conventions
Développeurs de logiciels

ASP.NET Core web framework conventions: Minimal API vs MVC controllers, Program.cs composition, DI lifetimes (Scoped/Singleton/Transient), Options pattern with IOptions<T>, middleware ordering (HTTPS redirect → routing → authentication → authorization), model binding and validation (FluentValidation / DataAnnotations), ProblemDetails error handling, structured logging with ILogger<T>, configuration layering (appsettings.json + environment variables + User Secrets), and health checks. Works alongside csharp-foundation:csharp-conventions and aspnet-core-plugin:efcore-patterns. Use this skill to: - Compose Program.cs correctly — register services, configure middleware in the right order, map endpoints. - Apply the Options pattern to avoid passing raw IConfiguration into services. - Write Minimal API endpoint groups with typed results and authorization. - Handle cross-cutting errors uniformly with ProblemDetails. - Configure structured logging and health checks for production readiness. Do NOT use this skill fo

2026-06-16
Affichage des 8 principaux skills collectés sur 61 dans ce dépôt.
database-optimizer
Développeurs de logiciels

Use when investigating slow queries, analyzing execution plans, or optimizing database performance. Invoke for index design, query rewrites, configuration tuning, partitioning strategies, lock contention resolution. Українською: Оптимізуй базу, повільний запит, план виконання, індекси, N+1, кешування запитів, профілювання, блокування, партиціювання, перепиши запит, аналіз продуктивності.

2026-04-19
laravel-actions-patterns
Développeurs de logiciels

Use when working with lorisleiva/laravel-actions package - AsController, AsJob, AsObject, AsListener patterns, handle() signatures, and deciding which trait combination to use for a given Action class.

2026-04-19
octane-frankenphp-gotchas
Développeurs de logiciels

Use when debugging unexpected behavior in Laravel Octane with FrankenPHP - stale data between requests, memory leaks, singleton contamination, static property state, or anything that "works once then breaks".

2026-04-19
laravel-architecture
Développeurs de logiciels

Generates a Laravel architecture based on best practices for modern Laravel

2026-04-02
architect-review
Développeurs de logiciels

Master software architect specializing in modern architecture patterns, clean architecture, microservices, event-driven systems, and DDD. Reviews system designs and code changes for architectural integrity, scalability, and maintainability. Use PROACTIVELY for architectural decisions. Українською: Архітектурний огляд, рев'ю архітектури, патерни проектування, чиста архітектура, мікросервіси, SOLID, DDD, зв'язність, пов'язаність, масштабованість.

2026-03-14
architecture-designer
Développeurs de logiciels

Use when designing new system architecture, reviewing existing designs, or making architectural decisions. Invoke for system design, architecture review, design patterns, ADRs, scalability planning. Українською: Проєктуй архітектуру, системний дизайн, мікросервіси, моноліт, модулі, зв'язність, пов'язаність, ADR, масштабування, компроміси, архітектурне рішення, вибір патерну.

2026-03-14
brainstorming
Développeurs de logiciels

Use before creative or constructive work (features, architecture, behavior). Transforms vague ideas into validated designs through disciplined reasoning and collaboration. Українською: брейнсторм, мозковий штурм, генерація ідей, аналіз варіантів, підходи до вирішення, накидати ідеї, обговорити рішення, вибрати підхід, проектування фічі, валідація ідеї, творче мислення, дизайн рішення.

2026-03-14
code-reviewer
Analystes en assurance qualité des logiciels et testeurs

Elite code review expert specializing in modern AI-powered code analysis, security vulnerabilities, performance optimization, and production reliability. Masters static analysis tools, security scanning, and configuration review with 2024/2025 best practices. Use PROACTIVELY for code quality assurance. Українською: Перевір код, рев'ю коду, якість коду, знайди баги, вразливості безпеки, стандарти кодування, рефакторинг, код смел, статичний аналіз, продуктивність коду, надійність.

2026-03-14
Affichage des 8 principaux skills collectés sur 23 dans ce dépôt.
laravel-pdf
Développeurs de logiciels

Generate PDFs from Blade views or HTML using spatie/laravel-pdf. Covers creating, formatting, saving, downloading, and testing PDFs with the Browsershot, Cloudflare, or DOMPDF driver.

2026-03-22
react-inertia
Développeurs de logiciels

React + Inertia.js v2 patterns for Laravel full-stack applications. Covers page components, form handling, layouts, navigation, shared data, and typed props. Trigger words — EN: React component, Inertia page, TypeScript component, form handling, useForm, router, Head, Link, page props, shared data, persistent layout, Inertia render, page navigation. Trigger words — UA: React компонент, Inertia сторінка, TypeScript компонент, форми, useForm, навігація, Head, Link, пропси сторінки, спільні дані, макет, Inertia рендер, навігація сторінок.

2026-03-22
tailwind-variants
Développeurs web

Tailwind Variants (tv()) patterns for component styling with variants, slots, compound variants, and responsive design. Tailwind CSS 4 compatible. Trigger words — EN: component styles, Tailwind variants, tv(), slots, responsive variants, compound variants, style composition, variant API, button variants, card styles. Trigger words — UA: стилі компонентів, Tailwind варіанти, tv(), слоти, responsive, компонування стилів, compound variants, варіанти кнопки, стилі картки.

2026-03-22
laravel-architecture
Développeurs de logiciels

Generates a Laravel architecture based on best practices for modern Laravel

2026-03-22
laravel-coder
Développeurs de logiciels

Generates modern maintainable Laravel applications code with a focus on

2026-03-22
laravel-specialist
Développeurs de logiciels

Use when building Laravel 13+ applications requiring Eloquent ORM, API

2026-03-22
postgres-best-practices
Architectes de bases de données

Postgres performance optimization and best practices from Supabase. Use this skill when writing, reviewing, or optimizing Postgres queries, schema designs, or database configurations. Українською: Кращі практики Postgres, оптимізуй базу, продуктивність запитів, індексування, конфігурація бази, пул з'єднань, RLS, схема даних, аналіз запиту, масштабування.

2026-03-22
postgresql-optimization
Administrateurs de bases de données

PostgreSQL database optimization workflow for query tuning, indexing strategies, performance analysis, and production database management. Українською: Оптимізуй PostgreSQL, тюнінг запитів, стратегії індексації, аналіз продуктивності, EXPLAIN ANALYZE, план запиту, повільний запит, vacuum, конфігурація бази, профілювання.

2026-03-22
4 dépôts affichés sur 4
Tous les dépôts sont affichés