**Bulk Codex Workflow Injector**

Resolved ๐Ÿ’ฌ 3 comments Opened Apr 3, 2026 by DisabledAbel Closed Jul 1, 2026

What variant of Codex are you using?

Web

What feature would you like to see?

๐Ÿ’ก Feature Proposal: Bulk Codex Workflow Injector (Rust CLI)

Problem

Onboarding Codex across many repos is tedious โ€” you have to manually add .github/workflows/codex.yml to each one. There's no official tool to automate this at scale.

Proposed addition

A small Rust CLI utility that scans every repo under a GitHub user or org and injects the Codex workflow into any that don't already have it.

Key behaviors:

  • Paginates the GitHub API to cover all repos
  • Skips archived repos automatically
  • Idempotent โ€” won't overwrite an existing workflow
  • --dry-run flag to preview changes before committing

Usage:

export GITHUB_TOKEN=ghp_your_token
cargo run -- your-username-or-org
cargo run -- your-username-or-org --dry-run

Why it matters

For teams or power users with many repos, this removes the biggest friction point to adopting Codex everywhere. The implementation is already working and battle-tested.

I'm happy to share the full implementation for review, or to iterate on the design in this issue if the team has a preferred approach. I understand contributions are by invitation only and will wait for direction before opening any PR.

Additional information

Here is my forked repo
https://github.com/DisabledAbel/codex https://github.com/DisabledAbel/codex

Additional Context
A small Rust CLI utility that scans every repo under a GitHub user or org and injects the Codex workflow into any that don't already have it.

Key behaviors:

  • Paginates the GitHub API to cover all repos
  • Skips archived repos automatically
  • Idempotent โ€” won't overwrite an existing workflow
  • --dry-run flag to preview changes before committing

Files: Cargo.toml, src/main.rs

View original on GitHub โ†—

This issue has 3 comments on GitHub. Read the full discussion on GitHub โ†—