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
- Create a document node
- Draw a connection from document to agent
- 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