
cleaker
Resolution before direction. Name before place.
Identity exists in relation to something else.
There is no meaningful .me floating in the void. There is only .me in context.
me(SEED);
cleaker(me); // mounts this .me
subject = cleaker(me)
Quick Start
Select your language:
| Language | Source | Status | Documentation |
|---|---|---|---|
| Typescript | cd cleaker/Typescript && npm install |
Typescript Docs ⟡ | |
| Python | cd cleaker/Python/ |
Not Available | Python Docs |
| Rust | cd cleaker/Rust/ |
Not Available | Rust Docs |
import cleaker from 'cleaker';
import ME from 'this.me';
const me = new ME();
me.profile.name('Ana');
// Mount into context
let ana = cleaker(me);
console.log(ana.profile.name); // 'Ana'
me["@"]("suiGn");
cleaker(me, "neurons.me"); // suign.neurons.me
cleaker(me, "sui-desk"); // suign.sui-desk.local
Remote Pointers
const ptr = cleaker("me://ana.cleaker.me:read/profile");
ptr.status; // 'unresolved' or 'pending'
await ptr.promise; // resolves remotely and teaches the local kernel
Change the space, change the branch. Change the seed, change the universe.
Once a namespace exists, serve or execute it:
suign.neurons.me/profile semantic path / meaning
suign.neurons.me/photos/iphone semantic path / meaning
suign.neurons.me/.mesh/monads internal Monad registry
suign.neurons.me[monadlisa]/profile technical execution override
The normal address has no monad selector:
me://suign.neurons.me/profile
A monad selector is only for diagnostics, replay, or advanced routing:
me://suign.neurons.me[monadlisa]/profile
me://suign.neurons.me[worker-a]/profile
All target suign.neurons.me/profile. The selector only changes execution, not meaning.
Netget decides where a monad physically runs on a laptop, iPhone, Raspberry Pi, VM, relay, or localhost.
Cleaker keeps the semantic mount clean.
Core Forms
Cleaker is the namespace resolution and context-mounting layer.
It answers the question: “Who am I here, and in relation to what?”
cleaker() // Fixes the current namespace context.
cleaker(me) // Takes a .me that already carries its own expression
// and mounts it into the current namespace tree.
// No username needed separately — .me already knows its own expression.
These are the two primary, conceptual forms.
cleaker() fixes context, and cleaker(me) places identity into that context.
There is also a practical operational form used by the current implementation:
cleaker(me, space) // Mounts name + space as a namespace branch.
// The mounted node can signIn to hydrate from its remote memory.

Cleaker does not mutate .me internals.
It operates as a contextual lens over the kernel.
The kernel learns. Cleaker does not reach inside.
Cleaker does not create identity.
It mounts it:
Who am I here.
neurons.me
MIT License.