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.
npx skills add Maxwbh/oracle-skills-ptbr --skill oracle-devops-ptbrgit clone --depth 1 https://github.com/Maxwbh/oracle-skills-ptbrWrote 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.
[](https://agentmods.dev/skills/maxwbh/oracle-skills-ptbr/oracle-devops-ptbr)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.
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
.gitignorepara 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
What ships with it
23 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/apply_changelog.py 12 KB runs code
- assets/apply-changelog.sh 1.5 KB runs code
- assets/changelog_template.yml 3.7 KB
- assets/create-changelog-table.sql 2.3 KB
- assets/deploy_db.py 7.7 KB runs code
- assets/deploy_full.py 6.6 KB runs code
- assets/deploy_ords.py 6.8 KB runs code
- assets/deploy-db.sh 742 B runs code
- assets/deploy-full.sh 750 B runs code
- assets/deploy-ords.sh 750 B runs code
- assets/export_apex.py 6.4 KB runs code
- assets/export_db.py 12 KB runs code
- assets/export_ords.py 4.2 KB runs code
- assets/export-apex.sh 678 B runs code
- assets/export-db.sh 670 B runs code
- assets/export-ords.sh 678 B runs code
- assets/github-deploy.yml 11 KB
- assets/gitignore-oracle.txt 3.7 KB
- assets/module_template.sql 6.8 KB
- assets/oracle_devops_utils.py 9.4 KB runs code
- assets/requirements-devops.txt 909 B
- manifest.yml 116 B
- references/git-project-structure-ptbr.md 20 KB
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.
- 10d ago First seen · 166 lines · 221 tokens per session scan A 718a53139d3c
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.
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…
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.
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.
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…
usethis
R usethis package for workflow automation. Use for package setup, Git, GitHub, and project configuration.
github-release-management
Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.