Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/shader-slang/slang-skills --skill slang-docs명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use whenever output will name a specific person: release notes, changelogs, contributor lists, commit or PR attribution, code comments, issue and review replies, docs credits, or any prose referring to a human. Governs where a name may come from and how to choose pronouns, so stale names from git history and gender guesses from model priors never reach the output.
Surface the open shader-slang PRs needing human attention with a bundled gh-only Python script (scripts/pr_report.py): an assignee-grouped escalation report computed entirely from live GitHub state (read-only; no writes; optional Discord/Slack mentions). Use for PR triage, the reviewer-attention report, stale-PR follow-up, or a scheduled report run.
Bridge from /slang-maintain workflow steps to concrete slang-mcp tool calls. Read-only except an optional, user-confirmed post of the generated daily report to Slack. Task recipes live in sibling files.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | slang-docs |
| license | MIT |
| description | Read and write Slang compiler documentation. |
| provides | ["doc.read","doc.write"] |
| allowed-tools | Read, Grep, Glob, Edit, Write, Bash(git add:*), Bash(git commit:*), Bash(python:*), Bash(powershell:*) |
Drawn from: repos/slang/CLAUDE.md (documentation sections), repos/slang/.claude/agents/documentation-accuracy-reviewer.md (doc drift detection, stale comments, proposal status tracking).
docs/user-guide/ -- User-facing documentation (published at shader-slang.com/slang/user-guide/)docs/design/ -- Design decisions, coding conventionsdocs/building.md -- Build instructionsdocs/diagnostics.md -- Diagnostic test documentationinclude/slang.h -- API documentation (inline comments, ABI-critical)prelude/ and *.meta.slang -- Standard library docs via @param, @remarks, @return, @example annotationsexternal/spec/ -- Language specification and proposals (clone from https://github.com/shader-slang/spec.git)Comments must match actual behavior. For experimental interfaces, mark with _Experimental. New virtual methods only at end of interfaces.
/// Description of the function.
/// @param x First parameter.
/// @return The result.
__generic<T : __BuiltinArithmeticType>
T myFunc(T x);
After modifying user guide pages, regenerate the table of contents:
cd docs && powershell ./build_toc.ps1
# Or use /regenerate-toc bot command on the PR
When reviewing or writing docs:
include/slang.h function comments match the current implementation.external/spec/proposals/, update its status to Implemented.docs/ if the change affects a support matrix.powershell ./build_toc.ps1 to regenerate TOC after adding/renaming pagesinclude/slang.h): C-style /** ... */ with @param/@return/@remarks tags.meta.slang): /// ... @param @return triple-slash styleWhen introducing new warnings/errors, update:
docs/language-reference/ -- Language features and restrictionsdocs/user-guide/ -- User-facing guidancedocs/design/ -- Design rationale