INQUIRING LINE

Could tagging each AI agent with a searchable, version-stamped skill profile replace the need to hand-wire agent connections?

Can versioned capability vectors solve the discovery gap in existing protocols?

This explores whether embedding an agent's abilities as searchable, version-stamped vectors can fix the hardest part of agent protocols like MCP — letting one agent find the right collaborator or tool without someone hand-wiring the connections in advance.


This reads the question as being about discovery — the unglamorous problem of how an agent finds the right tool or sub-agent when nobody pre-registered the wiring. The corpus is genuinely split on whether versioned capability vectors are the answer, and that tension is the interesting part. The strongest 'yes' comes from work treating capability discovery as a first-class search operation: encode what each agent can do as a semantic vector, stamp it with a version, drop it into an approximate-nearest-neighbor index, and matching scales sub-linearly even as the population of agents gets wildly heterogeneous Can semantic capability vectors replace manual agent routing?. The key move is bundling policy and budget constraints into the vector itself, so 'who can do this' and 'who is allowed to and can afford to' resolve in one lookup rather than in brittle hand-written routing tables.

But there's a sharp counter-current. One line of practitioner research found that protocol-mediated tool access — exactly the MCP-style indirection this idea sits on top of — is itself the source of non-deterministic failures: ambiguous tool selection and shaky parameter inference. Their fix was to go the *other* way, replacing the protocol with explicit direct function calls and a single tool per agent, and a 306-team survey backed them up: 85% of production teams build custom agents rather than trust the frameworks Why do protocol-based tool integrations fail in production workflows?. Read together, these two notes suggest semantic discovery and production determinism are pulling in opposite directions — vectors buy you flexible matching at the cost of the predictability production teams are desperate for.

The most useful framing for resolving that tension is the 'wrap, don't replace' result: coordination standards that actually get adopted compose existing protocols like MCP under a shared substrate instead of competing to replace them, letting value accrue without forcing ecosystem-wide rewrites Should coordination protocols wrap existing systems or replace them?. Versioned capability vectors fit that mold better than they fit a rip-and-replace story — they're a discovery layer you can lay over what exists, and the *versioning* is what lets the substrate evolve without breaking callers. That's the bridge between the optimistic and pessimistic notes above.

The deeper question the corpus quietly raises is whether a vector can faithfully represent a capability at all. The skill-library work shows the pattern can work in practice: VOYAGER stores executable skills in an embedding-indexed library and composes complex skills from simple ones, which is structurally the same idea as a searchable capability index Can agents learn new skills without forgetting old ones?. And API-grounded generation shows agents can discover and orchestrate vetted capabilities on the fly without touching the underlying data, which is the discovery problem solved by a different route Can LLMs generate workflows without touching proprietary data?. The cautionary thread is that surface-level matching can hide broken internals — a representation can carry all the right decodable features while being fundamentally disorganized underneath, invisible until distribution shift Can models be smart without organized internal structure?.

So the honest answer: versioned capability vectors look like a real fix for the *discovery* gap specifically — the matching-and-routing problem — and the versioning plus the wrap-don't-replace strategy is what makes them deployable rather than yet another competing standard. What they don't solve, and what the corpus keeps flagging, is whether the thing you matched will then behave deterministically once invoked. Discovery and reliability are separate gaps, and solving the first cleanly can make it tempting to assume you've solved the second.


Sources 6 notes

Can semantic capability vectors replace manual agent routing?

Versioned Capability Vectors embedded in HNSW indices couple semantic matching with policy and budget constraints, making capability discovery a first-class operation that scales sub-linearly as agent heterogeneity increases.

Why do protocol-based tool integrations fail in production workflows?

MCP integration caused non-deterministic failures through ambiguous tool selection and parameter inference. Replacing it with explicit direct function calls and single-tool-per-agent design restored determinism. A 306-practitioner survey confirms 85% of production teams build custom agents, forgoing frameworks.

Should coordination protocols wrap existing systems or replace them?

Research shows that agent coordination standards achieve adoption by composing existing protocols like MCP and DIDComm under a shared substrate, rather than competing to replace them. Bridging lets value accrue incrementally without forcing ecosystem-wide rewrites.

Can agents learn new skills without forgetting old ones?

VOYAGER demonstrates that storing executable skills in an embedding-indexed library and composing complex skills from simpler ones allows agents to learn continuously while avoiding the forgetting that occurs with weight-update-based methods. Environmental feedback refines skills while an automatic curriculum drives continual exploration.

Can LLMs generate workflows without touching proprietary data?

FlowMind demonstrates that LLMs can generate on-the-fly workflows for spontaneous tasks by orchestrating calls to vetted APIs rather than accessing data directly, eliminating confidentiality risks while maintaining high-level human inspection and feedback.

Show all 6 sources
Can models be smart without organized internal structure?

Models trained with SGD can contain all the linearly decodable features needed for a task while maintaining fundamentally broken internal organization. This makes them vulnerable to perturbation and distribution shift invisible to standard evaluation metrics.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.

Research prompt for your LLMexpand ↓

Copy into ChatGPT or Claude to take this line of inquiry further — it asks the model to find newer work and re-test which earlier constraints still hold.

You are a systems analyst for multi-agent LLM coordination. Still-open question: can versioned capability vectors close the discovery gap in existing agent protocols — finding the right tool or sub-agent when nobody pre-registered the wiring?

What a curated library found — and when (dated claims, not current truth; spanning ~2024–2026):
- Encoding each agent's abilities as a version-stamped semantic vector in an approximate-nearest-neighbor index makes capability matching scale sub-linearly across wildly heterogeneous agent populations; bundling policy and budget into the vector resolves "who can, who may, and who can afford" in one lookup (~2025).
- A sharp counter-current: MCP-style protocol-mediated tool access is itself a source of non-deterministic failure — ambiguous tool selection, shaky parameter inference — so some teams go the other way, using direct function calls and one tool per agent (~2025).
- A 306-team survey found 85% of production teams build custom agents rather than trust frameworks (~2025).
- Adopted standards "wrap, don't replace": they compose MCP under a shared substrate instead of competing to replace it; versioning is what lets the substrate evolve without breaking callers (~2026).
- Identical performance metrics can mask fundamentally different internal representations, invisible until distribution shift (~2024).

Anchor papers (verify; mind their dates): Federation of Agents (arXiv:2509.20175, 2025); Practical Guide for Production-Grade Agentic Workflows (arXiv:2512.08769, 2025); Foundation Protocol (arXiv:2605.23218, 2026); SkillClaw (arXiv:2604.08377, 2026).

Your task:
(1) Re-test each constraint. For every finding, judge whether newer models, training, tooling (SDKs, harnesses), orchestration (memory, caching, multi-agent), or evaluation have relaxed or overturned it. Separate the durable question — discovery vs. post-invocation determinism — from perishable limits; cite what resolved each, and say plainly where a constraint still appears to hold.
(2) Surface the strongest contradicting or superseding work from the last ~6 months on whether semantic discovery and production determinism genuinely conflict, or whether recent work dissolves that tension.
(3) Propose 2 research questions that assume the regime may have moved.

Cite arXiv IDs; flag anything you cannot ground in a real paper.