Borrowing it
Nothing to install: this file belongs to austin-starks/nexustrade-ts. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/austin-starks/nexustrade-ts/main/AGENTS.mdgit clone --depth 1 https://github.com/austin-starks/nexustrade-tsWrote 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/austin-starks/nexustrade-ts/agents-md)<a href="https://agentmods.dev/instructions/austin-starks/nexustrade-ts/agents-md"><img src="https://agentmods.dev/badge/instructions/austin-starks/nexustrade-ts/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.03305 | $0.03305 |
| Opus 5 | $0.01653 | $0.01653 |
| Sonnet 5 | $0.00661 | $0.00661 |
| Haiku 4.5 | $0.00331 | $0.00331 |
Grade A, and why
nexustrade-ts 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 353 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — NexusTrade TypeScript SDK
Instructions for coding agents (Claude Code, Cursor, Codex, and friends) writing NexusTrade strategies with this package. Humans: README.md is the friendlier read.
What this package is
A typed client plus ~170 generated builders for authoring trading strategies. The builders are generated from the same indicator specification the NexusTrade engine executes, so a book assembled from them is structurally valid before it ever leaves the process.
author a portfolio → submit a job → poll until terminal → read result
Setup
npm install nexustrade
export NEXUSTRADE_API_KEY=sk-...
export NEXUSTRADE_API_BASE_URL=https://nexustrade.io/api/v1
import { NexusTradeClient } from "nexustrade";
const client = new NexusTradeClient(); // reads the environment
Keys come from https://nexustrade.io/developers. Never hardcode one into a file you write; read it from the environment. Node 18+.
Rules that matter
1. Use the builders. Never hand-write the JSON.
// Right — validated shape, correct wire names
nt.buy(nt.stockAsset("SPY"), 100);
// Wrong — silently diverges from the engine's schema
{ type: "Buy", targetAsset: { symbol: "SPY" }, amount: 100 };
The client accepts both a builder result and a plain object, so a wrong literal will typecheck. Prefer the builder.
2. Comparisons are functions, not operators.
TypeScript cannot overload >, so indicator comparisons go through helpers.
This is the single most common mistake in this SDK.
// Right
nt.filter(nt.gt(nt.Price(nt.CANDIDATE), nt.SMA(nt.CANDIDATE, 200)));
// Wrong — compares object references, always nonsense
nt.filter(nt.Price(nt.CANDIDATE) > nt.SMA(nt.CANDIDATE, 200));
Available: gt gte lt lte eq neq, combined with and / or.
3. Every mutation needs an idempotency key, and it must be deterministic.
Jobs cost money. A retry with the same key returns the original operation; a retry with a new key launches a second paid job.
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.
- 8d ago First seen · 353 lines · 3,305 tokens per session scan A 5938df555ea4
nexustrade-ts AGENTS.md is an instructions file published in the GitHub repository austin-starks/nexustrade-ts (6 stars, last pushed 4d ago), licensed MIT. It adds 3,305 tokens to every session, about $0.0165 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-31.
Other instructions, from other repositories
CopilotTraining typescript.instructions.md
Instructions for MSBart2/CopilotTraining, covering typescript development standards, type definitions, type safety, generics and union types.
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.