Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
23
Sign in to like and favorite skills
AgentMind: Core reasoning engine that processes requests through LLM completions, manages conversation state, and coordinates tool execution.
AgentAction: Handles individual tool calls, executes actions, and returns results to the conversation flow.
import { AgentMind } from "@copilot-ld/libagent"; const mind = new AgentMind(memoryClient, llmClient, toolClient); const response = await mind.process({ resourceId: conversationId, content: "What is the weather?", });
for await (const chunk of mind.stream(request)) { process.stdout.write(chunk.content); }
Works with
libmemory for context windows, librpc for gRPC clients, and
libllm for completions. Used by the Agent service.