원클릭으로
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