Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/kbediako/codex-termux-pocket/agents-mdgit clone --depth 1 https://github.com/Kbediako/codex-termux-pocketWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/kbediako/codex-termux-pocket/agents-md)<a href="https://agentmods.dev/instructions/kbediako/codex-termux-pocket/agents-md"><img src="https://agentmods.dev/badge/instructions/kbediako/codex-termux-pocket/agents-md.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.05513 | $0.05513 |
| Opus 5 | $0.02756 | $0.02756 |
| Sonnet 5 | $0.01103 | $0.01103 |
| Haiku 4.5 | $0.00551 | $0.00551 |
Grade A, and why
codex-termux-pocket AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
This is a copy
94% identical to codex AGENTS.md — 14 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 337 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Rust/codex-rs
ExecPlans
When writing complex features, long-running tasks, or significant refactors, use an ExecPlan as described in PLANS.md. If the user asks for an ExecPlan (or the work is clearly multi‑step and risky), create or update the ExecPlan and follow it from design through implementation, keeping it current as decisions and progress change.
If this repo lacks PLANS.md or an ExecPlans section in AGENTS.md, add them by copying ~/.codex/PLANS.md and noting the change. ~/.codex/PLANS.md is the global template only; if the user requests a cross-repo/global plan, use ~/.codex/EXEC_PLAN.md.
Termux Fork Notes
- On native Android/Termux, before doing any work, read and follow the Termux agent safety rules completely; they override conflicting instructions later in this file.
- Prefer
codex-update-alphafor Android/Termux alpha maintenance; do not default to ad-hoc local Cargo rebuilds. - The supported update order on Termux is: upstream ARM64 musl artifact, then fork
remote-artifact, then explicit source retry withCODEX_TERMUX_ALLOW_SOURCE_FALLBACK=1. - If helper or workflow commits are added on this fork, update
scripts/termux/patch_audit.tsvin the same change soautomode can classify them correctly. - Keep the main
README.mdshort. Put operational detail indocs/termux-mobile-update.md.
In the codex-rs folder where the rust code lives:
- Crate names are prefixed with
codex-. For example, thecorefolder's crate is namedcodex-core - When using format! and you can inline variables into {}, always do that.
- Install any commands the repo relies on (for example
just,rg, orcargo-insta) if they aren't already available before running instructions here. - Never add or modify any code related to
CODEX_SANDBOX_NETWORK_DISABLED_ENV_VARorCODEX_SANDBOX_ENV_VAR.- You operate in a sandbox where
CODEX_SANDBOX_NETWORK_DISABLED=1will be set whenever you use theshelltool. Any existing code that usesCODEX_SANDBOX_NETWORK_DISABLED_ENV_VARwas authored with this fact in mind. It is often used to early exit out of tests that the author knew you would not be able to run given your sandbox limitations. - Similarly, when you spawn a process using Seatbelt (
/usr/bin/sandbox-exec),CODEX_SANDBOX=seatbeltwill be set on the child process. Integration tests that want to run Seatbelt themselves cannot be run under Seatbelt, so checks forCODEX_SANDBOX=seatbeltare also often used to early exit out of tests, as appropriate.
- You operate in a sandbox where
- Always collapse if statements per https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if
- Always inline format! args when possible per https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
- Use method references over closures when possible per https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_for_method_calls
- Avoid bool or ambiguous
Optionparameters that force callers to write hard-to-read code such asfoo(false)orbar(None). Prefer enums, named methods, newtypes, or other idiomatic Rust API shapes when they keep the callsite self-documenting. - When you cannot make that API change and still need a small positional-literal callsite in Rust, follow the
argument_comment_lintconvention:- Use an exact
/*param_name*/comment before opaque literal arguments such asNone, booleans, and numeric literals when passing them by position. - A method's sole non-self argument is exempt when the method and parameter names match, such as
.enabled(false)forfn enabled(&self, enabled: bool). - Do not add these comments for string or char literals unless the comment adds real clarity; those literals are intentionally exempt from the lint.
- The parameter name in the comment must exactly match the callee signature.
- You can run
just argument-comment-lintto run the lint check locally. This is powered by Bazel, so running it the first time can be slow if Bazel is not warmed up, though incremental invocations should take <15s. Most of the time, it is best to update the PR and let CI take responsibility for checking this (or run it asynchronously in the background after submitting the PR). Note CI checks all three platforms, which the local run does not.
- Use an exact
- When possible, make
matchstatements exhaustive and avoid wildcard arms. - Newly added traits should include doc comments that explain their role and how implementations are expected to use them.
- Discourage both
#[async_trait]and#[allow(async_fn_in_trait)]in Rust traits.- Prefer native RPITIT trait methods with explicit
Sendbounds on the returned future, as in3c7f013f9735/#16630. - Preferred trait shape:
fn foo(&self, ...) -> impl std::future::Future<Output = T> + Send; - Implementations may still use
async fn foo(&self, ...) -> Twhen they satisfy that contract. - Do not use
#[allow(async_fn_in_trait)]as a shortcut around spelling the future contract explicitly.
- Prefer native RPITIT trait methods with explicit
- When writing tests, prefer comparing the equality of entire objects over fields one by one.
- Do not add tests for values that are statically defined.
- Do not add negative tests for logic that was removed.
- Do not add general product or user-facing documentation to the
docs/folder. The official Codex documentation lives elsewhere. The exception is app-server API documentation, which is covered by the app-server guidance below. - Prefer private modules and explicitly exported public crate API.
- If you change
ConfigTomlor nested config types, runjust write-config-schemato updatecodex-rs/core/config.schema.json. - When working with MCP tool calls, prefer using
codex-rs/codex-mcp/src/mcp_connection_manager.rsto handle mutation of tools and tool calls. Aim to minimize the footprint of changes and leverage existing abstractions rather than plumbing code through multiple levels of function calls. - Do not call
reset_client_sessionunnecessarily; let the incremental check logic decide whether to reuse the previous request. - If you change Rust dependencies (
Cargo.tomlorCargo.lock), runjust bazel-lock-updatefrom the repo root to refreshMODULE.bazel.lock, and include that lockfile update in the same change. CI verifies lockfile drift. - Bazel does not automatically make source-tree files available to compile-time Rust file access. If
you add
include_str!,include_bytes!,sqlx::migrate!, or similar build-time file or directory reads, update the crate'sBUILD.bazel(compile_data,build_script_data, or test data) or Bazel may fail even when Cargo passes. - Do not create small helper methods that are referenced only once.
- For tracing async work, instrument the function or method definition with
#[tracing::instrument(...)]instead of attaching spans to futures with.instrument(...)at call sites. Before adding instrumentation, check whether the callee—or the implementation method it immediately delegates to—is already instrumented. - Avoid large modules:
- Prefer adding new modules instead of growing existing ones.
- Target Rust modules under 500 LoC, excluding tests.
- If a file exceeds roughly 800 LoC, add new functionality in a new module instead of extending the existing file unless there is a strong documented reason not to.
- This rule applies especially to high-touch files that already attract unrelated changes, such
as
codex-rs/tui/src/app.rs,codex-rs/tui/src/bottom_pane/chat_composer.rs,codex-rs/tui/src/bottom_pane/footer.rs,codex-rs/tui/src/chatwidget.rs,codex-rs/tui/src/bottom_pane/mod.rs, and similarly central orchestration modules. - When extracting code from a large module, move the related tests and module/type docs toward the new implementation so the invariants stay close to the code that owns them.
- Avoid adding new standalone methods to
codex-rs/tui/src/chatwidget.rsunless the change is trivial; prefer new modules/files and keepchatwidget.rsfocused on orchestration.
- When running Rust commands (e.g.
just fixorjust test) be patient with the command and never try to kill them using the PID. Rust lock can make the execution slow, this is expected.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 337 lines · 5,513 tokens per session scan A aae5c0cdb494
codex-termux-pocket AGENTS.md is an instructions file published in the GitHub repository Kbediako/codex-termux-pocket (13 stars, last pushed yesterday), licensed Apache-2.0. It adds 5,513 tokens to every session, about $0.0276 per session on Opus 5. A static security scan graded it A with 0 findings. It is 94% identical to codex AGENTS.md, differing in 14 lines, and is treated as a copy.
Other instructions, from other repositories
dsh-mobile-apk AGENTS.md
AGENTS.md instructions for kelai141/dsh-mobile-apk, covering agents.md — dsh-mobile-apk 开发地图, 1. 仓库概览与技术栈, 2. 构建与验证命令, 一键双 abi(协调仓库根;快照→注入→门禁→gradle→out/): and 快照(termux 源 + targets 预装 + licenses + pnpm 装配 + 瘦身 + 归档):.
codexia AGENTS.md
AGENTS.md instructions for milisp/codexia, covering agents.md, project info, project tech, common commands and project structure.
CodexPotter AGENTS.md
AGENTS.md instructions for breezewish/CodexPotter, covering repository guidelines, workflow principles, engineering rules, core principles: simplicity & readability and better maintainability.
codex-howto AGENTS.md
Instructions for Phelan164/codex-howto, covering repository guidance, purpose, editing rules, validation and definition of done.
codex-docs AGENTS.md
AGENTS.md instructions for chenrui333/codex-docs, covering agents notes, scope, generated content boundaries, local workflow and validation expectations.
vibe-codex AGENTS.md
Instructions for kks0488/vibe-codex, covering vibe-codex (codex cli), repo conventions, openai docs and handy commands.