Moryn v0.1
Moryn v0.1
First public MVP release of Moryn, a local-first memory, skill, and handoff layer
for AI agents.
Install
npm install -g @richardyu114/moryn@0.1.0The primary executable is moryn. The package also includes
moryn-agent-smoke for post-install lifecycle smoke testing.
Highlights
- Local-first agent memory store under
~/.moryn. - Append-only event history with rebuildable snapshots and indexes.
- Record model for
memory,skill,soul,session_summary, and
agent_note. - Safety states for
raw,candidate,canonical,archived, and
quarantinedrecords. - CLI access for initialization, writes, recall, boot, refresh, revision,
promotion, archive, quarantine, linking, rebuild, and Git sync. - stdio MCP server so Codex, Claude, Cursor, Gemini, and other MCP hosts can use
the same local store. - Agent lifecycle commands for startup guidance, status checkpoints, and final
handoff summaries. - Operation contracts and selection-source contracts so agents can discover the
command surface instead of relying on hard-coded README examples. - Optional Git sync to a user-owned private repository. Event history is the
source of truth; derived local views are intentionally rebuildable.
Agent Workflow
Moryn is designed for agents to operate directly. The intended setup flow is:
moryn init
moryn project init --path <repo>
moryn agent guide
moryn contracts operations --indexAgents can then recall project context, write durable decisions, share
in-progress status, and finish with a handoff summary for the next session.
MCP
Start the MCP server with:
moryn mcpGeneric MCP host configuration:
{
"mcpServers": {
"moryn": {
"command": "moryn",
"args": ["mcp"]
}
}
}Verification
This release was prepared with the project release gate:
npm run release:check
npm run smoke:agent-lifecycleThe npm package maps to Git commit:
773cd3a88729b176bf652c733573ba585d374f5b
The GitHub tag v0.1 points to the same commit.
Known Limits
- This is a first-version MVP.
- Sync uses Git and is intended for a dedicated private Moryn data repository,
not the source code repository. - Dashboard observability is not part of this release; it arrives in
v0.1.1. - The CLI version string in this release is static.