一键导入
query-entity
Look up any mibera, trait, drug, ancestor, grail, or tarot card. Delegate to the codex CLI; intent-search via QMD when only motif/concept is known.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Look up any mibera, trait, drug, ancestor, grail, or tarot card. Delegate to the codex CLI; intent-search via QMD when only motif/concept is known.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Navigate the codex by dimension — archetype, ancestor, element, drug, era, tarot, swag rank
Security and quality audit of application codebase
Bridgebuilder — Autonomous PR Review
Create comprehensive Software Design Document based on PRD
Query Flatline protocol knowledge base via NotebookLM integration
Execute sprint tasks with production-quality code and tests
| name | query-entity |
| description | Look up any mibera, trait, drug, ancestor, grail, or tarot card. Delegate to the codex CLI; intent-search via QMD when only motif/concept is known. |
| user-invocable | true |
| allowed-tools | Bash, Read |
Look up any entity in the Mibera Codex. Always prefer the CLI — it encapsulates the slug-derivation rules, data layout, and integration contract. The skill says WHAT to do; the CLI says HOW.
micodex lookup grail 876
micodex lookup grail "Black Hole" # case-insensitive name match
micodex lookup grail black-hole # slug also accepted
micodex lookup zone bear-cave
micodex lookup archetype Freetekno
micodex lookup factor nft:mibera
micodex lookup mibera 4488
Single deterministic call. Returns the full entity JSON. Exits 1 on not_found.
Use --field=<name> to extract a single field for shell pipelines:
micodex lookup grail black-hole --field=image
# https://assets.0xhoneyjar.xyz/Mibera/grails/black-hole.webp
When the user has a motif ("void", "underworld", "skull") instead of a canonical name:
micodex search "void motif" --collection=grails
# returns ranked refs: [{ref: "@g876", name: "Black Hole", score: 0.88, ...}, ...]
Pipeable into lookup for resolution:
micodex search "void motif" --refs --limit=3 | xargs -n1 micodex lookup grail
micodex lookup grail @g876 strips the @g prefix and resolves deterministically. Refs are STABLE — the same id lookup already accepts.
Empty result [] is valid data, not an error. The intent layer never returns false positives below threshold.
micodex lookup factor <factor-id> joins score-mibera factor IDs to codex factor-lore. Use this when score-mibera emits nft:mibera and the agent needs the narrative meaning behind it.
micodex list zones
micodex list archetypes
Use to discover what's canonical before claiming an entity doesn't exist. validate_world_element (MCP tool) does the same with fuzzy-suggest:
micodex validate archetype Freetech
# {"canonical": false, "suggested": "Freetekno", "distance": 1, ...}
For programmatic exhaustive queries:
_codex/data/miberas.jsonl — all 10,000 Miberas (JSONL)_codex/data/grails.jsonl — 44 grails (JSONL)_codex/data/graph.json — full knowledge graph (5.9 MB)Prefer the CLI for single-entity queries; the JSONL/graph dumps are for batch processing.
If codex isn't on PATH (e.g. the construct pack hasn't been installed in the consumer's environment), fix the install rather than reading files directly:
# Loa pack install
loa /constructs install construct-mibera-codex
# OR: install from npm directly
npm install @0xhoneyjar/construct-mibera-codex
Then retry micodex lookup / micodex search. Reading entity files via filesystem paths is not supported — the CLI is the only blessed surface for substrate access (per ~/vault/wiki/concepts/construct-surface-decision-tree.md §6.4: skill teaches WHAT, CLI knows HOW).
~/vault/wiki/concepts/construct-surface-decision-tree.md