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

ovargas

Vue par dépôt de 65 skills collectés dans 3 dépôts GitHub.

skills collectés
65
dépôts
3
mis à jour
2026-07-23
explorateur de dépôts

Dépôts et skills représentatifs

workflow-bug
Analystes en assurance qualité des logiciels et testeurs

Document a bug report with reproduction steps, severity, and expected behavior. Use when the user explicitly requests the Virtual Team bug workflow or when this workflow is the next stage of an active Virtual Team pipeline.

2026-07-23
workflow-check
Analystes en assurance qualité des logiciels et testeurs

Quiz the developer on technical decisions in the current work. Use when the user explicitly requests the Virtual Team check workflow or when this workflow is the next stage of an active Virtual Team pipeline.

2026-07-23
workflow-commit
Développeurs de logiciels

Create clean, atomic git commits following project conventions. Use when the user explicitly requests the Virtual Team commit workflow or when this workflow is the next stage of an active Virtual Team pipeline.

2026-07-23
workflow-contracts
Développeurs de logiciels

Extract, define, and validate API contracts as concrete schema files. Use when the user explicitly requests the Virtual Team contracts workflow or when this workflow is the next stage of an active Virtual Team pipeline.

2026-07-23
workflow-debug
Analystes en assurance qualité des logiciels et testeurs

Investigate a bug, reproduce it, trace the code, and document the root cause. Use when the user explicitly requests the Virtual Team debug workflow or when this workflow is the next stage of an active Virtual Team pipeline.

2026-07-23
workflow-decisions
Développeurs de logiciels

Query project conventions and architectural decisions with source references. Use when the user explicitly requests the Virtual Team decisions workflow or when this workflow is the next stage of an active Virtual Team pipeline.

2026-07-23
workflow-docs
Développeurs de logiciels

Create setup guides, configuration references, runbooks, and operational documentation. Use when the user explicitly requests the Virtual Team docs workflow or when this workflow is the next stage of an active Virtual Team pipeline.

2026-07-23
workflow-doctor
Développeurs de logiciels

Audit stack.md against available skills and report coverage gaps. Use when the user explicitly requests the Virtual Team doctor workflow or when this workflow is the next stage of an active Virtual Team pipeline.

2026-07-23
Affichage des 8 principaux skills collectés sur 49 dans ce dépôt.
flutter-ui-theming
Développeurs de logiciels

Guidelines for building Flutter/Dart UI, theming, and reusable components. Use this skill whenever working on Flutter UI — creating or styling widgets, components, screens, buttons, pills, badges, inputs, navigation bars, drawers, dialogs; setting up or editing colors, ColorScheme, ThemeData, ThemeExtension, TextTheme, fonts, gradients, shadows; or any task that produces or modifies Flutter visual code. Apply it even when the user just says "build a screen", "make a button", "style this", or "add a component", not only when they mention theming explicitly. It enforces a strict palette/theme architecture, prefers native Material widgets over hand-built ones, and prevents unnecessary widget nesting.

2026-05-29
go-gorm
Développeurs de logiciels

Use this skill whenever Go code interacts with a database via GORM — including model definitions, querying, inserts/updates/deletes, transactions, preloading relations, joins, migrations, or repository implementations. Triggers include any mention of `gorm.DB`, `gorm:"..."` tags, `db.Find`, `db.Where`, `db.Create`, `db.Preload`, `db.Joins`, `db.Exec`, `db.Raw`, "use GORM", "load related records", "N+1", "master/detail", or any Go file that imports `gorm.io/gorm`. Apply this skill even when the user doesn't explicitly ask for GORM guidance — if they're touching GORM code, these rules apply.

2026-05-19
flutter-openapi-client
Développeurs de logiciels

Use this skill whenever a Flutter app needs to call a backend API — including initial API client setup, adding new endpoints, handling auth tokens, error mapping, retries, request/response logging, multipart uploads, or regenerating the client from an updated OpenAPI spec. Triggers include "add an endpoint", "call the backend", "Dio interceptor", "OpenAPI", "swagger", "regenerate the API client", "auth token", "401 refresh", or any HTTP work in a Flutter project. Apply even when the user doesn't mention OpenAPI by name — generated clients from the backend spec are the default pattern here.

