The bundled skill file was a frozen 542-line copy that only updated on plugin re-release. Replace it with a thin pointer to the server-side resource `skill://methodology`, so skill-content changes propagate without requiring users to reinstall the plugin. - skills/oci-deal-accelerator/SKILL.md: reduced to ~40-line stub that directs Codex to read skill://methodology first, with a minimal tool table and fallback behavior if the MCP is unreachable - .codex-plugin/plugin.json: bump to 0.2.0 (breaking change in what the plugin ships; Codex treats new versions as new cache entries) - .gitignore: ignore Codex CLI's local .codex state file Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
OCI Deal Accelerator — Codex Plugin
Codex plugin that connects to the OCI Deal Accelerator MCP server and bundles a companion skill. Distributed internally via ai-lad.com.
What you get
14 tools surfaced through a remote MCP server (streamable HTTP, OAuth 2.1):
generate_full_proposal,generate_bom,generate_bom_appca,generate_cost_estimategenerate_deck,generate_diagram,generate_business_caserun_wa_review,check_feature_compatibility,compare_competitivesearch_reference_architectures,search_field_findings,report_field_findingscore_ecal_readiness
Plus a skill (skills/oci-deal-accelerator/SKILL.md) that guides Codex on when and how to invoke each tool.
Install
Once the plugin is registered in ai-lad.com you will get an <ID>. Replace it below.
Windows (PowerShell)
iwr -UseBasicParsing 'https://ai-lad.com/api/skills/<ID>/install-script?os=windows' | iex
macOS / Linux
curl -fsSL 'https://ai-lad.com/api/skills/<ID>/install-script?os=unix' | bash
The installer downloads the plugin ZIP, extracts it to ~/plugins/oci-deal-accelerator/, merges the ai-factory marketplace entry in ~/.agents/plugins/marketplace.json, and restarts Codex. Policy: installation: "AVAILABLE", authentication: "ON_INSTALL".
First-run authentication
On first install Codex kicks off the OAuth 2.1 + PKCE flow against the MCP server (AS proxy → OCI Identity Domain). A browser window opens; sign in with your Oracle SSO.
The MCP server implements Dynamic Client Registration (RFC 7591), so Codex's ephemeral http://localhost:<port> callback registers itself on the fly — no manual whitelisting in the AS required. Restricted to @oracle.com identities.
Repo layout
oci-deal-accelerator-codex/
├── .codex-plugin/
│ └── plugin.json # Codex plugin manifest
├── .mcp.json # Remote MCP server config
├── skills/
│ └── oci-deal-accelerator/
│ └── SKILL.md # Tool-usage guidance
├── assets/ # logo.png, icon.png, screenshot-1.png
├── README.md
└── .gitignore