This repository contains Codex-adapted versions of selected skills from the Claude-oriented trailofbits/skills ecosystem.
audit-context-buildinggh-climlxmodern-pythonpolymarket-api
These were built as Codex-compatible SKILL.md-first ports while preserving the practical utility of the original Claude plugin workflows.
The gh-cli skill started from ideas in:
https://github.com/trailofbits/skills/tree/main/plugins/gh-cli
audit-context-building and modern-python are also adapted to match Codex skill conventions.
The mlx skill is a current-source MLX / MLX-LM Codex skill focused on Apple
silicon workflows, runtime validation, porting checks, and local model
verification.
Install directly from this repo with the Codex skill installer:
python3 ~/.codex/skills/.system/skill-installer/scripts/install-skill-from-github.py \
--repo cavit99/codex-trailofbits-skill-ports \
--path audit-context-building gh-cli mlx modern-python polymarket-api(Use --path values as needed for a subset.)
This repo stores the source of truth for skill ports. Use this helper to keep your local Codex skills directory in sync with the repo:
./scripts/sync-skills.sh [options]Defaults:
- source: this repo root
- destination:
$CODEX_HOME/skills(falls back to~/.codex/skills) - delete behavior: mirrors each synced skill directory (deletes files that were removed from the repo)
Common examples:
# Full sync (all known skills)
./scripts/sync-skills.sh
# Sync a single skill by name
./scripts/sync-skills.sh --skill gh-cli
# Preview what would change
./scripts/sync-skills.sh --dry-run
# Sync all, then remove stale skill dirs from the destination
./scripts/sync-skills.sh --prune --forceUse --help for the full options list.
Before running helper scripts, ensure required commands are available:
gh(GitHub CLI)rg(ripgrep)rsync(used by the sync helper)git(used by the GH helpers that clone/review repository contents)
You can check/install all required dependencies at once with:
./scripts/check-dependencies.sh gh rg rsync gitExamples:
- macOS:
brew install gh ripgrep rsync git - Ubuntu/Debian:
sudo apt-get install -y gh ripgrep rsync git - Fedora/RHEL:
sudo dnf install -y gh ripgrep rsync git