No description
Find a file
2026-07-02 10:06:27 +09:00
.agents/skills Clarify docs and skill lint guidance 2026-06-24 05:49:53 +09:00
.github Bump version to 4.1.1 2026-07-01 20:55:14 +09:00
assets Add a screenshot to the README 2026-06-29 15:44:55 +09:00
docs Rehome shared modules by ownership boundary 2026-07-01 06:43:14 +09:00
scripts Rehome shared modules by ownership boundary 2026-07-01 06:43:14 +09:00
src Clarify controller-adjacent naming 2026-07-02 10:06:27 +09:00
tests Clarify controller-adjacent naming 2026-07-02 10:06:27 +09:00
.gitignore Ignore local Codex configuration 2026-06-01 21:30:47 +09:00
AGENTS.md Document design boundaries 2026-06-19 09:09:26 +09:00
biome.jsonc Rehome shared modules by ownership boundary 2026-07-01 06:43:14 +09:00
esbuild.config.mjs Switch UI runtime to Preact compat 2026-05-31 12:50:34 +09:00
eslint.config.mjs Address Obsidian review warnings 2026-06-28 12:53:28 +09:00
knip.json Fix Windows npm shim app-server launch (#16) 2026-06-28 07:24:31 +09:00
LICENSE Switch project license to Apache 2.0 2026-05-14 17:06:55 +09:00
manifest.json Bump version to 4.1.1 2026-07-01 20:55:14 +09:00
NOTICE Clarify NOTICE attribution 2026-05-14 20:45:34 +09:00
package-lock.json Bump version to 4.1.1 2026-07-01 20:55:14 +09:00
package.json Bump version to 4.1.1 2026-07-01 20:55:14 +09:00
README.md Refine README feature wording 2026-06-29 16:25:27 +09:00
tsconfig.json Enable stricter TypeScript compiler checks 2026-06-25 12:26:31 +09:00
versions.json Bump version to 4.1.1 2026-07-01 20:55:14 +09:00
vitest.config.ts Add Biome assist import organization 2026-06-24 14:54:53 +09:00

Codex Panel

Codex Panel brings Codex into an Obsidian sidebar. It keeps Codex threads beside your notes, helps you add vault context to prompts, and lets you handle approvals and file changes without switching windows.

If the Codex CLI is already installed and authenticated, Codex Panel uses that local setup. The plugin handles the Obsidian side of the workflow, while models, credentials, sandboxing, tools, hooks, and thread state stay with Codex.

Codex Panel

Why use it

  • Keep Codex work next to the notes or projects it is about.
  • Bring notes, selections, links, and attachments into prompts.
  • Manage threads and respond to Codex requests inside Obsidian.
  • Review file changes, rewrite selected note text, and archive useful threads as notes.

How it works

Codex Panel starts codex app-server locally. Each open panel keeps its own active thread and draft, with Codex working from the vault root.

Codex Panel stores panel preferences only, not API keys or provider credentials.

Requirements

  • Obsidian desktop app 1.12.0 or newer.
  • Codex CLI installed, authenticated, and available as codex, or configured with an absolute executable path in Codex Panel settings.
  • A local vault where Codex is allowed to work.

Codex Panel does not support Obsidian mobile.

Installation

Install Codex Panel from Obsidian's Community plugins browser by searching for Codex Panel, then install and enable the plugin.

You can also open the plugin page directly: https://community.obsidian.md/plugins/codex-panel.

Quick start

  1. Open the command palette and run Codex Panel: Open panel, or select the ribbon icon.
  2. If Obsidian cannot find codex, set Settings -> Codex Panel -> Codex executable to an absolute path such as /opt/homebrew/bin/codex.
  3. Ask Codex to work on the vault or project from the composer.
  4. Return to earlier work from Codex Panel: Open thread... or Codex Panel: Open threads view.

Using Codex Panel

Each panel can keep a separate conversation, so related work can stay open side by side. Start fresh from the panel, reopen recent threads from the picker or panel history, or use the Threads view to see active work across the vault.

The composer understands Obsidian links. It suggests vault files and recent notes, keeps wikilinks readable, includes linked files with your prompt, and opens file links from Codex replies back in Obsidian. Use @active-note or @selection to include the active note or current Markdown selection without pasting it manually. Paste or drop files to save them in the attachment folder and reference them from the same prompt.

Completions cover slash commands, $skill-name skills, recent threads, models, and reasoning levels. Use /help for the current command list.

While a turn is running, the panel streams the conversation, reasoning, tool activity, file changes, plans, and agent activity. You can answer Codex questions, approve commands, respond to requests, steer or interrupt the turn, and manage active goals above the message stream.

When Codex changes files, open an Obsidian diff view to review the changes and copy the patch. For a focused note edit, select Markdown text and run Codex Panel: Rewrite selection to ask Codex for a replacement and review a selection-scoped diff before applying it.

Use the toolbar, composer status row, or slash commands to inspect usage, adjust turn settings, and check Codex connection details.

Threads can be archived as Markdown notes with a configurable folder, filename template, and tags. You can also archive without saving, then restore or permanently delete archived threads from settings.

Compatibility

Key Version Policy
manifest.minAppVersion 1.12.0 Minimum Obsidian desktop version declared for plugin loading.
obsidian API types 1.12.3 TypeScript API package used for compile-time checks; kept in the same minor as manifest baseline.
codex.testedCliVersion 0.142.0 Track app-server compatibility by Codex CLI minor version.

Codex Panel depends on the experimental codex app-server API.

License

Codex Panel is licensed under the Apache License 2.0. See LICENSE.

The generated TypeScript bindings under src/generated/app-server/ are generated from OpenAI Codex CLI app-server types. See NOTICE for upstream attribution.