Documentation Index
Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
Use this file to discover all available pages before exploring further.
Math
Numeric operations and comparisons.
Add / Subtract / Multiply / Divide
Combine numbers (divide uses decimal division).
Negate / Absolute Value / Inverse
-x, |x|, and 1/x.
Power / Square Root / Logarithm
Exponentiation, sqrt, and log (bases as configured on the node).
Sine / Cosine / Tangent
Trigonometric functions (angles as configured).
Round / Floor / Ceil
Round to nearest integer, down, or up.
Min / Max
Smallest or largest from a list of numbers.
Less Than / Greater Than / ≤ / ≥
Pairwise numeric comparisons; boolean result.
Number in Range
True if a value lies between min and max (inclusive).
Clamp
Constrains a number to a min–max range.
Map Range
Linearly maps a value from one numeric range to another (e.g. 0–10 → 0–100).
Random Number
Random value between configured min and max.
Pi / E
Constants π and e.