원클릭으로
mm-identity
Read and update identity directly in the database
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read and update identity directly in the database
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Activates Builder Mode for a journey and loads project context/docs
Backs up the production memory database
Activates Builder Mode for a journey and loads project context/docs
Scans memories for recurring patterns and proposes consolidation (merge, identity update, or shadow candidate)
Asks other LLMs through OpenRouter with Mirror context
Lists recent conversations from the memory database
| name | mm:identity |
| description | Read and update identity directly in the database |
| user-invocable | true |
After the initial seed, the database is the source of truth for identity. Use these commands to inspect and edit identity directly — no YAML files needed.
/mm:identity list [--layer LAYER]
/mm:identity get <layer> <key>
/mm:identity set <layer> <key> --content "..."
/mm:identity edit <layer> <key>
List all identity entries currently stored in the database.
uv run python -m memory identity list [--layer LAYER] [--mirror-home PATH]
Examples:
uv run python -m memory identity list — all entriesuv run python -m memory identity list --layer ego — only ego layerLayers: self, ego, user, organization, persona, journey, journey_path
Print the full content of one identity entry.
uv run python -m memory identity get <layer> <key> [--mirror-home PATH]
Examples:
uv run python -m memory identity get ego behavioruv run python -m memory identity get self souluv run python -m memory identity get persona engineerUpdate identity content directly in the database.
uv run python -m memory identity set <layer> <key> --content "..." [--mirror-home PATH]
If --content is omitted, content is read from stdin.
Examples:
uv run python -m memory identity set ego behavior --content "Be direct."cat new-soul.md | uv run python -m memory identity set self soulOpen the current content in $EDITOR, edit it, and save back to the database on close.
uv run python -m memory identity edit <layer> <key> [--mirror-home PATH]
Examples:
uv run python -m memory identity edit ego behavioruv run python -m memory identity edit self souluv run python -m memory identity edit persona engineerIf no changes are detected, nothing is written. If the file is left empty, the edit is aborted.
/mm:identity [subcommand] [args]Run the corresponding command above and present the output to the user.