Now that we have HTTP request and Local LLM AI, I want to make a “Workflow” like coze.com or BPMN but runs inside wiki, and use Action widget as node in the graph (that executes something).
Combine multiple action widget seems like a common idea, do you know any prier works?
For me, there need to be
- A new action widget that executes all action widgets in another tiddler, or tiddlers from a list widget
- so we can share Workflow using plugin
- this feels like UGC/GPTs and SubGraph
- Need to use plain wikitext to express Graph structure (or at least DAG or Tree, and use the action widget described above to refer to itself to play in a loop)
- Currently, action widgets can warp other action widget to express “sequental execution”, like A → B → C is
<$A> <$B> <$C /> </$B> </$A>
- and parallel execution C ← A → B is
<$A> <$B/> <$C/> </$A>
- this can quickly become unreadable, so need to use a visual editor for it
- user don’t know most of the action widgets (I have to read tw5-com every time), so a GUI can help search for them and autocomplete fields)
- Currently, action widgets can warp other action widget to express “sequental execution”, like A → B → C is
- Some trigger like Is there a way to trigger an action on navigation? and Alarm Daemon to trigger daily actions
- it can ask local LLM to scan for possible wikilink to add, after wiki open and idle for 5min
- or auto update some todo tiddler’s status to Archive (update its fields) based on last modified date
- And a layout to organize these Workflows, like camunda marketplace
I’m still thinking how this will look like, so I will start this in half a year, inputs are welcome!