auseklis AGENTS.md

Project instructions for Auseklis, an astrology MCP server written in TypeScript with command-line and Cloudflare Worker transports. They document its architecture, tests, build commands, and rules for astronomy calculations and server versions.

In plain words
What is it for?
Building, testing, and running the astrology server locally or on Cloudflare, changing its MCP tools, and maintaining its astronomy backend and version metadata.
Why use it?
They record design decisions that must remain consistent across both ways of running the server. They also highlight testing and version-matching requirements that prevent broken releases.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/igmizo/auseklis/agents-md
Clone the repo
git clone --depth 1 https://github.com/igmizo/auseklis

Made for: Codex, OpenCode.

Per session 534 This file is loaded in full into every session.
When invoked 534 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured yesterday against content hash 543cdd97ede3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

AGENTS.md · 30 lines

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 emit
  • npm test — 20-check smoke suite (esbuild-bundles test/smoke.ts, runs on Node)
  • npm run buildtsc -p tsconfig.build.jsondist/
  • npm run dev — wrangler dev server on :8787
  • node dist/stdio.js — run the built stdio server

Architecture (load-bearing facts)

  • src/ephemeris/engine.ts defines EphemerisBackend — 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.ts exports createServer(); 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, READONLY annotations, handlers wrap pure functions in run() from src/mcp/schemas.ts (errors → isError text).
  • SERVER_VERSION in src/mcp/server.ts must match package.json, server.json, manifest.json.

Gotchas

  • astronomy-engine's Ecliptic() ALREADY rotates EQJ→ecliptic-of-date. Never pre-rotate with Rotation_EQJ_ECT — that double-rotates (~50″/yr drift; was a real 0.1.0 bug).
  • astronomy-engine ships broken ESM packaging; engine.ts imports 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/swisseph deps or .se1/.se2 files (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.

Changes

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.

  1. yesterday First seen · 30 lines · 534 tokens per session scan A 543cdd97ede3

Subscribe to this mod's changes

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.

Related

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.

davidmosiah/astral-mcp · 433 tokens

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.

aryaminus/astro · 1,292 tokens

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.

aryaminus/astro · 6 tokens

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.

aryaminus/astro · 4 tokens

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.

scottchronicity/ephemeris-mcp · 490 tokens

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.

scottchronicity/ephemeris-mcp · 276 tokens