@polycode-projects/the-mechanical-code-talker 1.3.1 → 1.3.2
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/README.md +1 -1
- package/ROADMAP.md +35 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -170,7 +170,7 @@ on the chat's hot path.
|
|
|
170
170
|
entailment (`tmct syllogise`) is mechanical OWL rule materialization applied
|
|
171
171
|
offline, rule-by-rule and retractable, not an LLM. There is **no LLM anywhere
|
|
172
172
|
in the product**. (An LLM-as-judge exists only in the offline eval harness
|
|
173
|
-
that tunes tmct, see `
|
|
173
|
+
that tunes tmct, see `SKILL_BENCHMARK_CHAT.md`, never in the product path.)
|
|
174
174
|
- **It never guesses silently.** When it cannot resolve your question it says
|
|
175
175
|
so and nudges you toward a query it *can* answer.
|
|
176
176
|
|
package/ROADMAP.md
CHANGED
|
@@ -382,6 +382,31 @@ resolver/guardrail/planner (96% plan completion, 0% hallucination, closed-world
|
|
|
382
382
|
levers; the `../bedrock-meter` $0 rung; the playtest; Stage-2/Stage-5 research notes. Full detail:
|
|
383
383
|
`CHATBENCH_0.8.0.md`, `AGENTBENCH_0.8.0.md`.
|
|
384
384
|
|
|
385
|
+
**Doc restructuring — `PLAN_AGENTS.md` (2026-07-10)**: `PLAN_TMCT_ECOSYSTEM_INTEGRATION.md` was
|
|
386
|
+
rewritten and renamed to `PLAN_AGENTS.md`, absorbing six sibling docs (`PLAN_AGI_ARCHITECTURE.md`,
|
|
387
|
+
`PLAN_CAPABILITY_ROUTER.md`, `PLAN_TAUGHT_RELATIONS.md`, `PLAN_OSS_ACE_PARSER.md`,
|
|
388
|
+
`PLAN_ontology-hierarchies.md`, `PLAN_ADVANCED_GRAMMAR.md` — all now in `archive/`) and sequencing
|
|
389
|
+
their durable content into Phase 0 (foundations) through Phase 4 (tmct as a pluggable LLM rung for
|
|
390
|
+
Claude Code/Bedrock/Copilot), plus a tiered research horizon (R1–R3). Two fresh comparative audits
|
|
391
|
+
of `../marginalia` and `../seonix` fed a new §2, "tmct uplift" — mechanisms those sibling repos
|
|
392
|
+
already have that tmct lacks or does more crudely (memory-tree versioning, actor-level trust, a
|
|
393
|
+
declarative SHACL-style ingest gate, real multi-language AST extraction, Chronograph-style temporal
|
|
394
|
+
diffing, and several Repository-Interface wrapper gaps that just need to be pointed at logic already
|
|
395
|
+
sitting in tmct's own `codegraph.mjs`). A new sibling doc, `PLAN_COMPLETIONS.md`, specs a second,
|
|
396
|
+
competing "tmct produces an artifact" capability alongside `PLAN_CODE.md`'s program synthesis:
|
|
397
|
+
mechanical, extractive text generation (broad search → group → infer between groups → summarize →
|
|
398
|
+
prune → grammar/voice pass), never LLM-style free generation. Separately, the benchmark/skill doc
|
|
399
|
+
landscape was unified: CHATBENCH stops splitting report+transcripts into two files going forward;
|
|
400
|
+
`SKILL_CHAT_PLAYTEST.md` and `SKILL_PLAYTEST_SPRINT.md` merged into `SKILL_BENCHMARK_PLAYTEST.md`
|
|
401
|
+
(with a new `PLAYTESTBENCH_<version>.md` report convention); `SKILL_TUNING_CYCLE.md` and
|
|
402
|
+
`SKILL_INFERENCE_TESTING.md` renamed to `SKILL_BENCHMARK_CHAT.md`/`SKILL_BENCHMARK_INFERENCE.md`;
|
|
403
|
+
a new `SKILL_BENCHMARK_AGENT.md` formalizes the previously-ad-hoc AGENTBENCH cycle;
|
|
404
|
+
`SKILL_STRATEGY_ADVISOR.md`/`SKILL_PLAIN_PROSE.md` renamed to `SKILL_AGENT_STRATEGY_ADVISOR.md`/
|
|
405
|
+
`SKILL_AGENT_PLAIN_PROSE.md`. A new shared reference doc, `docs/references/research-horizon.md`,
|
|
406
|
+
consolidates three near-duplicate "research frontier" essays (the frame problem, word-sense
|
|
407
|
+
disambiguation/ontology scale, Winograd-hard coreference) that had independently grown across the
|
|
408
|
+
now-archived docs.
|
|
409
|
+
|
|
385
410
|
## The umbrella product definition (item 1)
|
|
386
411
|
|
|
387
412
|
**A tolerant, ELIZA/PARRY-style chat, obsessed with software.** A best-efforts
|
|
@@ -1094,6 +1119,16 @@ Features we have deliberately shaped seams for but will not build until the phas
|
|
|
1094
1119
|
earned them. **Not everything below is deferred for the same reason** — the design horizon,
|
|
1095
1120
|
stated explicitly (2026-07-08 research pass):
|
|
1096
1121
|
|
|
1122
|
+
**`PLAN_AGENTS.md` (2026-07-10) is the governing plan for tmct's next major arc** — mounting tmct
|
|
1123
|
+
hard into `../marginalia` and `../seonix` as their shared NL↔graph engine and tool-loop/completions
|
|
1124
|
+
API, plus a pluggable LLM rung for Claude Code, Amazon Bedrock, and GitHub Copilot. It sequences
|
|
1125
|
+
Phase 0 (foundations — an extension-pack/corpus-lexicon seam, RI wrapper fixes, several other
|
|
1126
|
+
small known-how items) through Phase 4 (the LLM-rung protocol shims), a "tmct uplift" section
|
|
1127
|
+
grounded in fresh comparative audits of both sibling repos, and a tiered research horizon (R1–R3).
|
|
1128
|
+
It supersedes the six phase/track pointers below that reference now-archived docs — treat this
|
|
1129
|
+
paragraph as the up-to-date entry point, and the items below as historical record of how those six
|
|
1130
|
+
docs' scope was reached before consolidation.
|
|
1131
|
+
|
|
1097
1132
|
### Future direction: a genuine planning/agentic loop (flagged 2026-07-09, research pass done, not implemented)
|
|
1098
1133
|
|
|
1099
1134
|
The operator's own framing, explicitly out of scope for the routing-level `GOAL_BY_COMMAND`/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polycode-projects/the-mechanical-code-talker",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
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.",
|