← 返回
未分类 中文

Hizal Search

Retrieve existing context before building anything. Self-triggering — fires whenever the agent is about to search the codebase, recall prior decisions, look...
在构建前先检索已有上下文。自我触发——在代理即将搜索代码库、回忆先前决策、查看...时触发。
parkerscobey
未分类 clawhub v0.1.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 231
下载
💾 0
安装
1
版本
#latest

概述

Hizal Search

Search before you build. Don't rediscover what the team already decided.

Semantic Search

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>")

Narrow by Scope

# 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")

Filter by Chunk Type

hizal__search_context(query="<concept>", chunk_type="KNOWLEDGE")
hizal__search_context(query="<concept>", chunk_type="CONVENTION")
hizal__search_context(query="<concept>", chunk_type="MEMORY")

Exact Lookup by query_key

When you know the exact key:

hizal__read_context(query_key="<exact-query-key>", project_id="<id>")

Read a Specific Chunk

hizal__read_context(id="<chunk-uuid>")

Synthesize Related Context

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>")

Version History

Inspect how a chunk evolved:

hizal__get_context_versions(id="<chunk-uuid>")

Search Strategy

  1. Broad first — 2-3 searches with different phrasings
  2. Read the results — chunks contain architecture decisions, conventions, and prior work
  3. Narrow by scope if broad search returns too much noise
  4. Use query_key if you already know the key
  5. If an AGENT memory chunk is broadly useful — promote it with write_knowledge or write_convention

See hizal-write skill for writing back to Hizal.

版本历史

共 1 个版本

  • v0.1.0 当前
    2026-05-23 23:36 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Hizal Write

parkerscobey
在构建时持久化代理所学内容。自我触发——每当代理做决策、发现模式、学习约定或遇到问题时触发。
★ 0 📥 266

Hizal Register Focus

parkerscobey
声明代理当前正在进行的任务。自触发——当代理有明确任务并希望自动获取相关上下文时会触发。使用于...
★ 0 📥 259

Hizal Start

parkerscobey
初始化智能体上下文记忆会话。自动触发——当智能体开始工作、接收任务或进入编码会话时触发。用于在...
★ 0 📥 272