Skip to main content
Ejecuta cualquier Skill en Manus
con un clic
Repositorio de GitHub

skills_repository

skills_repository contiene 67 skills recopiladas de RyoMurakami1983, con cobertura ocupacional por repositorio y páginas de detalle dentro del sitio.

skills recopiladas
67
Stars
2
actualizado
2026-03-23
Forks
0
Cobertura ocupacional
5 categorías ocupacionales · 100% clasificado
explorador de repositorios

Skills en este repositorio

dotnet-modern-csharp-coding-standards
Desarrolladores de software

モダン C#(12+)で record、パターンマッチング、合成、Result 型エラーハンドリングを使った 慣用的で高性能なコードを書く。こんなときに使う: 新規 C# コードの作成、API 設計、 または C# 12+ イディオムへのリファクタリング。

2026-03-23
dotnet-wpf-employee-input
Desarrolladores de software

こんなときに使う: WPFアプリケーションに社員番号入力ダイアログを追加し、 DPAPIで暗号化された設定として社員IDを安全に保存したいとき。

2026-03-21
evidence-response
Oficiales de cumplimiento

こんなときに使う: 繰り返し発生する業務問い合わせ(監査、アンケート、コンプライアンス調査)に対して、 過去の回答実績とエビデンスを活用して回答するためのテンプレートスキル。 再利用可能な7ステップワークフローとスキャフォールディングファイルを提供する。

2026-03-21
pdf
Desarrolladores de software

こんなときに使う: PDFテキスト抽出、Optical Character Recognition (OCR)、結合/分割、フォーム処理をuvベースの再現可能コマンドで実行したいときに使う。

2026-03-21
dotnet-access-to-oracle-migration
Arquitectos de bases de datos

こんなときに使う: Migrate Access SQL to Oracle, generate .NET C# code. Use when converting Access queries to Oracle.

2026-03-21
dotnet-generic-matching
Desarrolladores de software

こんなときに使う: .NETドメイン層で汎用的な重み付きフィールドマッチングとスコアリングを実装。

2026-03-21
dotnet-local-tools
Desarrolladores de software

こんなときに使う: dotnet-tools.json によるローカル .NET ツールの管理。開発環境と CI/CD パイプライン全体で バージョン固定された一貫したツール環境を構築。リポジトリ単位の CLI ツール管理時に使用。

2026-03-21
dotnet-ocr-matching-workflow
Desarrolladores de software

こんなときに使う: 基盤・インフラ・プレゼンテーションの各スキルをエンドツーエンドで合成し、OCR→DBマッチングの完全なシステムをオーケストレーションします。

2026-03-21
dotnet-package-management
Desarrolladores de software

こんなときに使う: NuGet パッケージを Central Package Management (CPM) と dotnet CLI コマンドで管理。 .NET プロジェクト間でパッケージバージョンの追加・削除・更新・一元化を行うときに使用。

2026-03-21
dotnet-project-structure
Desarrolladores de software

こんなときに使う: モダン .NET プロジェクト構造(.slnx、Directory.Build.props、Central Package Management、 SourceLink、バージョン管理、SDK固定)。.NETソリューションのセットアップ・近代化時に使用。

2026-03-21
dotnet-wpf-comparison-view
Desarrolladores de software

こんなときに使う: WPFでサイドバイサイド比較ビューを構築。不一致ハイライトとチェックボックス検証付きのマッチング結果表示。

2026-03-21
dotnet-wpf-dify-api-integration
Desarrolladores de software

こんなときに使う: WPFアプリにDify APIを追加。DPAPI設定とSSEストリーミング対応。Dify連携構築時に使用。

2026-03-21
dotnet-wpf-ocr-parameter-input
Desarrolladores de software

こんなときに使う: WPFにOCR実行パラメータ入力UIタブを構築。進捗表示付き。OCR処理タブに設定可能な入力フィールドを追加する際に使用。

2026-03-21
dotnet-wpf-pdf-preview
Desarrolladores de software

