Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
842 changes: 842 additions & 0 deletions docs/rfcs/draft/RFC-0058-mcp-resource-unified-registration.md

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions examples/kb_data/docs/architecture.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Architecture Overview

AgentPool bridges multiple protocols with native PydanticAI agents.

## Layers

1. **Configuration** — YAML manifests parsed into Pydantic models
2. **Orchestration** — EventBus, SessionController, RunLoop
3. **Protocols** — ACP, OpenCode, MCP, AG-UI, OpenAI API
4. **Capabilities** — Tools, skills, MCP servers, resources

## Message Flow

```
Client → Protocol Server → SessionController → Agent (PydanticAI)
→ Tool Execution → Event Bus → Protocol Converter → Client
```
16 changes: 16 additions & 0 deletions examples/kb_data/docs/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Introduction to AgentPool

AgentPool is a unified agent orchestration framework for
YAML-based configuration of heterogeneous AI agents.

## Core Philosophy

Define once in YAML, expose through multiple protocols,
enable seamless inter-agent collaboration.

## Key Features

- Multi-agent orchestration (teams, chains)
- ACP, OpenCode, MCP, AG-UI protocol support
- YAML-based agent definition
- Structured output with Pydantic
23 changes: 23 additions & 0 deletions examples/kb_data/docs/quickstart.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Quick Start

## Installation

```bash
uv tool install wolfharness
```

## Minimal config

```yaml
agents:
assistant:
type: native
model: openai:gpt-4o
system_prompt: "You are a helpful assistant."
```

## Run

```bash
wolfharness run assistant "Hello!"
```
3 changes: 3 additions & 0 deletions examples/kb_data/docs/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Docs subdirectory

A nested markdown file to exercise the `file://{path}` template with a subdirectory.
Binary file added examples/kb_data/images/diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/kb_data/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading