@polycode-projects/the-mechanical-code-talker 3.1.2 → 3.1.4
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/corpus/seon/relations.jsonl +2 -0
- package/package.json +1 -1
- package/src/adapters/repository-interface.mjs +3 -0
- package/src/adapters/wink-model.mjs +13 -4
- package/src/domain/code-explorer-hints.mjs +4 -0
- package/src/domain/codeplan/graph-delta.mjs +1 -0
- package/src/domain/concept.mjs +16 -0
- package/src/domain/interpret/normalize.mjs +9 -1
- package/src/domain/module-paths.mjs +6 -4
- package/src/services/chat.mjs +26 -2
- package/src/surfaces/web/memory-ask-browser.bundle.js +94 -94
- package/src/tools/schema-docs.mjs +10 -0
|
@@ -86,6 +86,16 @@ export const PREDICATE_DOCS = Object.freeze([
|
|
|
86
86
|
"Module → Function/Class. A module's public-API (`__all__`) entry that re-exports a " +
|
|
87
87
|
"symbol defined or imported elsewhere — answers \"where is X importable from,\" not " +
|
|
88
88
|
"just \"where is X defined.\"" },
|
|
89
|
+
{ prop: "mgx:serves", kind: "serves", description:
|
|
90
|
+
"Module/Function → Module/Route/surface. A provider-declared \"this component provides " +
|
|
91
|
+
"or backs that one\" edge — a handler serving a route, a module serving a surface. An " +
|
|
92
|
+
"owned term with no SEON equivalent; tmct's own indexer emits none, so it appears only " +
|
|
93
|
+
"in a graph supplied through the provider seam." },
|
|
94
|
+
{ prop: "mgx:denotes", kind: "denotes", description:
|
|
95
|
+
"Vocabulary term → any code entity. A provider-declared naming edge: a glossary or " +
|
|
96
|
+
"lexicon term is the word for this module, class or function. An owned term with no " +
|
|
97
|
+
"SEON equivalent; tmct's own indexer emits none, so it appears only in a graph supplied " +
|
|
98
|
+
"through the provider seam." },
|
|
89
99
|
{ prop: "mgx:asksAbout", kind: "asksAbout", description:
|
|
90
100
|
"Session → any entity. A chat session's turn resolved this entity as its subject " +
|
|
91
101
|
"or cited it in the answer — which parts of the codebase a human actually asked " +
|