こんなときに使う: Use when adding PDF upload and inline WebView2 preview to a WPF app with MVVM file selection and async initialization.

2026-03-21
skill
Desarrolladores de software

スキルの作成・改善・検証・評価を 1 つの入口にまとめる。Use when: 新しいスキルを作りたいとき、公開済みスキルを改善したいとき、品質や効果を確認したいとき、関連スキル群をまとめて設計したいとき。

2026-03-21
dotnet-crap-analysis
Analistas de garantía de calidad de software y probadores

Analyze code coverage and CRAP (Change Risk Anti-Patterns) scores to identify high-risk .NET code. Use when: evaluating test coverage, setting up OpenCover with ReportGenerator, or enforcing coverage thresholds in CI/CD pipelines.

2026-03-21
dotnet-csharp-api-design
Desarrolladores de software

Design stable, compatible public APIs for NuGet packages and distributed systems. Use when: planning API surfaces, managing breaking changes, implementing wire compatibility, or reviewing pull requests for API compatibility issues.

2026-03-21
dotnet-csharp-concurrency-patterns
Desarrolladores de software

Choose the right .NET concurrency abstraction — async/await, Channels, Akka.NET Streams, Reactive Extensions, or Akka.NET Actors. Use when: deciding how to handle concurrent operations, evaluating concurrency tools, or managing state across multiple concurrent entities.

2026-03-21
dotnet-database-performance
Desarrolladores de software

Optimize .NET database access with CQRS read/write separation, N+1 prevention, AsNoTracking, row limits, and SQL-side joins. Use when: designing data access layers, optimizing slow queries, or choosing between EF Core and Dapper.

2026-03-21
dotnet-efcore-patterns
Arquitectos de bases de datos

Apply Entity Framework Core best practices including NoTracking by default, query splitting, migration management, and dedicated migration services. Use when: setting up EF Core, optimizing queries, or managing database migrations.

2026-03-21
dotnet-extensions-configuration
Desarrolladores de software

Implement strongly-typed configuration with validation using Microsoft.Extensions.Options. Bind appsettings.json to POCO classes, validate at startup with Data Annotations or IValidateOptions<T>, and choose correct IOptions lifetime for each scenario. Use when: designing configuration classes that are testable, validated, and maintainable.

2026-03-21
dotnet-extensions-dependency-injection
Desarrolladores de software

Organize DI registrations using IServiceCollection extension methods. Group related services into composable Add* methods for clean Program.cs, reusable test configuration, and proper lifetime management. Use when: structuring dependency injection in ASP.NET Core or .NET applications.

2026-03-21
dotnet-marketplace-publishing
Desarrolladores de software

Publish skills and agents to the dotnet-skills Claude Code marketplace. Use when: adding new skills, registering agents, updating plugin.json, or releasing a new marketplace version.

2026-03-21
dotnet-mjml-email-templates
Desarrolladores de software

Build responsive email templates using MJML markup language in .NET. Compiles to cross-client HTML that works in Outlook, Gmail, and Apple Mail. Includes template renderer, layout patterns, composer pattern, and variable substitution. Use when: creating transactional or notification emails that must render correctly across all major email clients.

2026-03-21
dotnet-oracle-wpf-integration
Desarrolladores de software

Add Oracle DB connection to WPF apps with repository pattern and CRUD operations. Use when: integrating Oracle Database into existing WPF applications with MVVM settings dialog, repository pattern, and secure DPAPI-encrypted configuration.

2026-03-21
dotnet-pdf
Desarrolladores de software

Use when: you need to route a .NET PDF-related task to the right skill, such as scan PDF lightweighting, WPF PDF preview, OCR input optimization, or future PDF split/crop workflows.

2026-03-21
scan-pdf-lightweight
Desarrolladores de software

Use when: you need to reduce scanned PDF size in a .NET app for OCR upload stability, token reduction, or network resilience, especially by rasterizing scan pages and rebuilding an OCR-friendly PDF with a safe fallback path.

2026-03-21
dotnet-playwright-blazor
Analistas de garantía de calidad de software y probadores

