openai / openai/codex

Support Custom Action Buttons/Commands in Status Bar (similar to VS Code Commandbar)

Open
#37,824 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

app config enhancement
Dominant language
Rust
Stars
125k
Forks
19.5k
PR merge metrics
PR metrics pending

Description

What variant of Codex are you using?

App

What feature would you like to see?

Currently, the Codex App UI is entirely hardcoded. Users cannot extend the graphical interface to map their frequent local workflows. For instance, if I want a quick-access button in the status bar (bottom-right corner) to perform a local action (e.g., launching an external tool, triggering a custom deploy script, or opening a specific path), there is no way to achieve this.

I would like Codex App to support user-defined custom UI elements in the status bar or toolbars, similar to how the vscode-commandbar extension works in Visual Studio Code.It would be amazing if users could define a simple configuration file (e.g., .codex/commandbar.json or within config.toml) to inject custom buttons into the UI

{
  "commands": [
    {
      "text": "Unit Test",
      "command": "npm run test"
    },
    {
      "text": "Deploy",
      "command": "bash ./scripts/deploy.sh"
    },
  ]
}

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by locating the Codex App status-bar or toolbar entry points and the existing config.toml handling. Compare the requested .codex/commandbar.json shape with current configuration conventions, then determine the UI, command-execution, and safety behavior required; done means documented custom buttons can reliably trigger configured local commands.

Written by the indexing model from the issue text.

Assessment

Tech stack
rust
Domain
desktop
Issue type
Feature
Difficulty
5/5
Estimated time
Over a week
Activity status
Quiet
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.