Skip to main content
Ejecuta cualquier Skill en Manus
con un clic
runceel
Perfil de creador de GitHub

runceel

Vista por repositorio de 86 skills recopiladas en 17 repositorios de GitHub.

skills recopiladas
86
repositorios
17
actualizado
2026-07-02
mapa de repositorios

Dónde viven las skills

Repositorios principales por número de skills recopiladas, con su participación en este catálogo del creador y su variedad ocupacional.

#01
ReactiveProperty
25 skills · 2026-06-24
Desarrolladores de softwareAnalistas de garantía de calidad de software y probadores
2 categorías ocupacionales · 100% clasificado
29%participación
#02
agent-teams-sample
11 skills · 2026-04-08
Desarrolladores de softwareEspecialistas en gestión de proyectosAnalistas de garantía de calidad de software y probadores
3 categorías ocupacionales · 100% clasificado
13%participación
#03
ai-dev-dotnetapp
8 skills · 2026-04-27
Desarrolladores de softwareAnalistas de garantía de calidad de software y probadoresAdministradores de redes y sistemas informáticosEspecialistas en gestión de proyectos
4 categorías ocupacionales · 100% clasificado
9.3%participación
#04
wpf-github-copilot
8 skills · 2026-04-18
Analistas de gestiónDesarrolladores de softwareAnalistas de garantía de calidad de software y probadoresEspecialistas en gestión de proyectos
4 categorías ocupacionales · 100% clasificado
9.3%participación
#05
ai-dev-template
5 skills · 2026-04-24
Desarrolladores de softwareAnalistas de garantía de calidad de software y probadores
2 categorías ocupacionales · 100% clasificado
5.8%participación
#06
SkimDownForWindows
5 skills · 2026-06-19
Desarrolladores de softwareAnalistas de garantía de calidad de software y probadores
2 categorías ocupacionales · 80% clasificado
5.8%participación
#07
github-copilot-excel-document-to-code
4 skills · 2026-02-25
Desarrolladores de software
1 categorías ocupacionales · 100% clasificado
4.7%participación
#08
agent-framework-python-lab
4 skills · 2026-06-16
clasificación pendiente
4.7%participación
Aquí se muestran los 8 repositorios principales; la lista completa continúa abajo.
explorador de repositorios

Repositorios y skills representativas

releasing-reactiveproperty
Desarrolladores de software

Release the ReactiveProperty NuGet package set from this repository. Use this skill whenever the user asks to release, publish, ship, pre-release/prerelease, stable release, tag v*, push NuGet packages, or mentions "リリース", "pre リリース", "正式リリース", "NuGet 公開", or "パッケージ公開" for ReactiveProperty, even if they do not use the skill name. Handles tag-driven releases, mode/version confirmation, GitHub Actions monitoring, NuGet/GitHub Release verification, and failure guardrails. Do not use for setting up NuGet OIDC/trusted publishing; use nuget-trusted-publishing instead.

2026-06-24
development-workflow
Desarrolladores de software

ReactiveProperty repository development policy. Use whenever you implement a feature or bug fix, change library or test code under Source/ or Test/, make a design or architecture decision, or write documentation in this repo. Enforces strict Test-Driven Development (Red -> Green -> Refactor) with MSTest and `dotnet test ReactiveProperty.slnx`, requires recording design decisions as ADRs under dev-docs/adr/, and defines the documentation split: docs/ is user-facing (published via VuePress) while dev-docs/ holds implementer/contributor documentation. Triggers include "implement", "add feature", "fix bug", "TDD", "red green refactor", "design decision", "architecture", "ADR", "where do docs go", and "contributor docs".

2026-06-20
analyzing-dotnet-performance
Desarrolladores de software

Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I/O with tiered severity classification. Use when analyzing .NET code for optimization opportunities, reviewing hot paths, or auditing allocation-heavy patterns.

2026-06-20
binlog-failure-analysis
Desarrolladores de software

