weavegraph 0.1.0-alpha.2

Graph-driven, concurrent agent workflow framework with versioned state, deterministic barrier merges, and rich diagnostics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Clippy configuration for weavegraph codebase
# Encourages use of Message convenience constructors over manual struct construction

# Allow certain patterns that are common in this domain
allow-expect-in-tests = true
allow-unwrap-in-tests = true

# Message-specific guidance (note: these are guidelines, not enforced automatically)
# - Prefer Message::user(), Message::assistant(), Message::system() over direct construction
# - Use Message::builder() for complex cases
# - Use role constants from message::roles module