Write end-to-end UI tests for Blazor Server and WebAssembly applications using Playwright. Covers setup, navigation, selectors, authentication, error handling, and CI integration. Use when: testing Blazor components, forms, or user workflows with Playwright.

2026-03-21
dotnet-playwright-ci-caching
Desarrolladores de software

Cache Playwright browser binaries in CI/CD pipelines (GitHub Actions, Azure DevOps) to eliminate 1-2 minute download overhead on every build. Uses version-based cache keys derived from Central Package Management (CPM) for automatic invalidation. Use when: setting up or optimizing CI/CD for .NET projects with Playwright E2E tests.

2026-03-21
dotnet-serialization
Desarrolladores de software

Choose the right serialization format for .NET applications and implement it safely. Use when: selecting serialization for APIs, messaging, or persistence, migrating from Newtonsoft.Json, or implementing AOT-compatible serialization with source generators.

2026-03-21
dotnet-slopwatch
Analistas de garantía de calidad de software y probadores

Two-layer slop prevention for .NET: code-level detection via Slopwatch CLI (SW-xxx) and architectural anti-pattern catalog (SLOP-xxx). Use when: validating LLM-generated C# code, checking for layer boundary violations, or integrating anti-slop quality gates into CI/CD.

2026-03-21
dotnet-snapshot-testing
Analistas de garantía de calidad de software y probadores

Approve rendered output, API surfaces, HTTP responses, and serialized objects using Verify snapshot testing in .NET. Captures output as human-reviewed baselines and detects unintended changes through diff comparison. Use when: validating complex output where manual assertions are impractical.

2026-03-21
dotnet-testcontainers
Analistas de garantía de calidad de software y probadores

Write integration tests using Testcontainers for .NET with xUnit and real Docker infrastructure. Covers SQL Server, PostgreSQL, Redis, RabbitMQ, multi-container networks, container reuse, and Respawn database reset. Use when: writing integration tests that need real databases, caches, or message queues instead of mocks.

2026-03-21
dotnet-type-design-performance
Desarrolladores de software

Design .NET types for performance with sealed classes, readonly structs, static functions, deferred enumeration, and immutable collections. Use when: designing new types, reviewing performance, or choosing between class/struct/record.

2026-03-21
dotnet-verify-email-snapshots
Analistas de garantía de calidad de software y probadores

Snapshot test email templates using Verify to catch rendering regressions. Validates rendered HTML output matches approved baselines with MJML support. Use when: verifying email template rendering against human-approved snapshots.

2026-03-21
dotnet-wpf-mvvm-patterns
Desarrolladores de software

Build WPF applications using CommunityToolkit.Mvvm with proper MVVM separation, commanding, validation, and dialog patterns. Use when: implementing new WPF views or refactoring code-behind into ViewModel-first architecture.

2026-03-21
dotnet-wpf-secure-config
Desarrolladores de software

Add DPAPI-encrypted config management to WPF apps with secure credential storage. Use when: setting up encrypted configuration for WPF applications.

2026-03-21
python-debug-tdd
Analistas de garantía de calidad de software y probadores

Diagnose and fix Python bugs with a TDD-style workflow (Red → investigation → Green → side-effect checks) while preserving regression coverage. Use when: a bug is reported and you need a minimal, verifiable fix.

2026-03-21
agent-batch-workflow
Desarrolladores de software

並列エージェントで複数ファイル・複数 skill のバッチ作業を進め、進捗と品質ゲートを構造化して管理する。Use when: 1 セッションで複数対象をまとめて処理し、ブランチ運用とレビューを保ったまま進めたいとき。

2026-03-21
agent-explain-on-demand
Especialistas en gestión de proyectos

エージェントの動作・モード・変更点・できることを、聞かれたときだけ必要な深さで説明する。Use when: ユーザーが今何をしているか、どんなモードがあるか、更新で何が変わったかを知りたがっているとき。

2026-03-21
Mostrando las 40 principales de 67 skills recopiladas en este repositorio.