Analyze MSBuild binary logs to diagnose build failures by replaying binlogs to searchable text logs. Only activate in MSBuild/.NET build context. USE FOR: build errors that are unclear from console output, diagnosing cascading failures across multi-project builds, tracing MSBuild target execution order, investigating common errors like CS0246 (type not found), MSB4019 (imported project not found), NU1605 (package downgrade), MSB3277 (version conflicts), and ResolveProjectReferences failures. Requires an existing .binlog file. DO NOT USE FOR: generating binlogs (use binlog-generation), build performance analysis (use build-perf-diagnostics), non-MSBuild build systems. INVOKES: dotnet msbuild binlog replay, grep, cat, head, tail for log analysis.

2026-06-20
check-bin-obj-clash
Desarrolladores de software

Detects MSBuild projects with conflicting OutputPath or IntermediateOutputPath. Only activate in MSBuild/.NET build context. USE FOR: builds failing with 'Cannot create a file when that file already exists', 'The process cannot access the file because it is being used by another process', intermittent build failures that succeed on retry, missing outputs in multi-project builds, multi-targeting builds where project.assets.json conflicts. Diagnoses when multiple projects or TFMs write to the same bin/obj directories due to shared OutputPath, missing AppendTargetFrameworkToOutputPath, or extra global properties like PublishReadyToRun creating redundant evaluations. DO NOT USE FOR: file access errors unrelated to MSBuild (OS-level locking), single-project single-TFM builds, non-MSBuild build systems. INVOKES: dotnet msbuild binlog replay, grep for output path analysis.

2026-06-20
coverage-analysis
Analistas de garantía de calidad de software y probadores

Automated, project-wide code coverage and CRAP (Change Risk Anti-Patterns) score analysis for .NET projects with existing unit tests. Auto-detects solution structure, runs coverage collection via `dotnet test` (supports both Microsoft.Testing.Extensions.CodeCoverage and Coverlet), generates reports via ReportGenerator, calculates CRAP scores per method, and surfaces risk hotspots — complex code with low test coverage that is dangerous to modify. Use when the user wants project-wide coverage analysis with risk prioritization, coverage gap identification, CRAP score computation across an entire solution, or to diagnose why coverage is stuck or plateaued and identify what methods are blocking improvement. DO NOT USE FOR: targeted single-method CRAP analysis (use crap-score skill), writing tests, running tests without coverage collection, applying test filters, producing TRX reports, or troubleshooting test execution (use run-tests for all of these).

2026-06-20
directory-build-organization
Desarrolladores de software

Guide for organizing MSBuild infrastructure with Directory.Build.props, Directory.Build.targets, Directory.Packages.props, and Directory.Build.rsp. Only activate in MSBuild/.NET build context. USE FOR: structuring multi-project repos, centralizing build settings, implementing NuGet Central Package Management (CPM) with ManagePackageVersionsCentrally, consolidating duplicated properties across .csproj files, setting up multi-level Directory.Build hierarchy with GetPathOfFileAbove, understanding evaluation order (Directory.Build.props → SDK .props → .csproj → SDK .targets → Directory.Build.targets). Critical pitfall: $(TargetFramework) conditions in .props silently fail for single-targeting projects — must use .targets. DO NOT USE FOR: non-MSBuild build systems, migrating legacy projects to SDK-style (use msbuild-modernization), single-project solutions with no shared settings. INVOKES: no tools — pure knowledge skill.

2026-06-20
dotnet-aot-compat
Desarrolladores de software

Make .NET projects compatible with Native AOT and trimming by systematically resolving IL trim/AOT analyzer warnings. USE FOR: making projects AOT-compatible, fixing trimming warnings, resolving IL warnings (IL2026, IL2070, IL2067, IL2072, IL3050), adding DynamicallyAccessedMembers annotations, enabling IsAotCompatible. DO NOT USE FOR: publishing native AOT binaries, optimizing binary size, replacing reflection-heavy libraries with alternatives. INVOKES: no tools — pure knowledge skill.

2026-06-20
Mostrando las 8 principales de 25 skills recopiladas en este repositorio.
breakdown-epic-arch
Desarrolladores de software

