用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/DaveSkender/Stock.Indicators --skill code-completion命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | code-completion |
| description | Quality gates checklist for completing code work before finishing implementation cycles |
Run before finishing any implementation cycle.
Before running quality gates:
Console.WriteLine, breakpoints).bak, .new, .debug.*)dotnet format --severity info --no-restore
npx markdownlint-cli2 --fix
Zero errors and zero warnings required. Individual checks:
dotnet tool run roslynator fix --properties TargetFramework=net10.0 --severity-level hidden --verbosity normal
dotnet format --severity info --no-restore
npx markdownlint-cli2 --fix
VS Code task: Lint: All (fix)
dotnet build "Stock.Indicators.sln" -v minimal --nologo
VS Code task: Build: .NET Solution (incremental)
dotnet test "Stock.Indicators.sln" --no-restore --nologo
VS Code task: Test: Unit tests
When changing indicators or public APIs:
docs/indicators/{IndicatorName}.mddocs/migration/v3.md for notable and breaking changes from v2src/Obsolete.V3.*.cs for deprecated APIsdotnet format --verify-no-changes --severity info --no-restore
dotnet build "Stock.Indicators.sln" -v minimal --nologo
dotnet test "Stock.Indicators.sln" --no-build --nologo
npx markdownlint-cli2
Do not ignore, defer, or suppress warnings.
New or updated indicators require:
{Indicator}.Series.cs partial class file*.Catalog.cs + registration*Tests.cs with full coveragedocs/indicators/{Name}.mdWhen changing public APIs:
[Obsolete] with migration messagedocs/migration/v3.mdsrc/Obsolete.V3.Indicators.cs and src/Obsolete.V3.Other.csSee references/quality-gates.md for the quick reference table of all commands and configuration file locations.