Stéphane

hsteph
Follow
#7414 2026-05-16 01:25:26 Join
252
Home View
2h39m
Online time
  • SiYuan CLI/ Agent Skill

    2026-06-01 23:16

    Hi @eloklam, would you be available for a quick conversation ?

  • n8n node - TEST

    2026-05-29 02:35

    Yes, 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:12

    Just 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 ?