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/claude-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.00535 | $0.00535 |
| Opus 5 | $0.00267 | $0.00267 |
| Sonnet 5 | $0.00107 | $0.00107 |
| Haiku 4.5 | $0.00053 | $0.00053 |
Grade A, and why
auseklis CLAUDE.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 2d 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 auseklis AGENTS.md — 4 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.
What it actually says
CLAUDE.md
Astrology MCP server. TypeScript ESM, official MCP SDK, dual transport (stdio bin + Cloudflare Worker).
Commands
npm run typecheck— strict TS, no emitnpm test— 23-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.
- 2d ago First seen · 30 lines · 535 tokens per session scan A d25704acb2fd
auseklis CLAUDE.md is an instructions file published in the GitHub repository igmizo/auseklis (1 stars, last pushed 1mo ago), licensed MIT. It adds 535 tokens to every session, about $0.0027 per session on Opus 5. A static security scan graded it A with 0 findings. It is 94% identical to auseklis AGENTS.md, differing in 4 lines, and is treated as a copy.
Other instructions, from other repositories
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.
mcp AGENTS.md
Instructions for cloudflare/mcp, covering agents.md, project overview, mcp specification compliance, repository structure and setup.
flaim AGENTS.md
Instructions for jdguggs10/flaim, covering repo agent guide, scope, public/private boundary, important distinction: product assets vs repo instructions and start here.
mcp-migration-check AGENTS.md
Instructions for AlpayC/mcp-migration-check, covering working in this repository, shape, rules that are not negotiable, before you say it works and adding a rule.
sidewise CLAUDE.md
Claude Code instructions for nulljosh/sidewise, covering sidewise, architecture, endpoints, develop and tests.