Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@minhpnq1807/contextos) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ContextOS
ContextOS (ctx) is a Codex companion plugin for task-aware project context.
It reads AGENTS.md guidance, scores the rules against the current prompt, suggests relevant files, records what context would have been injected, and reports lightweight compliance evidence after the task finishes.
Quick Start
npm install -g @minhpnq1807/contextos
ctx installRestart Codex after installing, then use Codex normally. ContextOS runs through Codex hooks and the ctx-mcp MCP server.
You can also run without a global install:
npx @minhpnq1807/contextos installDemo Flow
Use this flow for a 60-second demo recording:
ctx install
codexPrompt Codex:
kiểm tra flow kiểm duyệt uploadExpected result:
UserPromptSubmitinjects relevant AGENTS.md rules.- ContextOS suggests upload/moderation files.
Stopprints a ContextOS report with rule outcomes.ctx evidenceshows the specific evidence behind the last report.
Before / After
Without ContextOS, Codex receives the full AGENTS.md context passively and can miss task-relevant rules in large context windows.
With ContextOS, each prompt gets a compact block:
## Critical ContextOS rules
- Use code-review-graph before reading files.
- All shell commands must run as minh_dev.
## Suggested files to check
- services/content-service/src/infrastructure/services/content-moderation.service.ts
- webapp/src/features/dashboard/components/moderation-status-badge.tsxWhat It Does
- Hooks into Codex
UserPromptSubmit,SessionStart, andStop. - Registers a
ctx-mcpMCP server that owns model loading and semantic scoring. - Reads the active
AGENTS.mdchain for the current workspace. - Scores rules by relevance to the user prompt.
- Finds likely relevant files with a hybrid retriever:
- first, local prompt/file heuristics create seed candidates;
- then, if
.code-review-graph/graph.dbexists, ContextOS queriescode-review-graphsemantic search and re-ranks graph-backed matches; - if no graph exists or graph lookup times out, it falls back to local heuristics.
- Stores scheduled context and hook telemetry under
$CODEX_HOME/contextos. - Reports rule outcomes as
followed,ignored, orunknown. - Injects
additionalContextinto Codex by default.
By default, ContextOS runs in injection mode. It adds task-relevant rules and files to the model context so the agent has the right project guidance at the moment it starts working.
Install
From the package:
npx @minhpnq1807/contextos installFrom this repository during local development:
rtk node bin/ctx.js installctx install does three things:
- Copies this package into
$CODEX_HOME/marketplaces/contextos. - Registers and installs
ctx@contextosthrough Codex plugin marketplace commands. - Downloads and caches the required local MiniLM embedding model under
$CODEX_HOME/contextos/models. - Warms
$CODEX_HOME/contextos/embeddings.dbfor AGENTS rules and project file paths. - Registers the
ctx-mcpMCP server and merges ContextOS global hooks into$CODEX_HOME/hooks.json.
Restart Codex after installing.
The embedding model is mandatory. ctx install intentionally fails if the model cannot be prepared, because otherwise the first prompt hook would have to cold-load or download the model.
Modes
Injection mode is the default:
ctx installIn injection mode, ContextOS analyzes each prompt, stores runtime data, and returns task-relevant additionalContext to Codex. Codex may display that injected context in the UI.
Quiet mode:
ctx install --quietQuiet mode analyzes and measures prompts but returns an empty additionalContext, so Codex does not show a hook context block.
Explicit injection mode is also accepted:
ctx install --injectDevelopment copy mode:
ctx install --copyCopies only the plugin payload into $CODEX_HOME/plugins/ctx. This is mostly for local experiments.
Troubleshooting
ctx-mcp bridge socket not found
Restart Codex after ctx install. The bridge socket is owned by the long-running ctx-mcp MCP server, so it exists only after Codex starts the server.
ContextOS model cache missing
Run:
ctx embeddings warm -- "kiểm tra flow kiểm duyệt upload"Then restart Codex.
No report found
Run at least one Codex task with ContextOS enabled and let the task finish so the Stop hook can write last-report.json.
Average efficiency: unknown
ContextOS only reports efficiency when git diff/status contains concrete evidence. Runtime-only rules, such as tool usage order, are shown as unknown unless they leave evidence in changed files.
Commands
ctx install
ctx install --quiet
ctx install --inject
ctx install --copy
ctx debug -- "fix auth login bug"
ctx report
ctx evidence
ctx stats
ctx embeddings warm -- "fix upload moderation flow"
ctx --versionctx debug
Runs ContextOS scheduling locally for a fake task and prints rule scores plus the final context that would be injected.
ctx debug -- "fix upload moderation flow"ctx report
Shows the last Stop-hook report.
ctx reportctx evidence
Shows detailed rule-by-rule evidence for the last report:
- status
- rule text
- source file
- score
- evidence reason
ctx evidencectx stats
Shows aggregate runtime stats:
- prompts analyzed
- reports generated
- injected vs quiet prompts
- average prompt analysis time
- average efficiency
- followed / ignored / unknown counts
- hook event counts
- last prompt and suggested files
ctx statsctx embeddings
Builds local embeddings for semantic rule scoring.
ctx embeddings warm -- "fix upload moderation flow"warm downloads/loads the local Xenova/all-MiniLM-L6-v2 model if needed and stores rule/prompt vectors plus project file path vectors in $CODEX_HOME/contextos/embeddings.db.
Runtime Files
ContextOS writes runtime data to:
$CODEX_HOME/contextos/Important files:
debug.log hook event log
ctx-mcp.sock private hook bridge owned by ctx-mcp
last-prompt-context.json latest scheduled context
last-report.json latest compliance report
prompt-history.jsonl prompt scheduling history
report-history.jsonl report historyThese files are local telemetry only. Hooks do not make network calls.
Project Understanding
ContextOS does not try to replace code-review-graph. It uses it as the project-understanding layer when the target repo has already built a graph database.
For file suggestions, ContextOS now runs a local RAG-style retrieval pass:
prompt
-> UserPromptSubmit hook calls ctx-mcp bridge
-> ctx-mcp reads AGENTS.md and scores rules with local MiniLM
-> run file-path embedding search against embeddings.db for semantic file candidates
-> scan filenames for initial seed candidates
-> expand candidates through relative import graph links
-> query code-review-graph semantic_search_nodes with seed entity names
-> merge graph matches with heuristic matches
-> inject top suggested files with graph evidence reasonsThis keeps the hook fast and local while still using graph semantics when available. The graph search path is visible in runtime data through file reasons such as graph:content-moderation.service.
Configuration:
CONTEXTOS_GRAPH_RETRIEVAL=0 disable graph-backed file retrieval
CONTEXTOS_GRAPH_TIMEOUT_MS=80 graph lookup timeout
CONTEXTOS_CRG_PYTHON=/path/python Python with code_review_graph installed
CONTEXTOS_EMBEDDINGS=0 disable embedding rule scoring
CONTEXTOS_MCP_BRIDGE_TIMEOUT_MS=1000 ctx-mcp hook bridge timeout
CONTEXTOS_EMBEDDING_TIMEOUT_MS=800 embedding scoring timeout inside ctx-mcp/debug
CONTEXTOS_FILE_EMBEDDINGS=0 disable file-path embedding retrieval
CONTEXTOS_FILE_EMBEDDING_TIMEOUT_MS=80 file embedding lookup timeoutHook Flow
Codex prompt
-> UserPromptSubmit hook
-> call ctx-mcp through private bridge
-> ctx-mcp scores rules and relevant files
-> write last-prompt-context.json
-> return additionalContext unless quiet mode is enabled
-> Codex runs task
-> Stop hook
-> read git diff/status
-> measure rule evidence
-> write last-report.json and report-history.jsonlRule Outcomes
ContextOS uses a heuristic diff-based measurement.
followed = evidence in the diff suggests the rule was applied
ignored = evidence in the diff suggests the rule was violated
unknown = the rule was relevant, but the diff does not prove either wayExample unknown: a rule says shell commands must run as minh_dev, but git diff does not record shell user identity. ContextOS cannot prove the rule was followed from code changes alone.
Development
Install dependencies:
rtk npm installRun tests:
rtk npm testRun MCP protocol and warm performance smoke:
rtk npm run test:mcpValidate plugin schema:
rtk npm run validate:pluginCheck the npm package contents:
npm pack --dry-runSmoke test prompt hook:
printf '%s' '{"prompt":"fix auth validation","cwd":"'$PWD'","hook_event_name":"UserPromptSubmit"}' \
| node plugins/ctx/bin/on-prompt.jsSmoke test Stop hook:
printf '%s' '{"cwd":"'$PWD'","hook_event_name":"Stop"}' \
| node plugins/ctx/bin/on-stop.jsProject Layout
bin/ctx.js CLI
plugins/ctx/hooks.json plugin hook declaration
plugins/ctx/bin/ hook entrypoints
plugins/ctx/mcp/server.js ctx-mcp MCP server and hook bridge
plugins/ctx/lib/reader.js AGENTS.md reader
plugins/ctx/lib/analyzer.js rule/file scoring
plugins/ctx/lib/embedding-scorer.js local embedding rule scoring
plugins/ctx/lib/score-context.js shared MCP scoring pipeline
plugins/ctx/lib/ctx-mcp-client.js hook bridge client
plugins/ctx/lib/import-graph.js relative import graph traversal
plugins/ctx/lib/graph-retriever.js code-review-graph retrieval bridge
plugins/ctx/lib/scheduler.js context layout
plugins/ctx/lib/measure.js diff-based compliance checks
plugins/ctx/lib/reporter.js report/evidence formatting
plugins/ctx/lib/stats.js runtime stats
plugins/ctx/lib/global-hooks.js Codex global hook installer
test/ unit tests
contextos-plan.jsx implementation plan/referenceLimitations
- Codex CLI only.
- Local marketplace plugin hooks may not fire reliably in current Codex builds, so
ctx installalso installs global hooks. - Injection mode may show a visible
hook contextblock in Codex. - Quiet mode does not inject context into the model; it only records and measures.
- Compliance is heuristic and mostly based on git diff/status.
- Some rules can only be
unknownunless ContextOS records richer telemetry such as tool calls or shell command metadata.