agent-awareness-codex-plugin
v0.8.6
Published
Codex plugin for agent-awareness — modular awareness plugins for AI coding agents
Downloads
1,046
Readme
agent-awareness Codex Bundle
This directory packages the Codex-specific runtime surface for agent-awareness.
What this bundle contains
.codex-plugin/plugin.json— Codex plugin manifesthooks.json— Codex hook event config templatehooks/— stable.mjswrappers for the session-start and prompt hooks.codex-mcp.json— optional diagnostic MCP configdist/— built runtime copied in at publish/build time
What works today
The supported Codex integration is still:
npm install -g agent-awareness
agent-awareness codex setupThat command writes absolute hook commands into the user's Codex config and points them at the packaged wrappers in this directory.
Optional diagnostics MCP is separate:
agent-awareness codex mcp install
agent-awareness codex doctorThat MCP surface is diagnostic only. It exposes awareness_doctor, but it does not deliver realtime context updates.
What does not work today
Clean-room validation showed that installing the Codex plugin bundle through Codex's plugin/browser flow can cache and enable the bundle, but it does not create hooks.json in the user's Codex config and it does not activate awareness hooks.
So this directory is real provider packaging, not the canonical end-user install path.
Codex also does not currently have a documented equivalent to Claude Code channels in this repo, so there is no supported Codex realtime push path here.
Local development
From the repository root:
npm run build
node codex-plugin/hooks/codex-session-start.mjs
node codex-plugin/hooks/codex-prompt-submit.mjsThe wrappers resolve in this order:
codex-plugin/dist/- repo-root
dist/ - repo-root
src/hooks/
That keeps local development working before publish while still giving Codex stable packaged entrypoints.
