ask tool lets you query everything your team has saved to Hyper using plain English. It uses vector search with reranking to find the most relevant memory documents, then synthesizes a coherent answer from what it finds. Whether you want to know what a teammate is working on, why a particular technology was chosen, or what decisions came out of last week’s planning session, ask surfaces the answer without you knowing exactly where to look.
Parameters
Returns
A synthesized answer drawn from the team’s memory documents. The answer reflects the current state of knowledge in Hyper — it’s generated at query time from retrieved context, not stored verbatim.
How It Works
When you callask, Hyper runs a vector search across your workspace’s memory documents to find the most semantically relevant chunks. Those chunks are reranked for relevance, then passed to the synthesis layer, which composes a coherent answer. The whole pipeline runs in a single call — you get a ready-to-read answer, not a list of raw documents.
Example Calls
Technology decision
Teammate status
Open tasks
Recent events
When to Use ask vs. ask-with-history
ask returns the current state of the answer — what Hyper knows right now. It’s fast and the right tool for the vast majority of questions.
Use ask-with-history instead when you explicitly need to understand how something changed over time — for example, “how has our pricing evolved?” or “what did the team decide about X before we reversed course?” If the question is “what is X right now?”, ask is faster and sufficient.
Tips for Better Answers
- Name people specifically — “what is Alex working on?” returns more targeted results than “what is the team working on?”
- Reference project names — “what’s the status of the RLS project?” is better than “what’s the status of the database work?”
- Ask for reasoning — “why did we decide to use edge caching?” surfaces rationale that
remembercaptured alongside outcomes. - Use time references — “what happened last week?” or “what did we decide in Q1?” constrains retrieval temporally.