Skip to main content
Back to the directory
wshobson/agentsSoftware EngineeringFrontend and Design

postgresql-table-design

PostgreSQL schema design covering best practices, data types, indexing, constraints, and performance patterns.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
15

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/wshobson/agents --skill postgresql-table-design
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of Apr 30, 2026, postgresql-table-design has 15 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: wshobson/agents. Canonical URL: https://skills.sh/wshobson/agents/postgresql-table-design.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
PostgreSQL schema design covering best practices, data types, indexing, constraints, and performance patterns. Enable with ALTER TABLE tbl ENABLE ROW LEVEL SECURITY . Create policies: CREATE POLICY user_access ON orders FOR SELECT TO app_users USING (user_id = current_user_id()) . Built-in user-based access control at the row level. - Prioritize normalization to 3NF; denormalize only when join performance is proven problematic and measured for ROI. - Use BIGINT GENERATED ALWAYS AS IDENTITY for primary keys unless global uniqueness or opacity requires UUID ; always add indexes on foreign key columns. - Choose data types carefully: TIMESTAMPTZ for events, NUMERIC for money, TEXT for strings, JSONB for semi-structured data; avoid TIMESTAMP , VARCHAR(n) , SERIAL , and MONEY type. - Index strategically for actual query patterns: B-tree for equality/range, GIN for JSONB/arrays/full-text, GiST for ranges/geometry, BRIN for large time-series data.

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does postgresql-table-design do?

PostgreSQL schema design covering best practices, data types, indexing, constraints, and performance patterns.

Is postgresql-table-design good?

postgresql-table-design does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support postgresql-table-design?

postgresql-table-design currently lists compatibility with Skills CLI.

Is postgresql-table-design safe to install?

postgresql-table-design has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to postgresql-table-design?

Skills in the same category include grimoire-morpho-blue, conversation-memory, second-brain-ingest, zai-tts.

How do I install postgresql-table-design?

Run the following command to install postgresql-table-design: npx skills add https://github.com/wshobson/agents --skill postgresql-table-design

Related skills

More from wshobson/agents

Related skills

Alternatives in Software Engineering