-
SiYuan CLI/ Agent Skill
2026-06-01 23:16Hi @eloklam, would you be available for a quick conversation ?
-
n8n node - TEST
2026-05-30 02:34FYI
Siyuan discovery
https://www.linkedin.com/posts/n8n-about_n8n-notion-siyuan-activity-7464587858373210112-51e5/Migration from Notion to Siyuan
https://www.linkedin.com/posts/n8n-about_n8n-notion-siyuan-activity-7466176429802844160-4VEo/ -
n8n node - TEST
2026-05-29 02:35Yes, this is the node I'm using : https://github.com/PsycoStea/SiYuan-n8n-nodes
A lot of outstanding features ! The developer has been super reactive to update it (look at the closed section)
-
n8n node - TEST
2026-05-16 20:12Just sharing an idea here, ... not sure it's realistic
What about using the solution as a simple database via a very simplified n8n node ?
This is the idea. Enable Siyuan to be used as a simple key-value storage in a n8n context. All the structure is set already, it's just another view/organisation of what already exists.
A Notebook is a Database
A Document is a Table
A Sub-Document is a Record (and we don't need more levels)In terms of n8n node, what we need in a v0 version to test the idea :
- READ /database/table/record => you get the value (the equivalent of Document/GetId by Path + Get Content)
- WRITE /database/table/record/value => you write the $value (the equivalent of Document/Create)
In a v1, we can add options like
- CREATE TABLE => the equivalent of Document/Create (with an empty sub-content)
- LIST TABLES => the equivalent of List in Notebooks
- LIST RECORDS => the equivalent of Get Document tree
- SELECT FROM => ...
What about this idea ?