ワンクリックで
deps-npm
npm/yarn dependency management, package.json best practices ve version control.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
npm/yarn dependency management, package.json best practices ve version control.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Guide for conducting comprehensive accessibility audits of code to identify WCAG compliance issues and barriers to inclusive design. This skill should be used when reviewing accessibility, ARIA implementation, keyboard navigation, or screen reader compatibility.
Transform clarified user requests into structured delegation prompts optimized for specialist agents (cto-architect, strategic-cto-mentor, cv-ml-architect). Use after clarification is complete, before routing to specialist agents. Ensures agents receive complete context for effective work.
AGENTS.md dosyaları oluşturma, monorepo yapılandırma ve agent instruction yönetimi rehberi.
p5.js ile generative art, flow fields ve interactive visuals oluşturma rehberi.
API tasarımı, GraphQL schema, OpenAPI spec, versioning. ⚠️ Tasarım aşaması için kullan. Uygulama/security için → backend-api.
ADR template, database selection, capacity planning ve scalability.
SOC 職業分類に基づく
| name | deps_npm |
| description | npm/yarn dependency management, package.json best practices ve version control. |
npm dependency management ve best practices.
{
"name": "my-app",
"version": "1.0.0",
"engines": { "node": ">=20.0.0" },
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"test": "vitest"
}
}
| Prefix | Anlamı | Örnek |
|---|---|---|
^1.2.3 | Minor updates OK | 1.x.x |
~1.2.3 | Patch only | 1.2.x |
1.2.3 | Exact version | 1.2.3 |
# Lock file ZORUNLU
npm ci # package-lock.json kullan
{
"dependencies": {}, // Production
"devDependencies": {}, // Development only
"peerDependencies": {} // Consumer provides
}
Deps NPM v1.1 - Enhanced
Kaynak: NPM Security Best Practices
package-lock.json var ve güncel mi?npm audit çalıştır ve kritik açıkları gider.npm outdated ile güvenli güncellemeleri yap.depcheck ile bul ve sil.npm ci kullan (asla npm install değil).npm audit --audit-level=high).| Aşama | Doğrulama |
|---|---|
| 1 | node_modules silinip npm ci yapılınca proje çalışıyor mu? |
| 2 | Production build, devDependencies olmadan çalışıyor mu? |
| 3 | Tüm versiyonlar 'Exact' veya 'Tilde/Caret' stratejisine uygun mu? |