Skip to content

Moryn v0.1.1

Latest

Choose a tag to compare

@Richardyu114 Richardyu114 released this 16 Jun 07:00
· 270 commits to main since this release

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 dashboard as 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/dashboard and 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 8765

Open:

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-open

The 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.1 should be
    treated as sharing access to local Moryn observability data.

Verification

This release was prepared with:

npm run release:check
npm run smoke:agent-lifecycle

The 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.