skills/danielpodolsky/performance-gate/SKILL.md
Verify performance implications were considered and no obvious anti-patterns exist. Issues result in WARNINGS.
npx skillsauth add aiskillstore/marketplace performance-gateInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
"Code that works is step one. Code that scales is step two."
This gate catches performance anti-patterns before they cause problems. The focus is on obvious issues, not micro-optimizations.
"What happens when there are 10,000 items? 1,000,000?"
Looking for:
"How many database queries does this operation make?"
Looking for:
"When this state changes, what components re-render?"
Looking for:
✅ PERFORMANCE GATE: PASSED
Performance considerations look good:
- Data fetching is efficient
- No obvious N+1 patterns
- Appropriate pagination in place
Moving to the next gate...
⚠️ PERFORMANCE GATE: WARNING
Found [X] performance concerns:
**Issue 1: [N+1 Query / Inefficient Loop]**
Location: `file.ts:42`
Question: "This makes [N] queries. Can we batch into 1?"
**Issue 2: [Missing Pagination]**
Location: `file.ts:88`
Question: "What happens with 100,000 records?"
**Issue 3: [Expensive Render]**
Location: `Component.tsx:15`
Question: "Does this need to recalculate on every render?"
These may not matter now, but will become problems as the app grows.
❌ const users = await User.findAll();
for (const user of users) {
user.posts = await Post.findByUserId(user.id);
}
// 1 + N queries!
✅ const users = await User.findAll({
include: [{ model: Post }]
});
// 1 query with JOIN
❌ // Returns 10,000 users with 50 fields each
GET /api/users
✅ // Paginated with only needed fields
GET /api/users?page=1&limit=20&fields=id,name,email
❌ function UserList({ users }) {
// Runs on every render
const sorted = users.sort((a, b) => a.name.localeCompare(b.name));
return <ul>{sorted.map(...)}</ul>;
}
✅ function UserList({ users }) {
const sorted = useMemo(
() => [...users].sort((a, b) => a.name.localeCompare(b.name)),
[users]
);
return <ul>{sorted.map(...)}</ul>;
}
❌ function Parent() {
return <Child onClick={() => doSomething()} />;
// New function every render → Child re-renders
}
✅ function Parent() {
const handleClick = useCallback(() => doSomething(), []);
return <Child onClick={handleClick} />;
}
❌ useEffect(() => {
const interval = setInterval(fetchData, 5000);
// Memory leak! Runs forever
}, []);
✅ useEffect(() => {
const interval = setInterval(fetchData, 5000);
return () => clearInterval(interval);
}, []);
Instead of pointing out the fix, ask:
| Pattern | Complexity | 10,000 items | Concern Level | |---------|------------|--------------|---------------| | Map lookup | O(1) | 1 op | Fine | | Single loop | O(n) | 10,000 ops | Usually fine | | Nested loop | O(n²) | 100M ops | Warning | | Triple loop | O(n³) | 1T ops | Critical |
| Flag | Question | Why | |------|----------|-----| | Query in a loop | "Can we batch?" | N+1 problem | | No pagination | "What at scale?" | Memory/time explosion | | SELECT * | "Need all fields?" | Wasted bandwidth | | setInterval no cleanup | "What clears this?" | Memory leak | | Inline object/function in JSX | "New reference?" | Unnecessary re-renders | | Array.sort() in render | "Cached?" | Runs every render |
Not everything needs optimization:
for vs forEachThe gate is about catching obvious issues, not micro-optimization.
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.