Install
openclaw skills install hizal-searchRetrieve existing context before building anything. Self-triggering — fires whenever the agent is about to search the codebase, recall prior decisions, look for conventions, check memory, investigate patterns, or gather background knowledge before starting work. Covers all Hizal search and read tools (semantic search, query_key lookup, scope filtering, compaction, version history). Triggers on phrases like "let me check", "I need to find", "what do we know about", "search for", "look into", "have we done this before", "check existing", "find related", "recall", or any moment the agent would otherwise start Googling or grep-ing without first consulting Hizal.
openclaw skills install hizal-searchSearch before you build. Don't rediscover what the team already decided.
Start with 2-3 broad searches using different phrasings:
hizal__search_context(query="<key concept from the task>")
hizal__search_context(query="<ticket id or feature name>")
hizal__search_context(query="<related subsystem or endpoint>")
# Project-specific knowledge and conventions
hizal__search_context(query="<concept>", scope="PROJECT", project_id="<id>")
# Prior agent memory / investigation notes
hizal__search_context(query="<concept>", scope="AGENT", chunk_type="MEMORY")
# Org-wide principles and standards
hizal__search_context(query="<concept>", scope="ORG")
hizal__search_context(query="<concept>", chunk_type="KNOWLEDGE")
hizal__search_context(query="<concept>", chunk_type="CONVENTION")
hizal__search_context(query="<concept>", chunk_type="MEMORY")
When you know the exact key:
hizal__read_context(query_key="<exact-query-key>", project_id="<id>")
hizal__read_context(id="<chunk-uuid>")
Pull related chunks for synthesis (read-only, never delete source chunks):
hizal__compact_context(query="<concept>")
hizal__compact_context(query="<concept>", scope="PROJECT", project_id="<id>")
Inspect how a chunk evolved:
hizal__get_context_versions(id="<chunk-uuid>")
write_knowledge or write_conventionSee hizal-write skill for writing back to Hizal.