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/igmizo/auseklis/agents-mdgit clone --depth 1 https://github.com/igmizo/auseklisWhat 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.00534 | $0.00534 |
| Opus 5 | $0.00267 | $0.00267 |
| Sonnet 5 | $0.00107 | $0.00107 |
| Haiku 4.5 | $0.00053 | $0.00053 |
Grade A, and why
auseklis 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 yesterday.
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- auseklis CLAUDE.md — 94% identical, 4 lines differ
What it actually says
AGENTS.md
Astrology MCP server. TypeScript ESM, official MCP SDK, dual transport (stdio bin + Cloudflare Worker).
Commands
npm run typecheck— strict TS, no emitnpm test— 20-check smoke suite (esbuild-bundlestest/smoke.ts, runs on Node)npm run build—tsc -p tsconfig.build.json→dist/npm run dev— wrangler dev server on :8787node dist/stdio.js— run the built stdio server
Architecture (load-bearing facts)
src/ephemeris/engine.tsdefinesEphemerisBackend— the ONLY place astronomy-engine may be imported for runtime use. Everything else derives from its primitives so the backend can be swapped (planned Rust/WASM v1).src/mcp/server.tsexportscreateServer(); both entries (src/stdio.ts,src/index.ts) attach transports to it. The Worker creates a fresh server per request (stateless).- Tool pattern: Zod raw-shape
inputSchema+outputSchema,READONLYannotations, handlers wrap pure functions inrun()fromsrc/mcp/schemas.ts(errors →isErrortext). SERVER_VERSIONinsrc/mcp/server.tsmust matchpackage.json,server.json,manifest.json.
Gotchas
- astronomy-engine's
Ecliptic()ALREADY rotates EQJ→ecliptic-of-date. Never pre-rotate withRotation_EQJ_ECT— that double-rotates (~50″/yr drift; was a real 0.1.0 bug). - astronomy-engine ships broken ESM packaging;
engine.tsimports it via namespace + default-interop fallback. Don't "simplify" to named imports — plain Node ESM breaks. - Timezone conversion (
src/ephemeris/time.ts) uses Intl only — no tz dependency. Works on Node and Workers. - LICENSING: never add
sweph/swissephdeps or.se1/.se2files (AGPL contamination — see NOTICE).
Testing philosophy
Reference facts over shape checks: published eclipse dates, the 2026 equinox, NOVAS SunPosition agreement, an independent Placidus fixture (CircularNatalHoroscopeJS, LA 2019-07-20 17:10Z). When adding astronomy, find an external anchor.
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.
- yesterday First seen · 30 lines · 534 tokens per session scan A 543cdd97ede3
auseklis AGENTS.md is an instructions file published in the GitHub repository igmizo/auseklis (1 stars, last pushed 1mo ago), licensed MIT. It adds 534 tokens to every session, about $0.0027 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
astral-mcp AGENTS.md
AGENTS.md instructions for davidmosiah/astral-mcp, covering agent development notes, scope, layout, commands and rules.
astro AGENTS.md
AGENTS.md instructions for aryaminus/astro, covering astro — agent integration guide, install, cloud endpoints (render free tier), 18 mcp tools and dev commands.
astro copilot-instructions.md
Copilot instructions for aryaminus/astro, a project described as: Astrology MCP server & Agent Skill — birth charts, transits, synastry across Western, Vedic/Jyotish & Chinese BaZi. Deterministic zero-dependency Python engine. 18 MCP tools, 31 REST endpoints, ChatGPT Action. Free & self-hostable.
astro CLAUDE.md
Claude Code instructions for aryaminus/astro, a project described as: Astrology MCP server & Agent Skill — birth charts, transits, synastry across Western, Vedic/Jyotish & Chinese BaZi. Deterministic zero-dependency Python engine. 18 MCP tools, 31 REST endpoints, ChatGPT Action. Free & self-hostable.
ephemeris-mcp AGENTS.md
AGENTS.md instructions for scottchronicity/ephemeris-mcp, covering agents.md - ai agent context, project overview, codebase map, command palette and stack.
ephemeris-mcp copilot-instructions.md
Copilot instructions for scottchronicity/ephemeris-mcp, covering github copilot instructions for ephemeris mcp, what this project does, architecture, key technical details and when writing code.