Search 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.
共 1 个版本