A Node-RED node for factory agent systems that collects and manages state information from multiple MQTT topics.
The factory-agent-states
node is designed to work within factory automation systems using agents. It provides a way to:
- Cache incoming messages from different MQTT topics
- Store system prompts and environment descriptions for agents
- Output collected states when triggered by a specific signal
- Clear the cache after output for the next cycle
You can install this node directly from the Node-RED palette manager, or via npm:
npm install node-red-contrib-factory-agent-states
- Caching system: Stores the latest message from each topic until triggered
- Configurable fields: Allows setting System Prompt and Environment Description
- Initial delay: Automatically sends the first state after a configurable delay upon receiving the first message
-
Trigger mechanism: After the first automatic trigger, constantly monitors the flow context variable
agentstate
and outputs cached states when it equals "recieved" - Automatic cache clearing: Clears the topic cache after sending out the state
The node provides a simple configuration interface with the following options:
- Name: Optional name for the node instance
-
System Prompt: Text to be stored in
msg.sysPrompt
-
Environment Description: Text to be stored in
msg.envPrompt
The node accepts messages with payloads that will be cached based on their topics.
The node monitors a flow context variable:
- agentstate: When this variable is set to "recieved", the node will output all cached states and then reset the variable
When triggered, the node will output a message containing:
-
msg.sysPrompt
: The System Prompt configured in the node -
msg.envPrompt
: The Environment Description configured in the node -
msg.state
: An object containing all cached topic payloads, with topics as keys
- Add MQTT input nodes for various factory sensors/data sources
- Connect these to the
factory-agent-states
node - Configure the node with appropriate prompts and descriptions
- Set up a trigger mechanism (e.g., a function node that sets the flow context variable:
flow.set("agentstate", "recieved")
) - Connect the output to your agent processing node
[
{
"id": "mqtt1",
"type": "mqtt in",
"topic": "factory/temperature",
"wires": [["factory-states"]]
},
{
"id": "mqtt2",
"type": "mqtt in",
"topic": "factory/pressure",
"wires": [["factory-states"]]
},
{
"id": "factory-states",
"type": "factory-agent-states",
"name": "Factory States",
"systemPrompt": "You are a factory optimization agent",
"environmentDescription": "Factory with temperature and pressure sensors",
"wires": [["agent-processor"]]
},
{
"id": "trigger",
"type": "function",
"payload": "",
"payloadType": "str",
"repeat": "300",
"func": "flow.set('agentstate', 'recieved');\nreturn msg;",
"wires": [["factory-states"]]
}
]
MIT