Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Objective-Arts/lens-dist --skill js-safetyコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| name | js-safety |
| description | JS Good Parts |
Applying Douglas Crockford's defensive JavaScript philosophy from "JavaScript: The Good Parts" and JSLint. The language has good parts and bad parts—use only the good parts.
JavaScript has more bad parts than good parts. Professional JavaScript means knowing which parts to avoid entirely.
"JavaScript is the only language people feel they don't need to learn before using."
You don't need all of JavaScript. A disciplined subset produces better programs than the full language.
// BAD: Implicit global
function bad() {
x = 5; // Creates global!
}
// GOOD: Explicit scope
function good() {
const x = 5;
}
// BAD: Type coercion chaos
'' == '0' // false
0 == '' // true
0 == '0' // true
false == 'false' // false
false == '0' // true
// GOOD: Always use ===
if (value === expected) { ... }
// NEVER use with - ambiguous scope
with (obj) {
a = b; // Is this obj.a = obj.b? obj.a = b? a = obj.b?
}
// NEVER use eval - security and performance disaster
eval(userInput); // Code injection vulnerability
// Also avoid: new Function(), setTimeout with strings
setTimeout("doThing()", 100); // BAD
setTimeout(doThing, 100); // GOOD
// Avoid in most cases - rarely needed, often confused with logical
if (a & b) { } // Bitwise AND - probably meant &&
if (a | b) { } // Bitwise OR - probably meant ||
// Functions are values
const double = x => x * 2;
const numbers = [1, 2, 3].map(double);
// Closures for encapsulation
function counter() {
let count = 0;
return {
increment: () => ++count,
get: () => count
};
}
// Simple, readable object creation
const point = {
x: 10,
y: 20,
distance(other) {
return Math.sqrt(
Math.pow(this.x - other.x, 2) +
Math.pow(this.y - other.y, 2)
);
}
};
// Functional iteration - no manual loops
const adults = people
.filter(p => p.age >= 18)
.map(p => p.name)
.sort();
// Encapsulation through closures
const myModule = (function() {
// Private
let privateVar = 0;
function privateMethod() { }
// Public API
return {
publicMethod() {
privateMethod();
return privateVar;
}
};
})();
function divide(a, b) {
if (typeof a !== 'number' || typeof b !== 'number') {
throw new TypeError('Arguments must be numbers');
}
if (b === 0) {
throw new RangeError('Cannot divide by zero');
}
return a / b;
}
// Guard against undefined
function greet(name = 'Guest') {
return `Hello, ${name}`;
}
const CONFIG = Object.freeze({
API_URL: 'https://api.example.com',
TIMEOUT: 5000
});
// CONFIG.API_URL = 'x'; // Throws in strict mode
| Scenario | Apply Crockford |
|---|---|
| Legacy JS codebase | Yes - identify bad parts |
| Code review | Yes - flag dangerous patterns |
| New utility library | Yes - defensive style |
| Modern React/Vue | Partially - frameworks have own conventions |
| TypeScript | Less critical - types catch many issues |