Prompt for creating the high-level technical architecture for an Epic, based on a Product Requirements Document.

2026-04-08
clean-architecture-guide
Desarrolladores de software

Modular Monolith + Clean Architecture の設計ガイド。新しいモジュールの作成、画面の実装、機能追加を行う際には、必ずこのスキルを参照して従ってください。

2026-04-08
create-specification
Especialistas en gestión de proyectos

Create a new specification as a GitHub Issue, optimized for Generative AI consumption.

2026-04-08
documentation-guide
Desarrolladores de software

ドキュメント作成時の共通ルール。Markdown ドキュメントを新規作成・更新する際には、必ずこのスキルを参照して従ってください。

2026-04-08
dotnet-best-practices
Desarrolladores de software

Ensure .NET/C# code meets best practices for the solution/project.

2026-04-08
e2e-test
Analistas de garantía de calidad de software y probadores

playwright-cli を使った E2E テストの実行スキル。ブラウザを headless モードで起動し、テスト結果をスクリーンショットとして screenshots/ 配下の日付付きフォルダーに保存する。E2E テストを実行する際には、必ずこのスキルに従ってください。

2026-04-08
feature-lifecycle
Especialistas en gestión de proyectos

大きな機能を実装する際に使用するワークフロースキル。6 つのカスタムエージェント(Orchestrator / Product Manager / Architect / Developer / Reviewer / Tester)が協調し、仕様策定から実装・テスト・マージまでの全ライフサイクルを自律的に駆動する。新機能の追加や大規模な変更を行う場合は、必ずこのスキルに従ってください。

2026-04-08
github-flow
Desarrolladores de software

このリポジトリでの開発フロー(GitHub Flow)を定義するスキル。feature ブランチの作成から Draft PR、レビュー、Squash Merge までの一連の作業手順とルールを示します。コードを変更する作業を行う場合は、必ずこのスキルに従ってください。

2026-04-08
Mostrando las 8 principales de 11 skills recopiladas en este repositorio.
bunit
Analistas de garantía de calidad de software y probadores

bUnit 2.x を使用した Blazor コンポーネントのユニットテストのベストプラクティスとガイドライン

2026-04-27
clean-architecture-guide
Desarrolladores de software

Modular Monolith + Clean Architecture の設計ガイド。新しいモジュールの作成、画面の実装、機能追加を行う際には、必ずこのスキルを参照して従ってください。

2026-04-27
feature-lifecycle
Especialistas en gestión de proyectos

7 つのカスタムエージェント(Orchestrator / Product Manager / Architect / Developer / Reviewer / Tester / Documentation)が協調して機能開発を自律的に進めるワークフロースキル。仕様策定から実装・テスト・マージ、およびドキュメント追従までの全ライフサイクルを定義する。

2026-04-27
github-flow
Desarrolladores de software

このリポジトリでの開発フロー(GitHub Flow)を定義するスキル。feature ブランチの作成から Draft PR、レビュー、Squash Merge までの一連の作業手順とルールを示します。コードを変更する作業を行う場合は、必ずこのスキルに従ってください。

2026-04-27
quick-fix
Desarrolladores de software

feature-lifecycle で作成済みの PR に対して、レビュー指摘やユーザーの直接指示による微修正を軽量フローで反映するスキル。Orchestrator から Developer に委譲して実行する。

2026-04-27
cloud-agent-lifecycle
Desarrolladores de software

GitHub Cloud Agent の readonly GitHub CLI 制約下で feature-lifecycle を回すためのファイルベース運用スキル。Issue/PR への書き込みができない場合に、仕様・状態台帳・エージェント間ログ・PR 本文案をリポジトリ内ファイルとして管理する。

2026-04-27
e2e-test
Analistas de garantía de calidad de software y probadores

Playwright MCP server が提供されている場合は MCP を優先し、未提供時は playwright-cli で E2E テストを実行するスキル。ブラウザを headless モードで起動し、テスト結果を screenshots/ 配下の日付付きフォルダーに保存する。E2E テストを実行する際には、必ずこのスキルに従ってください。

