oracle-devops-ptbr

oracle-devops-ptbr is a skill for Claude Code, Codex from Maxwbh/oracle-skills-ptbr. It costs 221 tokens per session (2,715 once invoked), scanned A, original, MIT.

A Git and delivery setup for Oracle database, APEX, and ORDS projects. Git records code changes, CI/CD automates checks and deployments, Oracle APEX builds database-backed apps, and ORDS exposes Oracle data through web services.

In plain words
What is it for?
Use it to structure repositories, name deployment scripts, export APEX and ORDS files, deploy database and web-service changes, manage branches, and configure GitHub Actions.
Why use it?
It organizes database and application files for version control and provides repeatable export and deployment steps. This reduces manual work when moving Oracle changes between environments.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to structure repositories, name deployment scripts, export APEX and ORDS files, deploy database and web-service changes, manage branches, and configure GitHub Actions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/maxwbh/oracle-skills-ptbr/oracle-devops-ptbr
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Maxwbh/oracle-skills-ptbr --skill oracle-devops-ptbr
Clone the repo
git clone --depth 1 https://github.com/Maxwbh/oracle-skills-ptbr

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for oracle-devops-ptbr

README.md
[![agentmods](https://agentmods.dev/badge/skills/maxwbh/oracle-skills-ptbr/oracle-devops-ptbr/github.svg)](https://agentmods.dev/skills/maxwbh/oracle-skills-ptbr/oracle-devops-ptbr)
Your own site
<a href="https://agentmods.dev/skills/maxwbh/oracle-skills-ptbr/oracle-devops-ptbr"><img src="https://agentmods.dev/badge/skills/maxwbh/oracle-skills-ptbr/oracle-devops-ptbr/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for oracle-devops-ptbr

Your own site · 80×15
<a href="https://agentmods.dev/skills/maxwbh/oracle-skills-ptbr/oracle-devops-ptbr"><img src="https://agentmods.dev/badge/skills/maxwbh/oracle-skills-ptbr/oracle-devops-ptbr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 221 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,715 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00221 $0.02715
Opus 5 $0.00111 $0.01358
Sonnet 5 $0.00044 $0.00543
Haiku 4.5 $0.00022 $0.00271

Measured 10d ago against content hash 718a53139d3c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

oracle-devops-ptbr scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 15 executable files (assets/apply_changelog.py, assets/apply-changelog.sh, assets/deploy_db.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/oracle-devops-ptbr/SKILL.md · 166 lines

How it starts

The opening of the file, as written. The whole thing — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.

oracle-devops-ptbr — v3.1.0

Estrutura Git, scripts de deploy e CI/CD para projetos Oracle 19c + APEX 24.2 + ORDS.

Desenvolvido por: Maxwell da Silva Oliveira — M&S do Brasil LTDA

Áreas cobertas

Área Reference Assets
Estrutura Git e Changelog references/git-project-structure-ptbr.md oracle_devops_utils.py, apply_changelog.py, deploy_full.py, deploy_db.py, deploy_ords.py, export_db.py, export_ords.py, export_apex.py
Templates e configuração module_template.sql, changelog_template.yml, github-deploy.yml, gitignore-oracle.txt, requirements-devops.txt

Quando ativar

  • Estrutura de diretórios para projeto Oracle/APEX/ORDS no Git
  • Nomenclatura de arquivos de deploy (padrão GMUD: 001_projeto_ddl_objeto.sql)
  • Scripts de deploy Python: deploy_full.py (orquestrador), deploy_db.py, deploy_ords.py
  • Export APEX split via SQLcl (apex export -split)
  • Export de módulos ORDS via ORDS_EXPORT.export_schema()
  • Versionamento de módulos ORDS (clientes_v1/, clientes_v2/)
  • Branch strategy (main / hom / develop / feature/*)
  • GitHub Actions para Oracle/APEX/ORDS
  • .gitignore para projetos Oracle
  • .gitattributes (encoding UTF-8, LF)
  • Ordem de deploy de objetos do banco (sequences → tables → packages → triggers)
  • Gestão de environments (dev / hom / prod) sem credenciais em código
  • Exportar DDL atual do banco para Git (baseline de projeto legado, sync após alteração direta)
  • Changelog de banco: migrations ordenadas (changelog.yml + db_changelog), apply_changelog.py com --dry-run/--status, checksum SHA-256, detecção de drift entre ambientes

Não usar para: código PL/SQL (→ oracle-plsql-ptbr), APEX pages (→ oracle-apex-ptbr), ORDS handlers (→ oracle-ords-ptbr), DBA ops (→ oracle-dba-ptbr), tuning (→ oracle-tuning-ptbr).

Estrutura canônica de projeto

meu-projeto-apex/
├── .gitignore            ← assets/gitignore-oracle.txt
├── db/
│   ├── tables/           ← DDL de tabelas
│   ├── views/
│   ├── packages/         ← .pks (spec) e .pkb (body) separados
│   ├── procedures/       ← .prc
│   ├── functions/        ← .fnc
│   ├── triggers/         ← .trg (sempre compound)
│   └── scripts/          ← 001_projeto_tipo_objeto.sql (GMUD)
├── apex/
│   └── app_100/
│       ├── install.sql   ← entry point
│       └── f100/         ← export split (SQLcl)
├── ords/
│   ├── modules/
│   │   ├── clientes_v1/  ← module.sql + templates.sql +
│   │   └── clientes_v2/     handlers.sql + privileges.sql
│   ├── security/
│   └── scripts/          ← (wrappers shell — chamam os .py)
├── scripts/
│   ├── deploy_full.py    ← orquestrador (changelog → apex → ords)
│   ├── deploy_db.py      ← deploy objetos banco em ordem
│   ├── deploy_ords.py    ← deploy módulos ORDS
│   ├── apply_changelog.py← migrations do changelog.yml
│   ├── export_db.py      ← extrai DDL do banco → db/
│   ├── export_apex.py    ← export split APEX via SQLcl
│   ├── export_ords.py    ← export schema ORDS
│   ├── oracle_devops_utils.py  ← módulo compartilhado
│   └── requirements-devops.txt
└── .github/workflows/
    └── deploy.yml        ← assets/github-deploy.yml

Read the full file on GitHub · 166 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 166 lines · 221 tokens per session scan A 718a53139d3c

Subscribe to this mod's changes

oracle-devops-ptbr is a skill published in the GitHub repository Maxwbh/oracle-skills-ptbr (2 stars, last pushed 3mo ago), licensed MIT. It adds 221 tokens to every session and 2,715 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

aws-ci-cd-release-engineer

Review AWS CI/CD and release safety across CodePipeline, CodeBuild, CodeDeploy, GitHub Actions, GitLab, artifact provenance, deployment gates, approvals, tests, progressive delivery, rollback, change correlation, and incident-prevention recommendations. Use when AWS releases or pipelines can affect production…

VincentChuWaiChow/vanguard-frontier-agentic · 69 tokens

aws-deployment-hotfix-operator

Patch AWS deployment hotfix config, release parameters, manifest mistakes, environment drift, rollback blockers, and rollout blockers in-repo. Use for rapid non-destructive deployment corrections; do not use for live deploy/apply/destroy actions.

VincentChuWaiChow/vanguard-frontier-agentic · 55 tokens

aws-pipeline-fix-operator

Repair AWS pipeline configuration, buildspecs, workflow files, deployment steps, artifact wiring, release guardrails, and CodeDeploy integration in-repo. Use for non-destructive CI/CD corrections; do not trigger live pipeline runs or mutate cloud state.

VincentChuWaiChow/vanguard-frontier-agentic · 58 tokens

yolo-finish

Use when a feature is implemented and verified, to land it. Default path is PR + CI check, with the ship gate confirming before the irreversible merge; fast-local is the escape hatch. Includes the risk classifier whose hard triggers always stop for a human. Triggers on "ship it", "land this", "open a PR", or as the…

CoriChui/yolo · 82 tokens

usethis

R usethis package for workflow automation. Use for package setup, Git, GitHub, and project configuration.

LeoLin990405/r-analytics-skill · 27 tokens

github-release-management

Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.

ruvnet/RuView · 27 tokens