用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill coding-standards命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | coding-standards |
| description | > Use when this capability is needed. |
You MUST follow this process whenever writing, reviewing, or modifying code.
Check the project root for these files to determine the tech stack:
| File(s) Present | Stack |
|---|---|
turbo.json OR pnpm-workspace.yaml (with package.json + tsconfig.json) | TypeScript Monorepo |
package.json + tsconfig.json (no monorepo markers) | TypeScript Standalone (Next.js + NestJS) |
*.csproj OR *.sln | .NET / C# |
pyproject.toml OR requirements.txt OR setup.py | Python |
If multiple stacks are present (e.g., a monorepo with a Python service), detect which stack the user is actively working in based on the files they reference.
Based on the detected stack, use the WebFetch tool to load the appropriate coding standard. Do NOT skip this step. Do NOT summarize from memory. Actually fetch the file.
TypeScript Monorepo:
https://raw.githubusercontent.com/dannypenrose/engineering-standards/main/typescript/coding-standards-monorepo.md
TypeScript Standalone (Next.js + NestJS):
https://raw.githubusercontent.com/dannypenrose/engineering-standards/main/typescript/coding-standards-nextjs-nestjs.md
.NET / C#:
https://raw.githubusercontent.com/dannypenrose/engineering-standards/main/dotnet/coding-standards.md
Python:
https://raw.githubusercontent.com/dannypenrose/engineering-standards/main/python/coding-standards.md
Monorepo detected (turbo.json or pnpm-workspace.yaml exists) — also fetch:
https://raw.githubusercontent.com/dannypenrose/engineering-standards/main/development/code-sharing.md
Task involves frontend state management (React state, stores, context, reducers, signals) — also fetch:
https://raw.githubusercontent.com/dannypenrose/engineering-standards/main/development/state-management.md
Task involves adding/updating/managing dependencies — also fetch:
https://raw.githubusercontent.com/dannypenrose/engineering-standards/main/development/dependency-management.md
Task involves git workflow, branching, or commit conventions — also fetch:
https://raw.githubusercontent.com/dannypenrose/engineering-standards/main/development/git-standards.md
Once you have read the standard:
If you need to push back on the user's approach because it conflicts with the standard:
Example: "The monorepo coding standard specifies that shared utilities go in @forge/utils, not in app-local utils/ directories (see: Package Ownership section). Moving this to the shared package instead."
Source: dannypenrose/agent-skills — distributed by TomeVault.