用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill heir-sync-management命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
基于 SOC 职业分类
正在显示 SKILL.md
| name | heir-sync-management |
| description | Master-Heir synchronization, contamination prevention, and promotion workflows |
| metadata | {"inheritance":"master-only"} |
Safely synchronize cognitive architecture from Master to Heirs without contamination.
Scope: Master-only skill. Covers sync pipelines, PII protection, drift detection, skill promotion, and clean-slate distribution.
| Concept | Definition |
|---|---|
| Heir | Platform-specific deployment inheriting Master's DNA (VS Code, M365, Codespaces) |
| Deployment Channel | Delivery mechanism for an heir (Marketplace, Teams Package, devcontainer push) |
| Integration | Cross-heir communication (OneDrive Sync, GitHub Cloud) |
| Translation Heir | Heir requiring format/schema conversion (e.g., M365 — export pipeline) |
| Deployment Heir | Heir needing only configuration, no code translation (e.g., Codespaces — devcontainer.json) |
| Contamination | Master-specific data leaking into heir packages |
| Drift | Heir diverging from Master's architecture over time |
| Promotion | Elevating heir-developed capabilities back to Master |
Rule: Never confuse delivery mechanism with inheritance relationship — the "what" (identity/DNA) stays constant, only the "how" (delivery) varies.
The sync script (sync-architecture.js) copies these folders from Master .github/ to Heir .github/:
| Folder | Content |
|---|---|
instructions/ | Procedural memory |
prompts/ | Episodic memory |
config/ | Configuration (with exclusions) |
agents/ | Agent definitions |
muscles/ | Execution scripts |
skills/ | Skills (filtered by inheritance) |
| Item | Why |
|---|---|
user-profile.json (real) | Contains personal name, email, preferences |
episodic/ memories | Session-specific to Master |
| Master-only skills | Only useful for managing the Master repo |
| API keys, PATs, secrets | Environment-specific credentials |
| Working memory with populated P5-P7 | Gives new users pre-filled slots instead of clean defaults |
Every sync pipeline must implement three independent defense layers:
Files that are never copied, period:
const EXCLUDED_CONFIG_FILES = [
'user-profile.json', // Personal data
'MASTER-ALEX-PROTECTED.json', // Kill switch marker
'goals.json', // Session-specific
];
Scan all files being copied for hardcoded personal data:
| Pattern | Action |
|---|---|
| Real names in source headers | Replace with team/org name |
| Email addresses in code | Replace with placeholder |
Personal names in package.json | Use organization name |
| Populated P5-P7 working memory slots | Reset to *(available)* |
Rule: Personal identity belongs ONLY in user-profile.json. All other files use team/org names.
Post-copy regex scan that blocks packaging on violations:
| Check | Regex Example | On Match |
|---|---|---|
| Real name in files | /\bFirstName\s+LastName\b/g | EXIT 1 |
| Email addresses | /[\w.-]+@[\w.-]+\.\w+/g | EXIT 1 (except templates) |
| API keys | /[A-Za-z0-9]{32,}/ in non-code files | WARNING |
| Populated P5-P7 | Check copilot-instructions Memory Stores | EXIT 1 |
Anti-pattern: Manual checklists. The copy function itself must be architecturally incapable of leaking.
Simply excluding personal files leaves heirs without expected file structure. Generate fresh templates:
| File | Master Version | Heir Template |
|---|---|---|
user-profile.json | Real user data | Empty with defaults + setup instructions |
copilot-instructions.md | Populated P5-P7 | P5-P7 set to *(available)* |
goals.json | Active session goals | Empty goals array |
After copying files, apply these transformations:
Run these validations before every release:
| Check | Method | Fail Condition |
|---|---|---|
| Skill count match | Count Master inheritable vs Heir skills | Mismatch |
| File hash comparison | SHA256 of synced files | Divergence without override |
| Inheritance field validation | All skills have inheritance in synapses | Missing field |
| Orphan reference detection | Grep for files referenced but not present | Broken references |
| Config drift | Compare heir config against Master template | Unexpected values |
| Signal | Indicates |
|---|---|
| Heir P5-P7 slots populated | Sync overwrote clean defaults |
| Heir has master-only skills | Exclusion filter not working |
| Heir synapse IDs don't resolve | Broken references from Master copy |
Heir package.json has personal name | Sanitization missed |
| Step | Action | Output |
|---|---|---|
| 1. Discover | Review heir DK/skill files for portable knowledge | Candidate list |
| 2. Create Skill | Write SKILL.md in Master's .github/skills/ | New skill file |
| 3. Compare Gaps | Diff heir knowledge against Master's existing coverage | Gap analysis |
| 4. Implement | Port patterns, translate code (Python→TS if needed) | Working code |
| 5. Test | Validate in Master context | Passing tests |
| 6. Document | CHANGELOG entry, ROADMAP update | Release-ready |
Heirs naturally create granular one-capability-per-skill files during experimentation. During promotion:
Anti-pattern: Promoting every heir skill as-is without consolidation review causes skill sprawl.
When porting from Python heirs to TypeScript Master:
| Python | TypeScript |
|---|---|
dataclass | interface |
raise Exception | throw new Error |
**kwargs | Optional config object |
async def | async function |
try/except | try/catch |
Ask: "Is this skill ONLY useful for managing the Alex repo itself?"
| Answer | Classification | Example |
|---|---|---|
| Yes, master-repo only | master-only | release-preflight, heir-curation |
| No, any developer benefits | inheritable | deep-thinking, meditation, security-review |
Only a few skills are genuinely master-only:
heir-curation — Managing what heirs receiveheir-sync-management — This skillmaster-alex-audit — Master workspace auditingrelease-preflight — Marketplace publishingrelease-process — Release pipeline| Heir | Type | Translation | Deploy Mechanism | Maintenance Cost |
|---|---|---|---|---|
| VS Code Extension | Source | Compile only | npx vsce publish | Low |
| M365 Copilot Agent | Translation | Full export/schema mapping | Teams Developer Portal | High |
| GitHub Codespaces | Deployment | None (same extension) | git push devcontainer.json | Very Low |
Everything else should be inheritable unless it references Master-specific file paths or workflows.
Each platform heir must position against its native competitor, not a generic category:
| Heir | Compares Against | Not Against |
|---|---|---|
| VS Code Extension | GitHub Copilot (native) | "AI assistants" generically |
| M365 Agent | Microsoft 365 Copilot | "AI assistants" generically |
Store descriptions, README headers, and comparison tables must use platform-specific language and keywords.
The release script must enforce sync before packaging:
sync-architecture.js (copies Master → Heir)BUILD-MANIFEST.json timestamp (prevents stale packaging)Rule: It must be impossible to publish stale content through the official release process.