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/edinetdb/dexter-jp/agents-mdgit clone --depth 1 https://github.com/edinetdb/dexter-jpWrote 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/edinetdb/dexter-jp/agents-md)<a href="https://agentmods.dev/instructions/edinetdb/dexter-jp/agents-md"><img src="https://agentmods.dev/badge/instructions/edinetdb/dexter-jp/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.1 | $0.01377 | $0.01377 |
| Opus 5 | $0.00688 | $0.00688 |
| Sonnet 5 | $0.00275 | $0.00275 |
| Haiku 4.5 | $0.00138 | $0.00138 |
Grade A, and why
dexter-jp 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 today.
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.
How it starts
The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repository Guidelines
- Repo: https://github.com/edinetdb/dexter-jp
- Dexter JP is a CLI-based AI agent for deep financial research on Japanese listed companies, built with TypeScript, Ink (React for CLI), and LangChain. Powered by EDINET DB API.
Project Structure
- Source code:
src/- Agent core:
src/agent/(agent loop, prompts, scratchpad, token counting, types) - CLI interface:
src/cli.tsx(Ink/React), entry point:src/index.tsx - Components:
src/components/(Ink UI components) - Hooks:
src/hooks/(React hooks for agent runner, model selection, input history) - Model/LLM:
src/model/llm.ts(multi-provider LLM abstraction) - Tools:
src/tools/(financial search, web search, browser, skill tool) - Finance tools:
src/tools/finance/(financials, text-blocks, earnings, shareholders, key-ratios, screening) - Search tools:
src/tools/search/(Exa preferred, Tavily fallback) - Browser:
src/tools/browser/(Playwright-based web scraping) - Skills:
src/skills/(SKILL.md-based extensible workflows, e.g. DCF valuation) - Utils:
src/utils/(env, config, caching, token estimation, markdown tables) - Evals:
src/evals/(LangSmith evaluation runner with Ink UI)
- Agent core:
- Config:
.dexter/settings.json(persisted model/provider selection) - Environment:
.env(API keys; seeenv.example)
Build, Test, and Development Commands
- Runtime: Bun (primary). Use
bunfor all commands. - Install deps:
bun install - Run:
bun run startorbun run src/index.tsx - Dev (watch mode):
bun run dev - Type-check:
bun run typecheck - Tests:
bun test - Evals:
bun run src/evals/run.ts(full) orbun run src/evals/run.ts --sample 10(sampled)
Coding Style & Conventions
- Language: TypeScript (ESM, strict mode). JSX via React (Ink for CLI rendering).
- Prefer strict typing; avoid
any. - Keep files concise; extract helpers rather than duplicating code.
- Add brief comments for tricky or non-obvious logic.
- Do not add logging unless explicitly asked.
- Do not create README or documentation files unless explicitly asked.
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.
- today Changed · +2 lines · +82 tokens per session 1a75aba0c116
- 6d ago First seen · 98 lines · 1,295 tokens per session scan A d569f6c8a675
dexter-jp AGENTS.md is an instructions file published in the GitHub repository edinetdb/dexter-jp (304 stars, last pushed yesterday), licensed MIT. It adds 1,377 tokens to every session, about $0.0069 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
deepagents AGENTS.md
AGENTS.md instructions for langchain-ai/deepagents, covering global development guidelines for the deep agents monorepo, corridor security analysis, development workflow, suppressing ruff rules and pr conventions.
opik copilot-instructions.md
Copilot instructions for comet-ml/opik, covering copilot code review instructions, project overview, 1. git workflow & branch management, branch naming convention and commit message standards.
openagent CLAUDE.md
Claude Code instructions for the-open-agent/openagent, covering claude.md, commands, architecture, backend (go / beego) and frontend (react).
langchain-aws AGENTS.md
AGENTS.md instructions for langchain-ai/langchain-aws, covering global development guidelines for the langchain monorepo, project architecture and context, langchain-aws structure, key components and langgraph-checkpoint-aws structure.
InvestSkill GEMINI.md
Gemini CLI instructions for yennanliu/InvestSkill, covering investskill — gemini cli setup & usage guide, installation & setup, quick start, navigate to the investskill directory and start gemini cli (loads gemini.md automatically).
Swarm AGENTS.md
Instructions for christopherkarani/Swarm, covering agent instructions, public repository hygiene and development rules.