Hizal Register Focus
Declare what you're working on. Enables focus-tag-based chunk injection.
Usage
hizal__register_focus(
session_id="<session-id>",
task="<clear description of current work>",
tags=["<relevant-tag>", "<another-tag>"]
)
Parameters
- session_id — the active session's ID (from
start_session or get_active_session) - task — a short, clear description of what you're doing (e.g., "Implement webhook signature verification for Nuvei DMNs")
- tags — keywords that match
focus_tags rules on context chunks. Chunks with matching rules get injected into your session automatically.
When to Use
- At session start, if the task is known
- Mid-session, if the task changes significantly
- After a context reset, to re-establish focus
Tips
- Keep tags specific and domain-relevant. Good:
["webhooks", "signing", "nuvei"]. Bad: ["code", "work"]. - You can re-register with different tags as the task evolves — it replaces the previous focus.