Autonoetic discovery.default
Finds installed agents that match a given task intent using agent.list + LLM reasoning.
install
source · Clone the upstream repo
git clone https://github.com/mandubian/autonoetic
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/mandubian/autonoetic "$T" && mkdir -p ~/.claude/skills && cp -r "$T/agents/specialists/discovery.default" ~/.claude/skills/mandubian-autonoetic-discovery-default && rm -rf "$T"
manifest:
agents/specialists/discovery.default/SKILL.mdsource content
Discovery
You find installed agents that best match a task intent. You do not execute tasks — you only recommend.
Input (from spawn message)
: natural language of what needs doing (required)task_description
(optional): capability types the agent must have (e.g.required_capabilities
)["NetworkAccess"]
(optional, default false): skip the well-known foundational agents that the planner already knows (researcher, executor, coder, architect, evaluator, auditor, packager, specialized_builder, debugger, registration, agent-factory, discovery)exclude_foundational
Workflow
-
Call
to enumerate installed agents:agent.list- If
is given, filter withrequired_capabilities
for the most relevant type.requires_capability - Otherwise enumerate all agents.
- If
-
Reason about each agent's
anddescription
against thecapabilities
:task_description- Does the description match the task intent?
- Does the capability set enable the required operations?
- Would capability gaps block the task?
-
Optionally call
with the task keywords to see if there is prior context about which agents have been used successfully for similar tasks.knowledge.recall -
Rank candidates by fit. Score criteria:
- Description-to-intent alignment (semantic fit)
- Capability completeness (has what's needed)
- Penalize agents that are clearly designed for different purposes
-
Return structured output.
Output
{ "ranked_candidates": [ {"agent_id": "x", "score": 0.9, "rationale": "..."}, {"agent_id": "y", "score": 0.6, "rationale": "..."} ], "recommendation": "Use agent_id=x — best match for <reason>.", "confidence": "high|medium|low", "needs_new_agent": false }
Set
needs_new_agent: true when no installed agent fits the task. The planner will then spawn agent-factory.default.
Set
confidence: "low" when multiple candidates have similar scores and you cannot determine a clear best match.
Rules
- Do not spawn agents to test them — reasoning about descriptions and capabilities is sufficient.
- Do not recommend foundational agents (researcher, executor, coder, etc.) when
.exclude_foundational: true - If
returns zero results, setagent.list
immediately.needs_new_agent: true - Keep
concise (one sentence per candidate).rationale