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

aetherlight-sdk

v0.18.10

Published

ÆtherLight Application Integration SDK - Add voice control to any application with natural language function calling

Readme

@aetherlight/sdk

Intelligence infrastructure for any application.

ÆtherLight SDK enables your application to integrate pattern recognition, architecture analysis, and neural network learning in 30 minutes.

What This SDK Provides

  1. Pattern Recognition Engine - Multi-dimensional confidence scoring, Chain of Thought reasoning
  2. Architecture Advisor - Analyze your codebase, get recommendations, auto-generate documentation
  3. Neural Network Integration - Join distributed pattern network, contribute and discover patterns
  4. Domain-Specific Templates - Legal, analytics, medical, support, engineering (copy-paste ready)

Quick Start

npm install @aetherlight/sdk
import { AetherlightCore } from '@aetherlight/sdk';

const core = new AetherlightCore({
  domain: 'legal',
  confidence: { threshold: 0.85 }
});

const match = await core.matchPattern({
  query: 'Find California non-compete cases',
  context: { jurisdiction: 'CA' }
});

console.log(match.patterns[0].chainOfThought.reasoningChain);
// ["California Business & Professions Code §16600 voids non-compete agreements", ...]

Integration time: 10-30 minutes (depends on features needed)

Documentation

Key Features

Intelligence-Only Integration (10 minutes)

const core = new AetherlightCore({ domain: 'legal' });
const match = await core.matchPattern({ query: 'non-compete' });
// Instant pattern matching, no UI needed

Architecture Analysis (5 minutes)

const advisor = new ArchitectureAdvisor({ targetApp: './src' });
const analysis = await advisor.analyzeCodebase({ includeSecurityScan: true });
// Get architecture recommendations, security findings, auto-generated docs

Network Effects (15 minutes)

const network = new NeuralNetwork({ contributePatterns: true });
const matches = await network.discoverPatterns({ query: '...' });
// Search 100k+ patterns from global network

Use Cases

  • Legal Research Platforms - Case law matching, jurisdiction-aware search
  • Data Analytics (NL→SQL) - Natural language to SQL query generation
  • Medical Records Systems - HIPAA-compliant diagnosis suggestions
  • Customer Support - Ticket routing, automation suggestions
  • Engineering Tools - Code search, React pattern recommendations

Network Effects

When you integrate ÆtherLight SDK:

  1. Your application gets intelligence (pattern matching, architecture analysis)
  2. Your patterns contribute back to network (opt-in, zero-knowledge encrypted)
  3. Future customers benefit from your edge cases
  4. You earn reputation credits (unlock premium patterns)

Result: N applications → N² intelligence (Metcalfe's Law)

Package Structure

@aetherlight/sdk (full package)
├── @aetherlight/sdk-core (lightweight: pattern matching only)
├── @aetherlight/sdk-advisor (architecture analysis only)
└── @aetherlight/sdk-network (DHT + neural network only)

Install lightweight packages if you don't need all features:

npm install @aetherlight/sdk-core  # 2MB (vs 10MB full SDK)

Pricing

  • Starter: $99/mo - 1 app, 1,000 public patterns, local-only
  • Growth: $299/mo - 3 apps, 10,000 patterns, Circle of Trust access
  • Enterprise: $999/mo - Unlimited apps, 100,000 patterns, global network access

See PRICING.md for full details.

Support

License

MIT (see LICENSE file)


ÆtherLight SDK - Intelligence infrastructure for the AI age.