发现优质的 AI Agent 技能
聚合 Claude Skills、LangChain、AutoGPT 等优质资源,助力开发者快速构建智能应用
React Native Development Rules
- `FlatList` for any list over 10 items — `ScrollView` with `map` loads everything in memory, FlatList virtualizes - `keyExtractor` must return stable unique strings — using index causes bugs on reorder and deletion - `React.memo` prevents re-renders when props unchanged — wrap pure display components - `useCallback` for functions passed to child components — new function reference triggers child re-render - Avoid inline styles in render — creates new object every render, extract to `StyleSheet.
iOS Development Rules
- Clean build folder (Cmd+Shift+K) fixes most "impossible" build errors — derived data gets corrupted regularly - Simulator reset (Device > Erase All Content and Settings) clears cached app state that survives reinstalls - Archive builds use Release config — bugs that only appear in production often stem from optimization differences - `xcodebuild -showsdks` lists available SDKs — useful when builds fail with "SDK not found" - Parallel builds can cause race conditions in script phases — add inpu
Setup - Game Development
Read this when `~/game-development/` is missing or empty. Keep setup concise and oriented to fast first-playable outcomes.
Memory Template - Game Development
Create `~/game-development/memory.md` with this structure:
Dubai Education System Guide for Expat Families
> **Last Updated:** February 2026 > **Key Authority:** KHDA (Knowledge and Human Development Authority) regulates private schools
Software Development Rules
- Readable code beats clever code — you'll read it 10x more than write it - Functions do one thing — if you need "and" to describe it, split it - Name things by what they do, not how — implementation changes, purpose doesn't - Delete dead code — version control remembers, codebase shouldn't carry weight - Consistent style matters more than which style — match the project
audit-code -- Project Code Security Review
Security-focused code review of project source code. Covers OWASP-style vulnerabilities, hardcoded secrets, dangerous function calls, and patterns relevant to AI-assisted development.
MCP Server Development Best Practices and Guidelines
来自 openclaw/skills 技能