') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); [finding] The teaching corpus has no lexical anti-drift pin, so a filter operator's prose can contradict its driver forever — the reachable half of "no gate can catch it" · Issue #13582 · objectstack-ai/objectstack · GitHub
Skip to content

[finding] The teaching corpus has no lexical anti-drift pin, so a filter operator's prose can contradict its driver forever — the reachable half of "no gate can catch it" #13582

Description

@os-project-manager

Filed while repairing #13539 (PRs #13577 and #13581). ⛔ Nothing was edited for this; it is a finding for triage to grade.

#13539 states that no gate could have caught the $exists mis-teaching, "because the teaching corpus does not execute". That was tested rather than assumed while repairing it, and it splits in two:

True as stated. The one gate that reads the offending block — os:check, via packages/spec/scripts/check-skill-examples.ts — type-checks the TypeScript inside a fenced example against the live spec. The false line in content/docs/protocol/objectql/query-syntax.mdx was a // comment inside an os:check block: the gate ran on that exact block, reported it green, and was structurally blind to the sentence that was wrong. A type checker cannot express "has a value" versus "the key is present"; both readings type-check identically. The same holds for the markdown table rows, which are not code at all.

False as a limit. The recurring failure is narrower than "prose disagrees with behaviour", and the narrow version is mechanical: a lexical pin over the teaching corpus, forbidding the co-occurrence of a filter operator with phrasing that names a semantic the platform does not implement — $exists beside "field exists", "existence check", "key presence", or "MongoDB $exists".

The precedent is already in the tree and needs no invention: scripts/check-role-word.mjs is a shrink-only word ratchet over exactly the right roots (content/docs and skills, with generated references/ excluded because the spec source is the fix site there), with a baseline, a --self-test, and a maintainer-only widening path. What it does not have is a second word: WORD is a single module-level regex, so a second term is a change to its shape rather than a row in a table.

Why this is worth a card rather than a note

The corpus is where AI authors read the contract. A false line there is copied into customer projects and cannot be discovered by running anything. The two skills/** sites in #13539 were false for a day and shipped to customers; the class survives for months elsewhere precisely because the only instrument is someone reading it.

What a taker should weigh, honestly

Refs

#13539 (the repair, and the claim this tests) · PR #13529 (the alignment that made the lines false) · #13531 (the same operator's stale cells inside packages/spec, already dispatched) · scripts/check-role-word.mjs (the precedent) · packages/spec/scripts/check-skill-examples.ts (the gate that ran green over the false line).

Metadata

Metadata

Type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions