원클릭으로
markdown
// Format and validate Markdown files following GitHub Flavored Markdown standards with automated linting and manual semantic review
// Format and validate Markdown files following GitHub Flavored Markdown standards with automated linting and manual semantic review
Implement StreamHub real-time indicators with O(1) performance. Use for ChainHub or QuoteProvider implementations. Covers provider selection, RollbackState patterns, performance anti-patterns, and comprehensive testing with StreamHubTestBase.
Create and register indicator catalog entries for automation. Use for Catalog.cs files, CatalogListingBuilder patterns, parameter/result definitions, and PopulateCatalog registration.
Implement Series-style batch indicators with mathematical precision. Use for new StaticSeries implementations or optimization. Series results are the canonical reference—all other styles must match exactly. Focus on cross-cutting requirements and performance optimization decisions.
Write and update the VitePress documentation website for stock indicators. Use when adding a new indicator page, updating an existing indicator page, or making structural changes to the docs site.
Quality gates checklist for completing code work before finishing implementation cycles
Implement BufferList incremental indicators with efficient state management. Use for IIncrementFromChain or IIncrementFromQuote implementations. Covers interface selection, constructor patterns, and BufferListTestBase testing requirements.
| name | markdown |
| description | Format and validate Markdown files following GitHub Flavored Markdown standards with automated linting and manual semantic review |
Format and validate Markdown files following GitHub Flavored Markdown (GFM) standards, VS Code language features, and organizational conventions with automated structural fixes and manual semantic review.
.md)read, edit — core file manipulationexecute — run linting tasks and commandssearch — find markdown files and patternsExecute markdownlint with auto-fix to resolve structural issues:
npx markdownlint-cli2 --no-globs {filepath} --fix
Note: Use --no-globs when linting a single explicit file to prevent unintended glob expansion. For repository-wide linting or CI jobs, omit the flag or use explicit globs/CI-configured file lists.
What auto-fix handles:
* and + to -)What auto-fix does NOT handle (requires manual review):
Review the file for issues that automated linting cannot fix:
Headers:
Bold labels at list start:
Reference syntax:
`#file:path` → #file:pathLists:
Code blocks:
plaintext if unknown)See formatting standards for complete rules.
Run markdownlint without fixes to verify zero errors:
npx markdownlint-cli2 --no-globs {filepath}
Expected output: No errors or warnings
If errors remain:
Verify content-level requirements:
See validation checklist for complete quality checks.
For iterative editing sessions, use watch mode for continuous feedback:
npx markdownlint-cli2 --no-globs {filepath} --watch
This provides real-time linting feedback during edits.
If markdown tooling is not configured in the repository, set up the complete stack:
See setup guide for step-by-step configuration.
Relying solely on automated linting:
Using #file: in entry point files:
Skipping validation after manual edits:
Incorrect reference syntax:
See markdown tooling setup guide for markdownlint-cli2 installation and VS Code extension setup.