用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/fabioc-aloha/Alex_Plug_In --skill memory-export命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Create and maintain ASCII visual dashboards for project tracking with parallel lane progress bars
Store and manage voice samples for TTS cloning — portable, version-controlled audio references
Clear documentation through visual excellence
正在显示 SKILL.md
基于 SOC 职业分类
| name | memory-export |
| description | Export all cognitive memory to a portable file for porting Alex to other AI work surfaces |
| tier | extended |
| applyTo | **/*export*memory*,**/*memory*export*,**/*port*alex* |
Export the complete set of stored memories, user profile, preferences, and learned context into a single portable file. Designed for porting Alex's knowledge to other AI work surfaces (Claude Code, ChatGPT, etc.).
Alex accumulates knowledge across multiple memory layers. This skill collects all layers into one structured, copy-pasteable document that can seed a new AI session elsewhere.
Gather from ALL of these sources, in order:
| Source | Location | Contains |
|---|---|---|
| User Profile | AI-Memory/user-profile.json | Identity, career, credentials, preferences, technologies (cloud-synced) |
| User Memory | /memories/ (Copilot Memory files) | VS Code workflow tips, tool workarounds, writing rules |
| Session Memory | /memories/session/ | Current conversation context (if any) |
| Repository Memory | /memories/repo/ | Codebase-specific facts stored by Copilot |
| AI-Memory Profile | AI-Memory/profile.md | Narrative profile and expertise (cloud-synced) |
| Active Context | .github/copilot-instructions.md Active Context section | Current persona, phase, mode, focus trifectas |
| Repository Memories | Repository memories in system context | Facts stored from prior agent interactions |
Output as a single Markdown document inside a code block. Use this exact structure:
# Alex Memory Export
# Exported: {YYYY-MM-DD}
# Sources: {list sources that had content}
## Instructions
[YYYY-MM-DD] - {verbatim rules the user set}
## Identity
[YYYY-MM-DD] - {personal facts}
## Career
[YYYY-MM-DD] - {roles, companies, skills}
## Projects
[YYYY-MM-DD] - {project name — what it does, status, key decisions}
## Preferences
[YYYY-MM-DD] - {opinions, working style, tool preferences}
## Architecture Context
[YYYY-MM-DD] - {Alex version, trifecta counts, active focus, current phase}
[YYYY-MM-DD] or [YYYY-MM] if only month known, or [unknown] if undatedInstructions: Only rules the user explicitly asked to be followed. Tone, format, style, "always do X", "never do Y", behavioral corrections. Do NOT include architecture rules from copilot-instructions.md — those travel with the repo.
Identity: Name, age, birthday, location, origin, education, family, languages, personal interests. Source primarily from user-profile.json.
Career: Current and past roles, companies, impact metrics, expertise areas. ONE entry per role/highlight preferred.
Projects: ONE entry per project. Include: what it does, current status, key decisions. Use project name as first words. Merge information from multiple sources about the same project.
Preferences: Working style, learning style, tool preferences, diagram preferences, model preferences, publishing goals. Broadly applicable opinions.
Architecture Context: Current Alex version, phase, mode, trifecta counts, focus areas. This section helps the receiving surface understand where things stand.
The export is designed to be pasted into:
CLAUDE.md or session context)The receiving surface won't have Alex's architecture, so:
| Don't | Why |
|---|---|
| Include architecture internals (synapses, hooks, muscles) | Not portable — specific to Alex |
| Paraphrase user instructions | Loses intent; verbatim preserves meaning |
| Include secrets, tokens, or API keys | Security risk |
| Include full file contents from the workspace | Too large; export should be <10KB |
| Omit the completeness statement | User needs to know if anything was missed |