2026-04-27
playwright-cli
Administradores de redes y sistemas informáticos

Fallback browser automation via playwright-cli for web testing, form filling, screenshots, and data extraction. Prefer Playwright MCP server tools when they are available; use this CLI only when MCP tools are not provided or cannot perform the required operation.

2026-04-27
code-reviewer
Analistas de garantía de calidad de software y probadores

Expert code reviewer for WPF Clean Architecture projects. Reviews implementation against spec, architecture rules, and .NET best practices.

2026-04-18
dev-flow
Desarrolladores de software

4-phase software development flow: Spec Writing → Spec Review → Implementation → Code Review. Used with the dev-flow-orchestrator extension.

2026-04-18
developer
Desarrolladores de software

Expert WPF Clean Architecture developer. Implements product code and unit tests from approved specifications.

2026-04-18
dotnet-10
Especialistas en gestión de proyectos

Provides up-to-date knowledge about .NET 10 and C# 14 for WPF application development. Use this skill when developing WPF apps targeting .NET 10, or when asked about .NET 10 / C# 14 features.

2026-04-18
spec-reviewer
Analistas de gestión

Expert specification reviewer for WPF Clean Architecture projects. Evaluates specifications for clarity, completeness, correctness, and architectural fit.

2026-04-18
spec-writer
Analistas de gestión

Expert specification writer for WPF Clean Architecture projects. Produces structured, implementation-ready functional specifications.

2026-04-18
wpf-clean-architecture-mvvm
Analistas de gestión

Design guidelines for WPF applications using .NET 10 C#, MVVM Toolkit, Clean Architecture, Modular Monolith, and .NET Aspire. Use this skill when creating, modifying, or reviewing any part of this application's architecture, project structure, or code organization.

2026-04-18
aspire
Desarrolladores de software

Aspire skill covering the Aspire CLI, AppHost orchestration, service discovery, integrations, MCP server, VS Code extension, Dev Containers, GitHub Codespaces, templates, dashboard, and deployment. Use when the user asks to create, run, debug, configure, deploy, or troubleshoot an Aspire distributed application.

2026-04-18
clean-architecture-guide
Desarrolladores de software

Modular Monolith + Clean Architecture の設計ガイド。新しいモジュールの作成、画面の実装、機能追加を行う際には、必ずこのスキルを参照して従ってください。

2026-04-24
e2e-test
Analistas de garantía de calidad de software y probadores

playwright-cli を使った E2E テストの実行スキル。ブラウザを headless モードで起動し、テスト結果をスクリーンショットとして screenshots/ 配下の日付付きフォルダーに保存する。E2E テストを実行する際には、必ずこのスキルに従ってください。

2026-04-24
feature-lifecycle
Desarrolladores de software

7 つのカスタムエージェント(Orchestrator / Product Manager / Architect / Developer / Reviewer / Tester / Documentation)が協調して機能開発を自律的に進めるワークフロースキル。仕様策定から実装・テスト・マージ、およびドキュメント追従までの全ライフサイクルを定義する。

2026-04-24
github-flow
Desarrolladores de software

このリポジトリでの開発フロー(GitHub Flow)を定義するスキル。feature ブランチの作成から Draft PR、レビュー、Squash Merge までの一連の作業手順とルールを示します。コードを変更する作業を行う場合は、必ずこのスキルに従ってください。

2026-04-24
quick-fix
Desarrolladores de software

feature-lifecycle で作成済みの PR に対して、レビュー指摘やユーザーの直接指示による微修正を軽量フローで反映するスキル。Orchestrator から Developer に委譲して実行する。

2026-04-24
release-skimdown
sin clasificar

SkimDown for Windows の新バージョンを Microsoft Store に提出 + GitHub Releases に sideload 用ビルドを公開する時に使う。トリガー語の例 - "リリースを切る", "バージョンを上げる", "Store 提出版を作る", "msixupload", "msixbundle", "GitHub Releases に公開", "sideload 配布", "devcert", "新機能のチェック", "リリースノートを書く", "署名検証", "WACK"。配布物の分離 (Store 無署名 / sideload 自己署名) と Store 版への移行リスクを守るための圧縮チェックリスト。

