dev
4
总安装量
4
周安装量
#51954
全站排名
安装命令
npx skills add https://github.com/tyler-r-kendrick/agent-skills --skill dev
Agent 安装分布
amp
4
gemini-cli
4
github-copilot
4
codex
4
kimi-cli
4
opencode
4
Skill 文档
Development Fundamentals
Overview
This skill covers the foundational knowledge every software developer should command â drawn from canonical published works and industry-proven practices. It spans from low-level algorithms through code craftsmanship to system-level architecture.
Knowledge Map
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
â Architecture â
â Microservices, Monoliths, DDD, Event-Driven, â
â Hexagonal, Well-Architected Frameworks â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¤
â Frontend â Backend â
â SPA, PWA, Micro-frontends, â Data Modeling, API â
â SSR, Islands Architecture â Design, Caching, Auth â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¤
â Integration Patterns â Design Patterns â
â EIP: Messaging, Routing, â GoF: Creational, â
â Transformation, Endpoints â Structural, Behavioral â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¤
â Algorithms & Data Structures â
â Sorting, Searching, Graphs, DP, Combinatorial â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¤
â Craftsmanship â
â Clean Code, Clean Architecture, SOLID, 12-Factor, â
â Refactoring, Boy Scout Rule â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Canonical Works
| Book | Author | Covers |
|---|---|---|
| Design Patterns | Gamma, Helm, Johnson, Vlissides (GoF) | 23 object-oriented patterns |
| Enterprise Integration Patterns | Hohpe & Woolf | Messaging, routing, transformation |
| The Art of Computer Programming | Donald Knuth | Algorithms, data structures, combinatorics |
| Clean Code | Robert C. Martin | Naming, functions, formatting, comments |
| Clean Architecture | Robert C. Martin | Dependency rule, boundaries, layers |
| Refactoring | Martin Fowler | Code smells, refactoring catalog |
| Domain-Driven Design | Eric Evans | Bounded contexts, aggregates, ubiquitous language |
| Building Microservices | Sam Newman | Service decomposition, communication, deployment |
| The Pragmatic Programmer | Hunt & Thomas | Career, approach, tools, pragmatic philosophy |
| The Twelve-Factor App | Adam Wiggins (Heroku) | Cloud-native application methodology |
| Release It! | Michael Nygard | Stability patterns, capacity, deployment |
| Fundamentals of Software Architecture | Richards & Ford | Architecture styles, characteristics, decisions |
Choosing the Right Pattern Category
| Problem | Look In |
|---|---|
| Object creation complexity | Design Patterns â Creational |
| Composing objects / adapting interfaces | Design Patterns â Structural |
| Object communication / state management | Design Patterns â Behavioral |
| Service-to-service messaging | Integration Patterns |
| Algorithm selection / optimization | Algorithms |
| Code readability and maintainability | Craftsmanship |
| System decomposition and boundaries | Architecture |
| Client-side application structure | Frontend |
| Server-side data and API structure | Backend |
Best Practices
- Learn patterns as a vocabulary, not a checklist â apply them when the problem calls for it, not preemptively.
- Start with the simplest architecture that works (monolith), evolve toward complexity (microservices) only when you have evidence you need it.
- Apply the Boy Scout Rule: leave code better than you found it, every time you touch it.
- Use SOLID principles as guardrails for daily decisions, not just for greenfield design.
- Prefer composition over inheritance â most GoF patterns are variations of this principle.
- Study algorithms for problem-solving intuition, not memorization â know when to reach for a graph algorithm vs. dynamic programming.
- Keep integration patterns in mind whenever systems need to communicate â messaging solves problems that synchronous calls create.