一键导入
wiki-assess
Assess wiki against Karpathy pattern standards
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Assess wiki against Karpathy pattern standards
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Search across all memory systems — ~/roadmap, beads, claude memories, hermes sqlite (audit log), hermes briefings, hermes index, openclaw memories, wiki, and conversation history. Use whenever the user asks to search memories, find something in memories, or looks for anything that might have been captured in any memory store. Trigger on: 'search memories', 'find in my memories', '/ms', '/memory_search', 'search across all memories', 'look up in memory', 'did I save this somewhere', 'do I have anything about X in memory'.
Dependencies required for /secondo command
| name | wiki-assess |
| description | Assess wiki against Karpathy pattern standards |
Assess any wiki directory against Karpathy gist pattern:
Accept path argument or default to /Users/jleechan/llm_wiki/wiki
SOURCES=$(ls $WIKI/sources/*.md 2>/dev/null | wc -l)
ENTITIES=$(ls $WIKI/entities/*.md 2>/dev/null | wc -l)
CONCEPTS=$(ls $WIKI/concepts/*.md 2>/dev/null | wc -l)
ORACLE="$WIKI/syntheses/jeffrey-oracle.md"
# Count outbound links — both MD links [text](path.md) and legacy [[wikilinks]]
OUTBOUND_MD=$(grep -oE '\[[^\]]+\]\([^)]+\.md\)' "$ORACLE" 2>/dev/null | sort -u | wc -l)
OUTBOUND_WIKI=$(grep -oE '\[\[[^]]+\]\]' "$ORACLE" 2>/dev/null | grep -v '|' | sort -u | wc -l)
OUTBOUND=$((OUTBOUND_MD + OUTBOUND_WIKI))
INBOUND=$(grep -rl 'jeffrey-oracle' "$WIKI"/**/*.md 2>/dev/null | wc -l)
Target: outbound ≥15, inbound ≥10.
# Count raw [[wikilinks]] in concepts/ and entities/ (outside code fences)
WIKILINKS=$(grep -rh '\[\[' "$WIKI/concepts" "$WIKI/entities" 2>/dev/null | \
grep -v '^\s*```' | grep -c '\[\[' || true)
Target: 0. Any [[wikilinks]] outside code blocks are invisible on github.com.
## Wiki Assessment: <wiki_path>
### Structure: ✅/❌
### Ratios:
| Metric | Value | Target | Status |
|--------|-------|--------|--------|
| Sources | N | - | - |
| Entities | N | - | - |
| Concepts | N | - | - |
| Entity ratio | X% | >5% | ✅/❌ |
| Concept ratio | X% | >5% | ✅/❌ |
### Index Quality: ✅/❌
### Frontmatter: ✅/❌
### Oracle Backlink Density:
| Metric | Value | Target | Status |
|--------|-------|--------|--------|
| Outbound links from oracle (MD + wikilinks) | N | ≥15 | ✅/❌ |
| Inbound links to oracle | N | ≥10 | ✅/❌ |
### GitHub Link Health:
| Metric | Value | Target | Status |
|--------|-------|--------|--------|
| Raw [[wikilinks]] in concepts+entities | N | 0 | ✅/❌ |
### Verdict: COMPLIANT / NON-COMPLIANT
/wiki-assess — assess default llm_wiki/wiki-assess ~/memory/wiki — assess memory wiki