@polycode-projects/the-mechanical-code-talker 1.8.8 → 1.8.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/ask-vocab.mjs +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polycode-projects/the-mechanical-code-talker",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "The Mechanical Code Talker (tmct) — a tolerant, offline, $0 chat surface that guides you toward precision queries about a software repository. ELIZA/PARRY-style but domain-obsessed with code. No model calls; no codebase index of its own.",
|
package/src/ask-vocab.mjs
CHANGED
|
@@ -932,6 +932,11 @@ export const CASCADE_NOISE = Object.freeze([
|
|
|
932
932
|
// the aggregate/where parsers already tolerate a stray "the"/"a", so stripping is
|
|
933
933
|
// belt-and-braces, not load-bearing)
|
|
934
934
|
"the", "a", "an", "some",
|
|
935
|
+
// "what OTHER classes inherit from Controller" — "other" is a vague determiner
|
|
936
|
+
// like "some", not a qualifying adjective; without this it was misread as a
|
|
937
|
+
// fuzzy find TERM ("no classes found matching 'other'") instead of falling
|
|
938
|
+
// through to the ordinary reverse-inherits parse (fast-loop round 6 finding).
|
|
939
|
+
"other",
|
|
935
940
|
// topic lead-in filler — "what about the modules", "how about classes": "about"
|
|
936
941
|
// carries no graph meaning here, so stripping it lets the bare kind noun surface for
|
|
937
942
|
// the cascade's bare-kind-noun terminal rule (ask.mjs). ("what"/"how" are structural
|