Typeorm Schema Optimizer
/install typeorm-schema-optimizer
TypeORM Schema Optimizer
Analyze TypeORM entities for performance issues, query inefficiencies, missing indexes, relationship design problems, and migration risks. Use when reviewing TypeORM schemas, optimizing slow queries, or preparing for production scale.
Usage
"Optimize my TypeORM entities"
"Check for N+1 queries in my TypeORM code"
"Audit TypeORM indexes and relations"
"Review migration safety for TypeORM changes"
How It Works
1. Entity Discovery
# Find all TypeORM entities
grep -rn "@Entity\|@ViewEntity\|@ChildEntity" src/ | head -20
# Find repositories
grep -rn "extends Repository\|@InjectRepository\|getRepository" src/ | head -20
# Check TypeORM config
cat ormconfig.json 2>/dev/null || cat data-source.ts 2>/dev/null
2. Schema Analysis
Column optimization:
- Column types match actual data requirements
- Unnecessary
nullable: trueon required fields - Missing
lengthon string columns (default is VARCHAR(255) — wasteful or too short?) - Enum columns using string instead of native enum type
- JSON columns where structured columns would be more queryable
- Missing default values for common patterns
Index analysis:
- Columns used in WHERE clauses without indexes
- Composite indexes for multi-column queries
- Covering indexes for SELECT-heavy queries
- Unique constraints for business rules
- Partial indexes for filtered queries
- Index on foreign key columns (TypeORM doesn't auto-create)
Relationship design:
eager: trueon relationships (loads every time, often unnecessary)- Missing
cascadeoptions where needed - Circular eager loading (infinite loops)
@ManyToManywithout join table customization- Missing
onDeletebehavior (default is no action) - Polymorphic relationships using discriminators correctly
3. Query Performance
- N+1 detection in repository methods
- Missing
leftJoinAndSelectwhere data is accessed post-query findwith deep relations instead of query builder- Missing pagination on list queries
- Raw queries bypassing TypeORM benefits
- Transaction usage for multi-step writes
4. Connection & Pool
- Connection pool size appropriate for workload
- Idle connection timeout configured
- Read replicas configured for read-heavy workloads
- Connection error handling and retry logic
- Logging level appropriate for environment
5. Migration Safety
- Entity changes that generate destructive migrations
- Column type changes that lose data
- Index changes that lock tables
- Relationship changes that break foreign keys
Output
## TypeORM Schema Analysis
**Entities:** 18 | **Relations:** 24 | **Indexes:** 12
### 🔴 Critical (3)
1. **Eager loading loop** — User → Posts (eager) → Author (eager) → Posts...
→ Remove `eager: true` from at least one side
2. **Missing index on FK** — Order.userId has no index
With 500K orders, joins on userId cause full table scans
→ Add `@Index()` on `userId` column
3. **N+1 in getOrders()** — orders.service.ts:34
Loads orders then iterates to access `order.items` individually
→ Use `relations: ['items']` or query builder with join
### 🟡 Improvements (4)
4. 6 entities with `eager: true` — performance risk at scale
5. VARCHAR(255) on `status` fields — use enum type (4 possible values)
6. Missing `onDelete: 'CASCADE'` on child entities
7. No read replica configured (DB CPU at 80%)
### ✅ Good Practices
- Proper use of table inheritance for payment types
- Transaction wrapping for order creation flow
- Soft delete with `@DeleteDateColumn`
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install typeorm-schema-optimizer - 安装完成后,直接呼叫该 Skill 的名称或使用
/typeorm-schema-optimizer触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Typeorm Schema Optimizer 是什么?
Optimize TypeORM entities for performance, query efficiency, migration safety, and relationship design — analyze decorators, indexes, eager loading, and conn... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 50 次。
如何安装 Typeorm Schema Optimizer?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install typeorm-schema-optimizer」即可一键安装,无需额外配置。
Typeorm Schema Optimizer 是免费的吗?
是的,Typeorm Schema Optimizer 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Typeorm Schema Optimizer 支持哪些平台?
Typeorm Schema Optimizer 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Typeorm Schema Optimizer?
由 charlie-morrison(@charlie-morrison)开发并维护,当前版本 v1.0.0。