You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compact-form helpers for LLM round-trips that want less data:
omc_help_brief(name) -> string (sig + desc, no example)
omc_help_signature(name) -> string (just the signature)
omc_help_example(name) -> string (just the example)
omc_help_category(name) -> string (just the category)
omc_is_unique(name) -> int (1 if OMC-unique)
omc_count_in_category(c) -> int (population count)
omc_random_builtin() -> string (random name)
omc_random_unique_builtin() -> string (random OMC-unique name)
omc_token_vocab_dump(n?) -> string (first N vocab entries)
For an LLM the workflow becomes:
- omc_help_signature for quick disambiguation
- omc_help_example when stuck
- omc_help_brief for batch exploration
- omc_random_unique_builtin to discover differentiators
Tests: 14 covering each helper + known/unknown lookup, category-
filter sanity, vocab-dump default vs explicit size.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
0 commit comments