itt-field-store
v0.4.0
Published
Intent Tensor Theory -- Field-based compute substrate replacing SQL. JS client for the ITT API.
Maintainers
Readme
itt-field-store
Intent Tensor Theory — JavaScript client for the ITT field-based compute API
Replaces SQL + Supabase with field-based simultaneous computation. Math: WP-06 — Graph Laplacian Diffusion + Allen-Cahn + Banach Fixed Point.
Install
npm install itt-field-storeUsage
const { ITTClient } = require('itt-field-store');
const client = new ITTClient('https://your-api.onrender.com');
// Insert (replaces INSERT INTO)
await client.table('users').insert([
{ _id: '1', name: 'Alice', role: 'admin' },
{ _id: '2', name: 'Bob', role: 'user' },
]);
// Query (replaces SELECT * WHERE)
const results = await client.table('users')
.query({ role: 'admin' })
.top(10)
.fetch();
// MCP tool registration for LLMs
const { ITT_MCP_TOOLS } = require('itt-field-store');
// Pass ITT_MCP_TOOLS to your LLM's tools arrayintent-tensor-theory.com
