software-architecture
Guide for quality focused software architecture. This skill should be used when users want to write code, design architecture, analyze code, in any case that relates to software development.
Best use case
software-architecture is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Guide for quality focused software architecture. This skill should be used when users want to write code, design architecture, analyze code, in any case that relates to software development.
Teams using software-architecture should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/software-architecture/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How software-architecture Compares
| Feature / Agent | software-architecture | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Guide for quality focused software architecture. This skill should be used when users want to write code, design architecture, analyze code, in any case that relates to software development.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
ChatGPT vs Claude for Agent Skills
Compare ChatGPT and Claude for AI agent skills across coding, writing, research, and reusable workflow execution.
SKILL.md Source
# Software Architecture Development Skill This skill provides guidance for quality focused software development and architecture. It is based on Clean Architecture and Domain Driven Design principles. ## Code Style Rules ### General Principles - **Early return pattern**: Always use early returns when possible, over nested conditions for better readability - Avoid code duplication through creation of reusable functions and modules - Decompose long (more than 80 lines of code) components and functions into multiple smaller components and functions. If they cannot be used anywhere else, keep it in the same file. But if file longer than 200 lines of code, it should be split into multiple files. - Use arrow functions instead of function declarations when possible ### Best Practices #### Library-First Approach - **ALWAYS search for existing solutions before writing custom code** - Check npm for existing libraries that solve the problem - Evaluate existing services/SaaS solutions - Consider third-party APIs for common functionality - Use libraries instead of writing your own utils or helpers. For example, use `cockatiel` instead of writing your own retry logic. - **When custom code IS justified:** - Specific business logic unique to the domain - Performance-critical paths with special requirements - When external dependencies would be overkill - Security-sensitive code requiring full control - When existing solutions don't meet requirements after thorough evaluation #### Architecture and Design - **Clean Architecture & DDD Principles:** - Follow domain-driven design and ubiquitous language - Separate domain entities from infrastructure concerns - Keep business logic independent of frameworks - Define use cases clearly and keep them isolated - **Naming Conventions:** - **AVOID** generic names: `utils`, `helpers`, `common`, `shared` - **USE** domain-specific names: `OrderCalculator`, `UserAuthenticator`, `InvoiceGenerator` - Follow bounded context naming patterns - Each module should have a single, clear purpose - **Separation of Concerns:** - Do NOT mix business logic with UI components - Keep database queries out of controllers - Maintain clear boundaries between contexts - Ensure proper separation of responsibilities #### Anti-Patterns to Avoid - **NIH (Not Invented Here) Syndrome:** - Don't build custom auth when Auth0/Supabase exists - Don't write custom state management instead of using Redux/Zustand - Don't create custom form validation instead of using established libraries - **Poor Architectural Choices:** - Mixing business logic with UI components - Database queries directly in controllers - Lack of clear separation of concerns - **Generic Naming Anti-Patterns:** - `utils.js` with 50 unrelated functions - `helpers/misc.js` as a dumping ground - `common/shared.js` with unclear purpose - Remember: Every line of custom code is a liability that needs maintenance, testing, and documentation #### Code Quality - Proper error handling with typed catch blocks - Break down complex logic into smaller, reusable functions - Avoid deep nesting (max 3 levels) - Keep functions focused and under 50 lines when possible - Keep files focused and under 200 lines of code when possible
Related Skills
react-native-architecture
Production-ready patterns for React Native development with Expo, including navigation, state management, native modules, and offline-first architecture.
architecture-patterns
Master proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design to build maintainable, testable, and scalable systems.
architecture-decision-records
Comprehensive patterns for creating, maintaining, and managing Architecture Decision Records (ADRs) that capture the context and rationale behind significant technical decisions.
architecture
Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation. Use when making architecture decisions or analyzing system design.
c4-architecture
Generate architecture documentation using C4 model Mermaid diagrams. Use when asked to create architecture diagrams, document system architecture, visualize software structure, create C4 diagrams, or generate context/container/component/deployment diagrams. Triggers include "architecture diagram", "C4 diagram", "system context", "container diagram", "component diagram", "deployment diagram", "document architecture", "visualize architecture".
rwkv-architecture
RNN+Transformer hybrid with O(n) inference. Linear time, infinite context, no KV cache. Train like GPT (parallel), infer like RNN (sequential). Linux Foundation AI project. Production at Windows, Office, NeMo. RWKV-7 (March 2025). Models up to 14B parameters.
mamba-architecture
State-space model with O(n) complexity vs Transformers' O(n²). 5× faster inference, million-token sequences, no KV cache. Selective SSM with hardware-aware design. Mamba-1 (d_state=16) and Mamba-2 (d_state=128, multi-head). Models 130M-2.8B on HuggingFace.
async-python-patterns
Comprehensive guidance for implementing asynchronous Python applications using asyncio, concurrent programming patterns, and async/await for building high-performance, non-blocking systems.
slack-automation
Automate Slack workspace operations including messaging, search, channel management, and reaction workflows through Composio's Slack toolkit.
linear-automation
Automate Linear tasks via Rube MCP (Composio): issues, projects, cycles, teams, labels. Always search tools first for current schemas.
jira-automation
Automate Jira tasks via Rube MCP (Composio): issues, projects, sprints, boards, comments, users. Always search tools first for current schemas.
gitops-workflow
Complete guide to implementing GitOps workflows with ArgoCD and Flux for automated Kubernetes deployments.