aetherlight-sdk
v0.18.10
Published
ÆtherLight Application Integration SDK - Add voice control to any application with natural language function calling
Maintainers
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
- Pattern Recognition Engine - Multi-dimensional confidence scoring, Chain of Thought reasoning
- Architecture Advisor - Analyze your codebase, get recommendations, auto-generate documentation
- Neural Network Integration - Join distributed pattern network, contribute and discover patterns
- Domain-Specific Templates - Legal, analytics, medical, support, engineering (copy-paste ready)
Quick Start
npm install @aetherlight/sdkimport { 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
- ARCHITECTURE.md - SDK component breakdown, integration patterns, business model
- INTEGRATION_GUIDE.md - Step-by-step 30-minute integration guide
- DOMAIN_TEMPLATES.md - 5 copy-paste templates (legal, analytics, medical, support, engineering)
- NETWORK_CONTRIBUTION.md - Pattern feedback loop, network effects, reputation credits
- PRICING.md - SDK licensing tiers ($99-$999/mo)
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 neededArchitecture Analysis (5 minutes)
const advisor = new ArchitectureAdvisor({ targetApp: './src' });
const analysis = await advisor.analyzeCodebase({ includeSecurityScan: true });
// Get architecture recommendations, security findings, auto-generated docsNetwork Effects (15 minutes)
const network = new NeuralNetwork({ contributePatterns: true });
const matches = await network.discoverPatterns({ query: '...' });
// Search 100k+ patterns from global networkUse 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:
- Your application gets intelligence (pattern matching, architecture analysis)
- Your patterns contribute back to network (opt-in, zero-knowledge encrypted)
- Future customers benefit from your edge cases
- 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
- Documentation: docs/
- Issues: GitHub Issues
- Email: [email protected]
- Discord: ÆtherLight Community
License
MIT (see LICENSE file)
ÆtherLight SDK - Intelligence infrastructure for the AI age.
