원클릭으로
markdown
Format and validate Markdown files following GitHub Flavored Markdown standards with automated linting and manual semantic review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Format and validate Markdown files following GitHub Flavored Markdown standards with automated linting and manual semantic review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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.
Implement StreamHub real-time indicators with O(1) performance. Use for ChainHub or BarProvider implementations. Covers provider selection, RollbackState patterns, performance anti-patterns, and comprehensive testing with StreamHubTestBase.
Benchmark indicator performance with BenchmarkDotNet. Use for Series/Buffer/Stream benchmarks, regression detection, and optimization patterns. Target 1.5x Series for StreamHub, 1.2x for BufferList.
Quality gates checklist for completing code work before finishing implementation cycles
Implement BufferList incremental indicators with efficient state management. Use for IIncrementFromChain or IIncrementFromBar implementations. Covers interface selection, constructor patterns, and BufferListTestBase testing requirements.
Create and register indicator catalog entries for automation. Use for Catalog.cs files, CatalogListingBuilder patterns, parameter/result definitions, and PopulateCatalog registration.
SOC 직업 분류 기준
| 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.