Skip to main content
Mneno provides a built-in CLI command to bootstrap coding-agent instructions and shared workflow documentation within your repository. This helps AI coding assistants understand how to recover and update local workspace memories.

Installing Templates

To install coding-agent instructions into an initialized repository, use the mneno setup-agent command:
This copies the selected agent template and shared Mneno workflow documents into your current repository. It is a local filesystem operation only, requiring no MCP server, cloud account, provider configuration, or external network calls.

Supported Agents

Mneno currently supports the following coding assistants:
  • codex
  • claude-code
  • cursor
  • gemini-cli
  • windsurf
For example, to configure instructions for Claude Code, run:

Safety And Overwrites

By default, setup refuses to overwrite existing integration files. Preview changes with --dry-run:
Intentionally replace existing agent integration files with --force or -f:

Shared Workflow Documents

When you run setup-agent, Mneno copies shared workflow docs into .mneno/agent-docs/:
  • AGENT_WORKFLOW.md: standard workflows for when and how the agent should read or update memories.
  • MEMORY_GUIDELINES.md: criteria for durable, useful memories and what not to store.
  • COMMAND_REFERENCE.md: local mneno CLI command reference and cautions.
Every supported setup receives a valid Agent Skills package, including SKILL.md and local references/ files copied from the shared docs. Mneno installs it relative to the project root at:
  • .agents/skills/mneno-memory/ for Codex, Cursor, Gemini CLI, and Windsurf.
  • .claude/skills/mneno-memory/ for Claude Code, which uses its own project skill directory.