2026-06-19
clean-architecture-skimdown
Desarrolladores de software

SkimDown for Windows でクリーンアーキテクチャー風のレイアウト・DI・依存方向に従って新規サービス / I/F / ViewModel を追加または既存コードをリファクタする時に使う。トリガー語の例 - "新しい I/F を追加", "サービスを足す", "ViewModel を作る", "DI 登録", "層境界", "Application から System.IO を呼びたい", "Infrastructure 実装", "Singleton か Scoped か"。設計判断の根拠は ADR-0002 を参照。

2026-06-01
docs-snapshot-skimdown
Desarrolladores de software

SkimDown for Windows の現状スナップショット (リポジトリルートの `docs/`) を追加・更新・レビューする時に使う。ADR (歴史) / SPEC (要件) / README (使い方) / copilot-instructions (規約) と別に「いまのコードがどう実装されているか」を中立に説明する技術リファレンスを維持する。トリガー語の例 - "docs/ を更新", "アーキ図を直す", "新しい I/F を足したので DI ドキュメント更新", "WebView2 メッセージプロトコル変えた", "AppSettings に項目追加", "テーマ解決を変えた", "activation flow を変えた", "現状スナップショット", "technical docs を書く"。

2026-06-01
gh-cli-skimdown
Desarrolladores de software

gh CLI を使う時 (PR 作成 / Release 作成 / リポジトリ API 呼び出し) の認証・権限ハンドリング。Copilot CLI のデフォルトトークン (kaota_microsoft) は runceel/SkimDownForWindows に対して read-only で、PR / Release 作成が失敗する。runceel アカウントへの switch 手順、GH_TOKEN 優先順位、misleading なエラーメッセージの読み方をまとめる。トリガー語の例 - "PR を作る", "gh pr create が 403", "gh release create が 404", "workflow scope が必要", "Enterprise Managed User", "アカウント切替", "gh auth switch", "アカウントが READ-only", "リリースが作れない"。

2026-05-25
unit-test-skimdown
Analistas de garantía de calidad de software y probadores

SkimDown for Windows の Application / Domain 単体テストを追加・改修・レビューする時に使う。トリガー語の例 - "テストを追加", "MainPageViewModel のテスト", "TestHelpers", "Stub / Fake / Recording / InMemory", "async void のテスト", "Sleep を使いたい", "テスト用に IFoo を差し替えたい", "MarkdownScanner のテスト"。テスト戦略の根拠は ADR-0003 を参照。

2026-05-24
file-based-apps
Desarrolladores de software

.NET 10 file-based apps を使ったスクリプト実行スキル。Copilot がデータ処理・ファイル操作・簡易ツールなどの スクリプト的な処理を行う際に、C# の file-based app として実行する方法を定義する。 使い捨ての処理はファイルを作成せず stdin パイプで実行し、再利用可能な処理のみ .cs ファイルとして保存すること。

2026-02-22
blazor-dotnet10
Desarrolladores de software

ASP.NET Core Blazor (.NET 10) の最新機能・ベストプラクティスに基づいてコンポーネントやページを生成・レビュー・リファクタリングするスキル。 Blazor コンポーネント、ページ、レイアウト、JS interop、フォームバリデーション、状態管理の実装時に使用すること。

2026-02-22
clean-architecture
Desarrolladores de software

クリーンアーキテクチャに基づく設計指針スキル。プロジェクト構成、レイヤー分離、依存関係の方向、テスタビリティ確保の原則を定義する。 新規プロジェクト作成、機能追加、リファクタリング、テスト作成時に使用すること。

2026-02-22
csharp-dotnet10
Desarrolladores de software

C# 14 / .NET 10 の最新文法に基づいてコードを生成・レビュー・リファクタリングするスキル。 C# のコード生成、レビュー、リファクタリング、新規ファイル作成時に使用すること。

2026-02-22
Mostrando 12 de 17 repositorios