agentic_architecture

Installation
SKILL.md

Agentic Architecture Protocol

1. Think Before You Code

Before implementing any feature that spans multiple files:

  1. Analyze Data Flow: Where does data come from? Where does it go?
  2. Define Interfaces: creating types/*.ts is often the best first step.
  3. Check Boundaries: Ensure API logic stays in api/, UI in components/, and business logic in services/ or hooks/.

2. Scalability & Performance Checks

  • Database:
    • Are we fetching 1000 items to filter 10? (Use DB filters instead).
    • Is RLS (Row Level Security) compatible with this query?
  • Frontend:
    • Are we causing unnecessary re-renders? (Use React.memo, useCallback appropriately).
    • Is this component becoming a "God Component"? (Break it down).
Related skills
Installs
19
GitHub Stars
1
First Seen
Jan 25, 2026