How the Intensity score (1–30) is built
Every suggestion in Glarify Ask carries an Intensity from 1 to 30 — an estimate of how raw the autosuggest demand signal is. Higher means the search engine surfaces the query earlier and under a less-typed seed.
The 1–30 scale is three stacked tiers
Each tier corresponds to a different autosuggest scenario for the same seed. The position inside that scenario maps linearly to the tier's slot.
Raw seed
openclawSuggestions Google offers the moment you type the bare word — the strongest expression of "this is what people search for after this term."
Seed + trailing space
openclaw␣A trailing space signals "I have committed this word, what comes next." Often returns a completely different list than the bare seed.
Seed + single letter
openclaw a … zLetter-by-letter fan-out captures the long tail. Each letter is a separate autosuggest call, scored within its own slot of 10.
intensity = tierCeiling − min(rank, 9)A query can show up in multiple tiers
When the same suggestion surfaces under more than one autosuggest scenario, we keep the maximum intensity and report tierHits so the UI can flag cross-confirmed demand.
openclawrank #5openclaw␣rank #2openclaw arank #1We deepen only the letters that earned it
A blind aa … zz fan-out would cost 676 autosuggest calls per seed. Instead, after the first pass we promote only productive letters and modifiers.
Letter promotion
Any tier-3 letter L that returned ≥4 unique suggestions is deepened with {seed} L{a..z}.
- · Top 5 most productive letters only
- · Catches second-letter tails like openclaw banned
- · Worst case: 5 × 26 = 130 extra calls
Modifier promotion
Any aux modifier M (how, why, vs, for, best, …) with ≥3 unique results is deepened with {seed} M {a..z}.
- · Top 4 modifiers only
- · Covers comparison and question intents
- · Worst case: 4 × 26 = 104 extra calls
Deepened results land in question_research_cache with a 7-day TTL. The first user pays the ~80 extra calls; everyone after gets it free until the cache expires.
Rank #1 in "openclaw a" is not the same as rank #1 in "openclaw"
Punishes long-tail queries that genuinely matter. The top suggestion for openclaw a and the top suggestion for openclaw both look like "#1" — but they represent very different demand.
Gives users a comparable yardstick across very different autosuggest states — similar to AnswerThePublic's intensity wheel, but with explicit tier semantics you can debug.
See Intensity live on your own seed
Glarify Ask fans out across all three tiers in seconds, then deepens the productive ones. Every result shows its score and the tiers it surfaced in.
Open Glarify Ask