بنقرة واحدة
post-edit-conventions
Monorepo coding conventions to follow when writing or editing code in this repository
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Monorepo coding conventions to follow when writing or editing code in this repository
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Add a new OCLIF command to a CLI package with proper base class, flags, args, and post-creation steps
Create changesets for pending changes by analyzing git diff and commit history
Audit workspace dependencies for version mismatches, unused packages, and sync issues across all packages
Fix all repository policy violations
Run Nx affected commands for the current changes
Reference for Nx task architecture, orchestration patterns, and how to add or modify build tasks
| name | post-edit-conventions |
| description | Monorepo coding conventions to follow when writing or editing code in this repository |
| user-invocable | false |
Always follow these conventions when writing or editing code in this monorepo:
.js files — use .mjs or .cjs for JavaScript.ts (ESM is default via "type": "module")NoJsFileExtensions repopo policypathe instead of node:path for cross-platform path handlingfs/promises (async) instead of fs sync methods (readFile not readFileSync)workspace:^ protocol@tylerbu/fundamentals (zero-dep package)pnpm exclusively (never npm or yarn)anysatisfies over as for type assertionsconfig/tsconfig.strict.jsonesm/ (not dist/ or lib/)src/, tests in test/"type": "module" in package.jsontest/**/*.test.tsimport defaultConfig from "../../config/vitest.config"