oracle-dev-db
Project-specific Oracle Database schema and SQL development standards for 19c-first estates. Use when creating or altering tables, views, indexes, constraints, sequences, seed data scripts, idempotent DDL, or scaffolding a new application database/ folder structure. Covers naming conventions, natural keys, audit columns, lookup-table patterns, hand-run migration scripts, project prefix discovery, and project directory setup. Does not replace the generic db/ domain for administration, performance tuning, PL/SQL package design, ORDS, or agent-safe operations — route those to db/ when needed.
Works with
---
name: oracle-dev-db
description: Project-specific Oracle Database schema and SQL development standards for 19c-first estates. Use when creating or altering tables, views, indexes, constraints, sequences, seed data scripts, idempotent DDL, or scaffolding a new application database/ folder structure. Covers naming conventions, natural keys, audit columns, lookup-table patterns, hand-run migration scripts, project prefix discovery, and project directory setup. Does not replace the generic db/ domain for administration, performance tuning, PL/SQL package design, ORDS, or agent-safe operations — route those to db/ when needed.
license: MIT
---
# Oracle Dev Schema Skills
Project-tailored Oracle Database guidance for **SQL and schema object creation**. This domain reflects Cobb County application development preferences, not generic Oracle documentation defaults.
For administration, performance, security, PL/SQL patterns, SQLcl, ORDS, and broad Oracle Database topics, install and use the **`db/`** domain from [oracle/skills](https://github.com/oracle/skills):
```bash
npx skills add oracle/skills/db
```
## How to Use This Domain
1. **Read the project prefix file first** — see `design/project-prefix.md`.
2. Apply `design/schema-standards.md` for every new or changed object.
3. Use `devops/idempotent-ddl-scripts.md` for install scripts, seed data, and object deployment.
4. Use `devops/project-directory-setup.md` when scaffolding a new application `database/` tree.
5. Fall back to the external **`db/`** skill from `oracle/skills` for topics not covered here.
## Directory Structure
```text
oracle-dev-db/
├── design/
│ ├── project-prefix.md
│ └── schema-standards.md
├── devops/
│ ├── idempotent-ddl-scripts.md
│ └── project-directory-setup.md
└── templates/
├── oracle-schema-prefix.md
└── project-database/ ← copy into application repos
```
## Category Routing
| Topic | File |
|-------|------|
| Application prefix discovery and project-local config | `design/project-prefix.md` |
| Tables, columns, keys, constraints, indexes, views, data types, audit columns | `design/schema-standards.md` |
| Hand-run scripts, MERGE seeds, CREATE OR REPLACE, table-exists PL/SQL blocks | `devops/idempotent-ddl-scripts.md` |
| Scaffold application `database/`, `apex/`, and install scripts | `devops/project-directory-setup.md` |
| Blank prefix template to copy into a project repo | `templates/oracle-schema-prefix.md` |
| Starter folder tree and install script skeletons | `templates/project-database/` |
## Key Starting Points
- `design/project-prefix.md`
- `design/schema-standards.md`
- `devops/idempotent-ddl-scripts.md`
- `devops/project-directory-setup.md`
## Common Multi-Step Flows
| Task | Recommended Sequence |
|------|----------------------|
| Set up a new application database folder | `project-directory-setup.md` → `templates/project-database/` |
| Add a new application table | `project-prefix.md` → `schema-standards.md` → `idempotent-ddl-scripts.md` |
| Add seed / reference data | `schema-standards.md` (lookup FK pattern) → `idempotent-ddl-scripts.md` (MERGE) |
| Add a view over app tables | `project-prefix.md` → `schema-standards.md` → `idempotent-ddl-scripts.md` |
| Need explain plan, AWR, or admin help | Install `oracle/skills/db` → `db/performance/` or `db/admin/` |
## Relationship to `db/` (oracle/skills)
Install both skills when doing database work:
```bash
npx skills add xamdxlonewolf/cobb-dev-agent-skills/oracle-dev-db
npx skills add oracle/skills/db
```
| Prefer `oracle-dev-db/` | Prefer `db/` |
|-------------------------|--------------|
| Naming, PK strategy, audit columns, app schema layout | Generic Oracle data modeling examples |
| Natural keys, lookup FKs, status-based lifecycle | DW star schema, bitmap indexes, partitioning strategy |
| Hand-run idempotent install scripts | Liquibase/Flyway-first migration workflows |
| 19c-first project defaults | PL/SQL package design, error handling, collections |
## APEX and Export Exclusions
Never modify:
- Any `apex/` folder (Oracle APEX export)
- Root-level `f###.sql` files (APEX application exports, e.g. `f191.sql`)
Schema changes belong in the project's SQL script folders, not APEX exports.More Database skills
prisma-mongodb-upgrade
prisma/skills
Decision and migration guide for Prisma ORM MongoDB projects on v6, which have no upgrade path to v7. Use when a MongoDB project asks about upgrading Prisma, when "upgrade to prisma 7" comes up in a project with provider = "mongodb", or when evaluating a move to Prisma Next. Triggers on "upgrade prisma mongodb", "prisma 7 mongodb", "mongodb prisma migration", "prisma next mongodb".
azure-upgrade
microsoft/azure-skills
Assess and upgrade Azure workloads between plans, tiers, or SKUs, or modernize Azure SDK dependencies in source code. WHEN: upgrade Consumption to Flex Consumption, upgrade Azure Functions plan, change hosting plan, function app SKU, migrate App Service to Container Apps, modernize legacy Azure Java SDKs (com.microsoft.azure to com.azure), migrate Azure Cache for Redis (ACR/ACRE) to Azure Managed Redis (AMR).
azure-cost-optimization
microsoft/azure-skills
Identify Azure cost savings from usage and spending data. USE FOR: optimize Azure costs, reduce Azure spending/expenses, analyze Azure costs, find cost savings, generate cost optimization report, identify orphaned resources to delete, rightsize VMs, reduce waste, optimize Redis costs, optimize storage costs, AKS cost analysis add-on, namespace cost, cost spike, anomaly, budget alert, AKS cost visibility. DO NOT USE FOR: deploying resources (use azure-deploy), general Azure diagnostics (use azure-diagnostics), security issues (use azure-security)

