惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
罗磊的独立博客
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
A
About on SuperTechFans
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog RSS Feed
IT之家
IT之家
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
月光博客
月光博客
T
Tailwind CSS Blog
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - SpecStudio-net/Aspectarian: personal Jyotiṣa asp...
SpecStudioHN · 2026-06-16 · via Show HN

A personal Vedic astrology transit app. Enter your natal chart once; Aspectarian computes active transit contacts using Parāśaran dṛṣṭi and yuti (sign-based, no orbs) and generates an interpretation via Claude. Includes a 30-day calendar, Vimśottarī daśā display, transit duration indicators, and aṣṭakavarga-informed readings.


Prerequisites

  • macOS (tested on macOS 12+, Intel and Apple Silicon)
  • Python 3.12 or later — download from python.org
  • Anthropic API key — get one at console.anthropic.com
  • Xcode Command Line Tools — required to compile system libraries. The setup script checks for this automatically and opens the installer if needed. You can also install in advance by running xcode-select --install in Terminal.

Installation

  1. Unzip the archive and open Terminal inside the folder:

  2. Run the setup script (creates a virtual environment and installs all dependencies):

    This takes about a minute on first run. You will see "Setup complete" when it finishes.


Running

Then open http://localhost:7842 in your browser.

On first launch, you will be taken through the setup wizard:

  1. Name — your display name
  2. API key — your Anthropic API key (stored securely in macOS Keychain; never written to disk)
  3. Birth data — date, time (UTC), and place of birth
  4. Preferences — default reading window, language, theme

After setup, Aspectarian opens directly to your transit reading.


What's included

Path Contents
engine/ Ephemeris computation, contacts, daśā, aṣṭakavarga, calendar
context/ System prompt assembly, symbol map
session/ LLM client, NDJSON streaming, reading storage
reports/ Day / week / month report logic
storage/ SQLite models and async queries
ui/ FastAPI app + Vanilla JS frontend
ephemeris/ephe/ Swiss Ephemeris data files (required)
data/ GeoNames city database for birth place search
symbol_map.json Jyotiṣa interpretation framework
config.py All configuration (overridable via env vars)

Configuration

All settings have sensible defaults. Override by setting environment variables before running:

Variable Default Description
CLAUDE_MODEL claude-sonnet-4-6 Anthropic model
CLAUDE_MAX_TOKENS 8192 Max output tokens per reading
PORT 7842 Local server port
HOST 127.0.0.1 Bind address (localhost only)
DB_PATH aspectarian.db Path to user database
HISTORY_MAX_READINGS 5 Past readings included in LLM context

Example — run on a different port:


Data and privacy

  • All computation runs locally — ephemeris, contacts, daśā, aṣṭakavarga.
  • Your birth data and reading history are stored in aspectarian.db (SQLite, local only).
  • Your API key is stored in macOS Keychain via the system keyring.
  • Transit readings are sent to the Anthropic API (Claude) for interpretation. No data is stored by Anthropic beyond standard API logging.

Stopping the server

Press Ctrl-C in the Terminal window running ./run.sh.