Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeNot declared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars3
LicenseLICENSE
Default branchmain
Open issues0
Status
Active
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md5,044 B
docsSUMMARY.md399 B
History
First seen on skills.sh
First recorded snapshot · 121 installs
SKILL.md
Feature-Based Architecture Best Practices
Comprehensive architecture guide for organizing React applications by features, enabling scalable development with independent teams. Contains 42 rules across 8 categories, prioritized by impact from critical (directory structure, imports) to incremental (naming conventions).
When to Apply
Reference these guidelines when:
Creating new features or modules
Organizing project directory structure
Setting up import rules and boundaries
Implementing data fetching patterns
Composing components from multiple features
Reviewing code for architecture violations
Rule Categories by Priority
Priority
Category
Impact
Prefix
1
Directory Structure
CRITICAL
struct-
2
Import & Dependencies
CRITICAL
import-
3
Module Boundaries
HIGH
bound-
4
Data Fetching
HIGH
fquery-
5
Component Organization
MEDIUM-HIGH
fcomp-
6
State Management
MEDIUM
fstate-
7
Testing Strategy
MEDIUM
test-
8
Naming Conventions
LOW
name-
Quick Reference
1. Directory Structure (CRITICAL)
struct-feature-folders - Organize by feature, not technical type
struct-feature-self-contained - Make features self-contained
struct-shared-layer - Use shared layer for truly generic code only