add info to project root

This commit is contained in:
Pedro Rodrigues
2026-01-16 14:33:29 +07:00
parent 54ff36b38e
commit 4000ac7107
3 changed files with 185 additions and 0 deletions

61
README.md Normal file
View File

@@ -0,0 +1,61 @@
# Agent Skills
A collection of skills for AI coding agents. Skills are packaged instructions and scripts that extend agent capabilities.
Skills follow the [Agent Skills](https://agentskills.io/) format.
## Available Skills
### postgresql-best-practices
PostgreSQL performance optimization guidelines from Supabase. Contains rules across 8 categories, prioritized by impact.
**Use when:**
- Writing SQL queries or designing schemas
- Implementing indexes or query optimization
- Reviewing database performance issues
- Configuring connection pooling or scaling
- Working with Row-Level Security (RLS)
**Categories covered:**
- Query Performance (Critical)
- Connection Management (Critical)
- Schema Design (High)
- Concurrency & Locking (Medium-High)
- Security & RLS (Medium-High)
- Data Access Patterns (Medium)
- Monitoring & Diagnostics (Low-Medium)
- Advanced Features (Low)
## Installation
```bash
npx add-skill supabase/postgres-best-practices
```
## Usage
Skills are automatically available once installed. The agent will use them when relevant tasks are detected.
**Examples:**
```
Optimize this PostgreSQL query
```
```
Review my schema for performance issues
```
```
Help me add proper indexes to this table
```
## Skill Structure
Each skill contains:
- `SKILL.md` - Instructions for the agent
- `AGENTS.md` - Compiled rules document (generated)
- `rules/` - Individual rule files
- `metadata.json` - Version and metadata
## License
MIT