2026-05-18
flutter-project-structure
Développeurs de logiciels

Use this skill whenever a new Flutter/Dart project is being scaffolded, an existing Flutter project is being reorganized, or a new feature is being added to an existing Flutter app. Triggers include "new Flutter app", "start a Flutter project", "where should this file go in Flutter", "add a feature to my Flutter app", "refactor Flutter folder structure", or any mention of `lib/`, `pubspec.yaml`, or feature module organization in Dart code. Use this even when the user doesn't explicitly ask for structure advice — if they're starting a Flutter project or adding a feature, apply this layout by default.

2026-05-18
flutter-state-management
Développeurs de logiciels

Use this skill whenever state management decisions arise in Flutter code — including creating providers, choosing between Notifier/AsyncNotifier/FutureProvider/StreamProvider, handling async data, side effects in widgets, dependency injection, or testing stateful logic. Triggers include "add a provider", "manage state in Flutter", "Riverpod", "ref.watch", "ref.read", "AsyncValue", "how do I share state across screens", or any Flutter code change that involves reactive state. Apply this skill even when the user doesn't say "Riverpod" — it's the default for all Flutter state work in this codebase.

2026-05-18
flutter-testing
Analystes en assurance qualité des logiciels et testeurs

Use this skill whenever tests are being written, modified, or debugged in a Flutter project — including unit tests for providers/repositories, widget tests for screens, golden tests for visual regression, and integration tests for end-to-end flows. Triggers include "write a test for this", "test this Flutter code", "widget test", "golden test", "mock the API", "test a Riverpod provider", "pumpAndSettle", or any failing test discussion. Apply even when the user doesn't ask explicitly — when modifying production Flutter code, propose the matching tests.

2026-05-18
go-foundations
Développeurs de logiciels

Go coding conventions for dependency injection, module structure, error handling, testing, and context propagation. Load when working on .go files.

2026-05-05
go-gin-api
Développeurs de logiciels

Gin HTTP API conventions — handler structure, middleware chain, error handling, validation, auth, streaming, OpenAPI, versioning. Load when building APIs with github.com/gin-gonic/gin.

2026-05-05
Affichage des 8 principaux skills collectés sur 10 dans ce dépôt.
api-design
Développeurs de logiciels

API endpoint and route handler standards. Load this skill whenever writing or modifying API endpoints, route handlers, middleware, request validation, or response formatting. Trigger on any work touching route files, controller files, or API-related code.

2026-03-07
checkpoints
Développeurs de logiciels

Checkpoint protocol for resuming multi-phase commands after session interruptions

2026-03-07
data-layer
Architectes de bases de données

Database, ORM, migration, and query pattern standards. Load this skill whenever writing or modifying database schemas, migrations, models, repositories, queries, or seed data. Trigger on any work touching model definitions, migration files, or database-related code.

2026-03-07
git-practices
Développeurs de logiciels

Git conventions for branches, commits, and pull requests. Load this skill whenever creating branches, writing commit messages, or opening PRs. Trigger on any git workflow operation — commits, branches, pull requests, or merge operations.

2026-03-07
service-layer
Développeurs de logiciels

Business logic and service organization standards. Load this skill whenever writing or modifying business logic, service functions, domain rules, or orchestration code. Trigger on any work touching service files, use cases, domain logic, or business rules that aren't directly tied to API handling or database access.

2026-03-07
ui-design
Développeurs de logicielsDéveloppeurs web

Frontend coding standards and component patterns. Load this skill whenever writing or modifying frontend code — components, pages, hooks, styling, state management, or anything that renders UI. Trigger on any work touching .tsx, .jsx, .css, .scss files or frontend directories.

2026-03-07
3 dépôts affichés sur 3
Tous les dépôts sont affichés