null-lens
v1.0.1
Published
The missing protocol between user requests and AI actions — standardized intent parsing for every AI system.
Downloads
6
Maintainers
Readme
⟁ Null Lens — JavaScript SDK
Stateless API wrapper for Null Lens
Converts any natural-language input into a deterministic schema:
[Motive] [Scope] [Priority]
⚙️ Install
npm install null-lens💡 Usage
import { NullLens } from "null-lens";
const lens = new NullLens(process.env.NULL_LENS_API_KEY);
const result = await lens.parse("Summarize Q4 strategy across LATAM markets.");
console.log(result);
// [Motive] Summarize strategic direction for Q4
// [Scope] LATAM markets
// [Priority] Identify key actions for planning cycleFor complete documentation and Python SDK, see the root README
