name: x-account-enrichment description: Enrich skeleton X/Twitter account entity pages to full quality (8-15KB), matching antirez-com.md / simon-willison.md depth. category: wiki
X Account Enrichment
Enrich skeleton entity pages for X/Twitter accounts tracked in ~/x-accounts.yaml.
Workflow
⚠️ CRITICAL: Git History Check First Before enriching ANY page, check if a richer version exists in git history. Use
bash config/hermes/skills/wiki/wiki-entity-enrichment-from-article/references/find-richest-version.sh wiki/entities/<handle>.md 3. If the richest version has >50 more lines than current, restore it first, then enrich on top. Seewiki-entity-enrichment-from-article→references/pre-write-verification.md→ "Git History Enrichment" for the full pattern.
Audit current state:
python3 -c " import os, yaml with open(os.path.expanduser('~/x-accounts.yaml')) as f: accounts = [a['handle'].lstrip('@') for a in yaml.safe_load(f)['accounts']] entity_dir = os.path.expanduser('~/wiki/entities') for handle in accounts: path = os.path.join(entity_dir, f'{handle}.md') if os.path.exists(path): with open(path) as f: content = f.read() skeleton = 'status: skeleton' in content enriched = 'Core Ideas' in content print(f' {handle}: skeleton={skeleton}, enriched={enriched}') else: print(f' {handle}: MISSING') "Prioritize by tiers:
- Tier 1: High-impact AI researchers, open-source leaders, known bloggers
- Tier 2: ML engineers, startup founders, educators
- Tier 3: Contributors, emerging voices
Batch process 2 per subagent (4 parallel max):
- Split entities across 4 parallel subagents, 2 per subagent
- Provide exact filenames in the goal (absolute paths:
/home/exedev/wiki/entities/{name}.md) - Include the format template in the prompt
- 8 entities processed this way = ~6 minutes total (vs 15+ minutes sequential)
Post-batch verification:
# Check file sizes ls -la ~/wiki/entities/*.md | sort -k5 -n -r | head -30 # Find remaining skeletons grep -l 'status: skeleton' ~/wiki/entities/*.md # Find duplicates (skeleton + enriched for same person) # Common pattern: full-name-slug.md vs handle.mdCleanup duplicates:
# Delete skeleton duplicates after confirming enriched version exists rm ~/wiki/entities/ethan-mollick.md # → emollick.md rm ~/wiki/entities/chip-huyen.md # → chipro.md rm ~/wiki/entities/lilian-weng.md # → lilianweng.md rm ~/wiki/entities/eugene-yan.md # → eugeneyan.md rm ~/wiki/entities/samuel-colvin.md # → samuelcolvin.md (also empty) rm ~/wiki/entities/benjamin-clavi.md # → bclavie.md rm ~/wiki/entities/cl-mentine-fourrier.md # → clefourrier.md rm ~/wiki/entities/late-interaction.md # concept, not personCommit and push:
cd ~/ai-topics && git add wiki/ && git commit -m "wiki: enrich X accounts (batch N)" && git push
Enrichment Format Template
---
title: "Full Name"
handle: "@twitter_handle"
created: 2026-04-10
updated: 2026-04-10
tags: [person, topic1, topic2]
aliases: ["handle", "alt-name"]
---
# Full Name (@handle)
| | |
|---|---|
| **X** | [@handle](https://x.com/handle) |
| **Blog** | [URL](URL) |
| **GitHub** | [username](https://github.com/username) |
| **Role** | Job title |
| **Known for** | Key contributions |
| **Bio** | 2-3 sentence background |
## Overview
2-3 paragraph introduction of who they are, their background, and why they matter in AI.
## Core Ideas
Their key viewpoints, theories, and opinions on LLM/AI Agent technologies. Use subsections for each major theme. Quote their actual posts/articles where possible.
## Key Work
- Project/tool/library they created
- Papers published
- Notable blog posts
- Talks and presentations
## Blog / Recent Posts
Key articles they've written with dates and summaries.
## Related People
Connections to other wiki entities.
## X Activity Themes
What they tweet about most frequently.
Quality Targets
- Size: 8-15KB per page minimum
- Content: Actual quotes, specific examples, real blog post links
- Sections: Core Ideas (with subsections), Key Work, Blog/Recent Posts, Related People, X Activity Themes
- Frontmatter: No
status: skeletontag - Cross-references: Link to other wiki entities using
[[entity-name]]format
Known Subagent Pitfalls
Filename aliasing: Subagents create files with different names than specified (e.g.,
hynek-schlawack.mdinstead ofhynek.md). Always audit post-batch for duplicates.Budget exhaustion: 50-iteration budget per subagent. When processing 5 entities, subagent may hit limit and skip writing some files. Check
exit_reason: max_iterationsin results.Path discipline: delegate_task subagents must always target
~/wiki/entities/. If a delegated context shows~/.hermes/home/..., treat it as a runtime artifact and keep writing to the canonical wiki path only.Status cleanup needed: Even when subagents write content successfully,
status: skeletonin frontmatter is often NOT removed. Always verify and manually replace withstatus: completeif needed.Successful pattern confirmed (2026-04-10): 8 entities enriched in 4 parallel batches of 2 each, completed in ~6 minutes with file sizes 12.5-18.7KB (exceeding 8-15KB target). This confirms the 2-per-subagent batching strategy works well.
Research Strategy
For each person:
- Search X/Twitter for their recent activity and key opinions
- Check their blog/personal site for articles
- Look up GitHub repositories they've created
- Find interviews, talks, or presentations
- Search for mentions in AI community discussions
- Cross-reference with other wiki entities for related connections