feat: add postgresql-table-design skill to database-design plugin (#113)

Add comprehensive PostgreSQL schema design skill covering:
- Core rules and best practices
- PostgreSQL-specific gotchas and conventions
- Data types with detailed guidance (IDs, strings, time, JSONB, arrays, etc.)
- Indexing strategies (B-tree, GIN, GiST, BRIN, partial, covering)
- Constraints (PK, FK, UNIQUE, CHECK, EXCLUDE)
- Partitioning patterns
- Performance optimization for update-heavy and insert-heavy workloads
- Safe schema evolution
- Extension recommendations

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Matvey Arye
2025-11-08 22:38:51 +01:00
committed by GitHub
parent 51c85a8977
commit 7581142104
2 changed files with 208 additions and 1 deletions

View File

@@ -1055,6 +1055,9 @@
"agents": [
"./agents/database-architect.md",
"./agents/sql-pro.md"
],
"skills": [
"./skills/postgresql"
]
},
{
@@ -2018,4 +2021,4 @@
]
}
]
}
}