Share knowledge and context across agents

Document Node

Document nodes store shared knowledge that multiple agents can reference.

Purpose

Use documents to share:

  • Coding standards
  • Project requirements
  • Guidelines and checklists

Properties

Document ID

Unique identifier. Example: coding-standards, requirements

Content

The text content that agents will see:

# Coding Standards

- Use 2-space indentation
- Maximum line length: 100 characters
- Always include comments for complex logic

Connecting to Agents

  1. Create a document node
  2. Draw a connection from document to agent
  3. The agent can now access the document content

Example

[[coding-standards]] ──→ [Code Writer]
                    └──→ [Code Reviewer]

Both agents can reference the same standards.

Tips

  • Keep documents focused on one topic
  • Use for content that multiple agents need
  • Great for standards, guidelines, and checklists