npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aurora-foundation/obsidian-next

v0.4.13

Published

Next-gen AI Agent CLI

Downloads

1,179

Readme

Obsidian Next

Obsidian Next

This README was written by Obsidian (v0.4.8) - a global, always-on autonomous engineering daemon with adaptive reasoning and system-wide persistent memory.

License Version Providers Status

Obsidian Next is a global, always-on autonomous engineering partner. It runs as a system-wide background service, managing multiple codebases and performing proactive engineering tasks while you're away.

Built for engineers who need an agent that lives in their system - not just in a terminal window.


What Makes Obsidian Autonomous

| Feature | Obsidian Next | Other Assistants | |---------|---------------|------------------| | Lifecycle | Always-on Daemon (Service) | Script / Process-bound | | Intelligence | Adaptive Multi-Provider Engine | Single Model / Provider | | Reasoning | Claude 4.6 Adaptive Thinking | Standard Chat | | Context | 1 Million Token Mastery | 128k - 200k fixed | | Memory | Semantic Vector Store (Hybrid) | Simple Chat History | | Proactivity | Heartbeat Background Tasks | Reactive Only | | Scope | Global (System-wide) | Project-locked |


Quick Start

# Install globally
npm install -g @aurora-foundation/obsidian-next

# Initialize global daemon and services
obsidian init --service

# Check daemon status
obsidian status

Core Capabilities

Always-On Autonomy

Obsidian runs as a background service (launchd or systemd). It doesn't die when you close your terminal. It keeps reasoning, indexing, and auditing in the background.

Adaptive Multi-Provider Engine

Seamlessly switch between Anthropic Claude 4.6 and local Ollama models. Obsidian intelligently routes tasks based on complexity, cost, and availability.

1M Token Context window

Hold entire repositories in active memory. Obsidian uses Prompt Caching and Context Distillation to keep massive windows cheap, fast, and coherent.

Proactive Heartbeat (The Scheduler)

Schedule background tasks to keep your systems healthy:

  • Nightly Audits: Scan for security vulnerabilities or dead code.
  • Auto-Documentation: Generate docstrings for new functions.
  • Health Checks: Run tests and notify you via Telegram if they break.
/schedule "0 2 * * *" system:audit
/schedule "*/30 * * * *" system:sync_index

Self-Improving Skills

Obsidian can autonomously expand its own toolbox. If it hits a capability gap, it writes, tests, and registers a new TypeScript tool in ~/.obsidian-next/skills/ without a restart.


Commands

| Command | Description | |---------|-------------| | /schedule | Manage proactive background tasks | | /memory | Export/sync the Semantic Knowledge Bank | | /workspace| Focus the agent on a specific project root | | /pilot | Secure GUI automation (Computer Use) | | /status | Monitor daemon health and 1M context usage | | /resume | Restore sessions from any workspace |


Keyboard Shortcuts

| Shortcut | Action | |----------|-------------| | Shift+Tab| Cycle between Direct, Plan, and Safe modes | | PageUp | Scroll up through chat history | | PageDown | Scroll down through chat history | | Ctrl+T | Open/close Task View | | Ctrl+K | Open Command Palette | | Escape | Interrupt active agent execution |


Architecture (The Gateway Pattern)

Obsidian Next operates via a central backend service connected to multiple frontends:

graph TD
    subgraph "Interfaces"
        CLI[CLI Frontend]
        TG[Telegram Bot]
        Web[Web UI]
    end

    subgraph "Always-On Daemon (Backend)"
        Socket[Unix Domain Socket] <--> LaneQueue[Lane Queue]
        LaneQueue <--> Agent[Agent Core]
        Agent <--> MultiProvider[Multi-Provider Engine]
        Agent <--> Tools[Self-Improving Tools]
    end

    subgraph "System State (~/.obsidian-next/)"
        DB[(SQLite state.db)]
        Vector[Semantic Memory]
        MD[MEMORY.md / Logs]
    end

    CLI <--> Socket
    TG <--> Socket
    Web <--> Socket
    Agent <--> DB

Security & Safety

  • Global Auditor: Centralized security policy for all projects.
  • Lane Queue: Prevents race conditions during concurrent access.
  • Visual Privacy Guard: Redacts sensitive data from screenshots in Pilot Mode.
  • Kill Switch: Immediate local or remote termination of all autonomous activity.

Documentation

| Resource | Description | |----------|-------------| | Master Plan | The Autonomous Roadmap | | Architecture | The Daemon & Gateway System | | Smart Context | 1M Token & Semantic Memory | | Security Policy | Global Zero Trust Model |


Development

npm run dev      # Watch mode
npm run build    # Build daemon and frontend
npm test         # Full suite (vitest)

License

Copyright 2026 Aurora Foundation. Licensed under AGPL-3.0.