Productivity

MikroLens

Collaborative

A self-hosted product work system from signals to strategy to delivery.

Use
Collaborative product and engineering work
Storage
SQLite records for spaces, signals, documents, horizons, and work items.
Runtime
Static browser app with a Node API.
MikroLens interface screenshot

Product direction without workflow theater.

MikroLens gives teams one shared place to collect signals, shape ideas, write strategy, plan across horizons, and track the work that follows.

Use it when Jira-shaped software is too much, notes and chat are too scattered, and the team needs a common place to keep product direction and execution connected.

What ships

Intake for customer requests, support signals, internal asks, and observations

Work items, spaces, owners, blockers, target dates, and linked context

Strategy, Evolution, and Note documents linked to work

Planning horizons, understanding views, scoped API identities, and outbound webhooks

Install

Run it

mkdir -p mikrolens/api mikrolens/app ROOT="$PWD/mikrolens" curl -sSL -o "$ROOT/mikrolens_api.zip" https://releases.mikrosuite.com/mikrolens_api_latest.zip curl -sSL -o "$ROOT/mikrolens_app.zip" https://releases.mikrosuite.com/mikrolens_app_latest.zip unzip -q "$ROOT/mikrolens_api.zip" -d "$ROOT/api" unzip -q "$ROOT/mikrolens_app.zip" -d "$ROOT/app" API_DIR="$(find "$ROOT/api" -mindepth 1 -maxdepth 1 -type d | head -n 1)" APP_DIR="$(find "$ROOT/app" -mindepth 1 -maxdepth 1 -type d | head -n 1)" cd "$API_DIR" node server.mjs --static-root "$APP_DIR"