pico-engine
v1.5.0
Published
An implementation of the pico-engine targeting node.js
Readme
pico-engine
An implementation of the pico-engine hosted on node.js
Getting Started
Installing
You'll need node.js LTS or Current (we recommend LTS).
- Windows - use the installer at nodejs.org
- Mac - use the installer at nodejs.org or use n bash script (n makes it easy to switch between node versions)
- Linux - we recommend the n bash script which will allow you to easily install and switch between node versions.
Once you have node installed, use npm to install the pico-engine;
$ npm install -g pico-engineNow your system has a new command called pico-engine.
To start the engine simply run this command
$ pico-engineVisit the url http://localhost:3000 in a browser to use the developer UI (described below).
Troubleshooting
If install fails and you see gyp ERR! ... in the output:
pico-engine uses leveldb to store data. It's a C++ library which is prebuilt for most systems. However, if the prebuilt binary is not available for your combination of operating system and node.js version, npm will compile it for you using node-gyp. However, node-gyp assumes your system will have python 2 and a c++ compiler available.
Windows
Open command prompt as Administrator then run npm install --global --production windows-build-tools That will configure python and c++ compiler for npm.
We have had reports that the pico-engine command stops working with earlier versions of node.js, so update to the latest version.
Mac / Linux
Be sure you have python 2.7 installed. If python 3 is the system default, all you need to do is configure npm to use python 2.7 like so npm config set python /path/to/executable/python2.7
To setup C++
# Mac
xcode-select --install
# Ubuntu
sudo apt-get install build-essential
# AWS Linux
sudo yum groupinstall "Development Tools"For more help, see node-gyp.
Folder problems
When you run the npm install command, if you are in a folder which contains a folder named pico-engine, the command can fail in various ways.
Otherwise it doesn't matter which folder you are in, since you are doing a global install.
If these steps don't help
Open an issue and tag @farskipper. Please include your operating system, node.js version (node -v), and a copy of the error output.
Bootstrap
The first time you run the system it will create a root Pico with three rulesets installed.
There are three rulesets used by all Picos:
io.picolabs.wrangleris used by each Pico to keep track of itself and its childrenio.picolabs.pico-engine-uiis used by each Pico to keep track of its rectangle in the developer UIio.picolabs.subscriptionis used by each Pico to keep track of its subscriptions to other picos
Using the developer UI
With the rulesets installed, you can drag the rectangle representing your Pico and drop it wherever you want it. In its "About" tab (click on it to reveal the tabs) you can change its display name and color.
Also in the "About" tab, you can add and delete child Picos.
In the "Rulesets" tab you can see the rulesets installed in your Pico. By clicking on a ruleset id, you will see the location of its source code.
To make your own ruleset, use an editor to write its KRL code. Enter the URL of that file in the "Rulesets" tab and click on the "Install" button.
Updating/downgrading
Heads up! Especially when downgrading there may be a risk of data loss. It's recommended you backup your pico-engine home folder first. By default the folder is located ~/.pico-engine/ it contains your database.
# to view your current version
$ pico-engine --version
# to view what npm has installed globally, including current version
$ npm ls -g --depth 0 pico-engine
# to view available versions
$ npm view pico-engine versions
# to install a specific version i.e. `0.41.0`
$ npm install -g [email protected]CLI
Configuration
The server is configured via some environment variables.
PORT- The port the http server should listen on. By default it's3000PICO_ENGINE_HOME- Where the database and other files should be stored. By default it's~/.pico-engine/PICO_ENGINE_BASE_URL- The public url prefix to reach this engine. By default it's"http://localhost:3000"PICO_ENGINE_ALLOW_SELF_SIGNUP- Set to"true"or"1"to allow open registration after bootstrap (default: off; bootstrap and invite still work)PICO_ENGINE_ALLOW_LOCALHOST_C- Set to"0"to require passkey session on/c/*even from localhost (default: allow localhost without session for in-engine HTTP loops). Full registry: repoMEMORY.md§ Engine environment variables.
The PORT is the only value used in setting up the engine’s nodejs http server. We only specify the port so it listens listens to all traffic on that port, it will not filter by host.
For example, say you want to have your engine running with SSL on a custom domain i.e. https://example.com Starting the engine like this PICO_ENGINE_BASE_URL=https://example.com pico-engine is not enough. You will need to use a reverse proxy server like nginx to handle the SSL termination, and then forward the traffic to your private port that is running the engine.
Authentication
The developer UI uses passkeys (WebAuthn). On first visit you register a passkey, which creates your account and root pico. Sign in again with the same passkey; add more passkeys or invite others from Settings (gear icon).
/c/*— internal/UI API; requires a passkey session cookie (localhost bypass is on by default for in-engine KRL HTTP loops; setPICO_ENGINE_ALLOW_LOCALHOST_C=0to disable)./auth/*— registration, login, session management.
OAuth
OAuth protects external access to the mesh on /sky/*. The UI and in-engine loops continue to use passkey sessions on /c/*.
Two grant types can coexist in the same mesh:
| Grant | Use case | Client ID | Scope |
|-------|----------|-----------|-------|
| Client Credentials | Inbound webhooks (Stripe, GitHub, …) | Channel ECI | Single channel only |
| Authorization Code + PKCE | Apps like Home Assistant | app_… | Whole mesh (root + descendants) |
Mesh lock
Install the optional ruleset io.picolabs.oauth on the root pico to require a Bearer token on all /sky/* requests for that mesh. Without it, open channels work as before (channel policy only); channels tagged oauth-webhook always require Bearer.
From the Rulesets tab, install io.picolabs.oauth (KRL source: packages/pico-engine/krl/io.picolabs.oauth.krl). Removing the ruleset unlocks the mesh again.
Ruleset queries (install io.picolabs.oauth on the root): meshEnabled(), meshRequiresOAuth(eci), channelStatus(eci), createChannelSecret(eci), … — see krl/io.picolabs.oauth.krl.
Webhook credentials (Client Credentials)
For channels tagged oauth-webhook at creation time:
- Open the channel in the Channels tab.
- Create credentials —
client_idis the channel ECI; copy theclient_secret(shown once). - Mint a test token in the UI, or call
POST /oauth/token:
POST /oauth/token
Content-Type: application/json
{
"grant_type": "client_credentials",
"client_id": "<channel-eci>",
"client_secret": "<secret>"
}The returned oat_… access token works only on /sky/* URLs for that ECI.
Family, subscription, and system channels are not eligible.
OAuth apps (Authorization Code)
For integrators that need access across the mesh (e.g. Home Assistant):
- Install
io.picolabs.oauthon the root pico (mesh lock). - Settings → OAuth apps — register an app (name, redirect URIs, public vs confidential client). The client ID (
app_…) is not secret; a confidential client’s secret is shown once. - The app sends the user to authorize; after passkey consent, the app exchanges the code for tokens.
Authorize (browser; user must be signed in):
GET /oauth/authorize?client_id=app_…&redirect_uri=…&response_type=code&code_challenge=…&code_challenge_method=S256&scope=meshUnauthenticated users are redirected to sign in and then returned to authorize (/?oauth_return=…).
Token exchange (must be POST, not a browser GET with query params):
POST /oauth/token
Content-Type: application/json
{
"grant_type": "authorization_code",
"code": "oac_…",
"redirect_uri": "…",
"client_id": "app_…",
"code_verifier": "…"
}For manual testing with plain PKCE, use code_challenge_method=plain and set code_challenge and code_verifier to the same string.
Refresh:
POST /oauth/token
Content-Type: application/json
{
"grant_type": "refresh_token",
"refresh_token": "ort_…",
"client_id": "app_…"
}Use the access token on any channel ECI in the mesh:
GET /sky/query/<eci>/io.picolabs.wrangler/name
Authorization: Bearer oat_…Token prefixes
| Prefix | Meaning |
|--------|---------|
| oac_ | Authorization code (single-use, ~10 min) — exchange at /oauth/token, not a Bearer token |
| oat_ | Access token — use on /sky/* |
| ort_ | Refresh token — use at /oauth/token only |
OAuth HTTP endpoints
| Method | Path | Auth | Purpose |
|--------|------|------|---------|
| POST | /oauth/token | Public | Client credentials, authorization code, refresh token |
| GET | /oauth/token | Public | Dev-friendly alias (query params); prefer POST |
| GET | /oauth/authorize | Passkey session | Authorization code + PKCE; consent page |
| POST | /oauth/approve | Passkey session | Consent form handler |
| GET/POST/DELETE | /oauth/apps | Passkey session | Register/list/revoke OAuth apps |
| GET/POST/DELETE | /oauth/channels/:eci/* | Passkey session | Webhook credential management |
Building the UI
The root npm run build compiles the engine only. To pick up UI changes (Settings, Channels OAuth panels, etc.):
cd packages/pico-engine-ui && npm run buildThat copies the bundle into packages/pico-engine/public/. Restart the engine and hard-refresh the browser.
For UI development, run the engine and npm run dev in packages/pico-engine-ui in separate terminals.
OAuth tests
cd packages/pico-engine
npm run test:oauth # webhook Client Credentials
npm run test:acg # authorization code + refresh
npm run test:http # /c/* vs /sky/* surface + mesh lock
npm run test:auth # passkeysTests use isolated temp homes and ephemeral ports; they do not require stopping a running engine.
Contributing
See the repository root readme
Changelog
To view details about versions: CHANGELOG.md
License
MIT
