Thanks for taking the time to contribute. This repo ships a single Codex plugin (altimate-code) that delegates data-engineering tasks to the altimate-code CLI.
- Fork this repo and clone your fork.
- Make your change in a topic branch off
main. - Smoke-install the plugin locally (see Testing changes below) and confirm Codex loads the marketplace, the plugin, the SessionStart hook, and the skill without errors.
- Open a PR against
AltimateAI/altimate-codex-plugin:main.
altimate-codex-plugin/
├── .agents/plugins/
│ └── marketplace.json # marketplace registry pointing at ./plugins/altimate-code
├── plugins/
│ └── altimate-code/
│ ├── .codex-plugin/
│ │ └── plugin.json # plugin manifest
│ ├── skills/
│ │ ├── altimate-code/
│ │ │ └── SKILL.md # delegation logic
│ │ └── review/
│ │ └── SKILL.md # dbt/SQL PR reviewer routing
│ ├── commands/
│ │ ├── altimate.md # /altimate-code:altimate <task>
│ │ └── review.md # /altimate-code:review [scope]
│ ├── hooks/
│ │ ├── hooks.json # SessionStart hook definition
│ │ └── altimate-code-session-start.sh # SessionStart hook script
│ ├── README.md # plugin-specific docs
│ └── CHANGELOG.md # plugin-specific changelog
├── README.md # repo overview
├── PRIVACY.md
├── TERMS.md
├── SECURITY.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
└── LICENSE
- Routing behavior (when Codex picks up the delegation skill): edit
plugins/altimate-code/skills/altimate-code/SKILL.mdfrontmatter description and/orplugins/altimate-code/hooks/altimate-code-session-start.shadditionalContext. - Review-skill routing (when Codex picks up the review skill): edit
plugins/altimate-code/skills/review/SKILL.mdfrontmatter description. - CLI invocation details (agent selection, flags, follow-up handling): edit the workflow section in the relevant SKILL.md.
- Slash-command bodies (what
/altimate-code:altimateand/altimate-code:reviewdo when invoked explicitly): editplugins/altimate-code/commands/altimate.mdandplugins/altimate-code/commands/review.mdrespectively. - Marketplace listing (displayName, category, defaultPrompt): edit
plugins/altimate-code/.codex-plugin/plugin.jsoninterface. Note the manifest schema'sdefaultPrompt[*] <= 128char ceiling — the marketplace rejects longer entries.
The skill body (plugins/altimate-code/skills/altimate-code/SKILL.md) is byte-identical to the same skill shipped in the Claude Code and opencode variants of this plugin, per the agentskills.io open standard. If you change the skill body in this repo, you must land the same change in altimate-claude-plugin and altimate-opencode-plugin in the same release — mismatch is a bug.
The description: field in SKILL.md is loaded as YAML frontmatter. If your description contains literal double quotes, wrap the value in a YAML folded block scalar (>-) so the parser doesn't trip on the embedded quotes and doesn't fold mid-token:
---
name: altimate-code
description: >-
Delegates ... "altimate" ...
--->- (folded, strip) is preferred over | (literal): literal preserves internal newlines that Codex's manifest loader has historically rejected. Keep the description on one soft-wrapped line and let >- collapse whitespace on load.
plugin.json → interface.defaultPrompt[*] entries are validated against a 128-character maximum by codex_core_plugins::manifest. If you add a longer example the marketplace will reject the plugin at install time. Keep example prompts terse.
Smoke-install the plugin from your working copy:
# Register your local checkout as a marketplace source
codex plugin marketplace add ~/code/altimateai/altimate-codex-plugin
# Open Codex, install "Altimate Code" from /plugins, and approve the hook
codexThen start a fresh Codex session in a dbt project and issue one of the sample prompts from plugins/altimate-code/README.md. You should see altimate-code invoked (a spinner from the CLI's TUI) rather than Codex trying to write dbt SQL directly.
To reset:
codex plugin marketplace remove altimate-codex-plugin- Skill —
plugins/altimate-code/skills/altimate-code/SKILL.md— the delegation logic (altimate-code run "$USER_TASK"and surface the result). - Skill —
plugins/altimate-code/skills/review/SKILL.md— dbt/SQL PR reviewer routing (altimate-code reviewand present the signed verdict verbatim); declines non-dbt code review. - Command —
plugins/altimate-code/commands/altimate.md—/altimate-code:altimate <task>explicit-delegation slash command. - Command —
plugins/altimate-code/commands/review.md—/altimate-code:review [scope]explicit-review slash command. - Hook —
plugins/altimate-code/hooks/hooks.json+plugins/altimate-code/hooks/altimate-code-session-start.sh— SessionStart hook that publishes a static capability description of both skills so Codex can route between them when the task shape fits.
Please open a GitHub issue on this repo. For security-sensitive reports, see SECURITY.md.