Moryn v0.1.1
Patch release after the first npm publication. This release keeps the public
package on the 0.1.x line and adds a local observability dashboard for
inspecting Moryn stores during agent work.
Install
npm install -g @richardyu114/moryn@0.1.1@richardyu114/moryn@0.1.1 is the npm latest dist-tag for the public package.
Highlights
- Adds
moryn dashboardas a local observability surface. - Supports live dashboard serving with configurable host, port, refresh interval,
and record limit. - Adds static dashboard snapshots for automation and MCP environments.
- Exposes dashboard JSON at
/api/dashboardand a lightweight/healthz
endpoint in server mode. - Documents dashboard access modes, privacy behavior, and troubleshooting.
- Updates npm metadata for public package discovery: repository URL, keywords,
homepage, bugs URL, and explicit public npm registry publishing config. - Refines agent install documentation so agents prefer the npm package for
normal use and use the source repo only for source development.
Dashboard
Run the live dashboard locally:
moryn dashboard --serve --host 127.0.0.1 --port 8765Open:
http://127.0.0.1:8765/
For another device on the same LAN, bind to 0.0.0.0 and open the serving
machine's LAN address. Firewall and network policy still need to allow the port.
Static mode writes a snapshot inside the local Moryn store:
moryn dashboard --no-openThe snapshot lives under:
state/dashboard/index.html
The dashboard remains local-first. It reads the local Moryn event history and
does not upload dashboard data.
What The Dashboard Shows
- Store health and attention items.
- Sync status, ahead/behind state, and conflict signals.
- Record counts by state and type.
- Recent useful records.
- Recent raw events for debugging.
- Agent activity and lifecycle handoff visibility.
Quarantined content is redacted from overview and inspector surfaces.
Compatibility Notes
- No storage format migration is required from
v0.1. - Existing CLI and MCP memory operations continue to work.
- Dashboard snapshots are local derived artifacts and are not synced.
- The dashboard server is local HTTP; exposing it beyond
127.0.0.1should be
treated as sharing access to local Moryn observability data.
Verification
This release was prepared with:
npm run release:check
npm run smoke:agent-lifecycleThe npm package maps to Git commit:
4a56207737defc67599d336735d5cb3a407ef07b
The GitHub tag v0.1.1 points to the same commit.
Public npm install verification for this release passed for package install and
agent lifecycle smoke. The CLI --version output still reports the static
internal version string from the original MVP code path; this release keeps the
public version line at 0.1.1 and does not introduce a 0.1.2 release.