Wenodify

Examples

Starter shapes you can build today.

Sample shapes with preview visuals and export-ready JSON you can import into Studio.

Conversation idea map example in Wenodify
Idea Map · conversation

Guided language dialog

A root prompt with reply branches — export as conversation for a chat-style experience on Peacae.

{
  "app": "wenodify-studio",
  "mode": "idea-map",
  "version": 1,
  "graphType": "conversation",
  "nodes": [
    {
      "id": "root",
      "position": { "x": 80, "y": 180 },
      "data": {
        "title": "How do I greet someone?",
        "body": "",
        "status": "active"
      }
    },
    {
      "id": "option-a",
      "position": { "x": 430, "y": 80 },
      "data": {
        "title": "Formal greeting",
        "body": "Use the respectful form taught in lesson 1.",
        "status": "active"
      }
    }
  ],
  "edges": [
    { "id": "root-option-a", "source": "root", "target": "option-a" }
  ]
}
Open in Studio
Lesson steps idea map example in Wenodify
Idea Map · steps

Procedure in ordered steps

Sibling order defines sequence. Each step label is the title; body holds instructions.

{
  "graphType": "steps",
  "nodes": [
    { "id": "1", "data": { "title": "Gather materials", "body": "..." } },
    { "id": "2", "data": { "title": "Prepare the surface", "body": "..." } }
  ]
}
Open in Studio
Two-generation family tree example in Wenodify
Family Tree

Two-generation family record

Partners, children, and optional dates. Export JSON, SQL, or PNG when the tree is ready.

{
  "app": "wenodify-studio",
  "mode": "family-tree",
  "version": 1,
  "nodes": [
    {
      "id": "person-1",
      "label": "Ada Lovelace",
      "birthYear": "1815",
      "deathYear": "1852"
    },
    {
      "id": "person-2",
      "label": "Lord Byron",
      "birthYear": "1788",
      "deathYear": "1824"
    }
  ],
  "partnerships": [
    { "id": "pair-1", "members": ["person-1", "person-2"] }
  ]
}
Open in Studio
Topic explorer idea map example in Wenodify
Idea Map · explorer

Browse-by-topic tree

Wide branching for cultural topics — entries in labels, summaries in body text.

{
  "graphType": "explorer",
  "nodes": [
    { "id": "root", "data": { "title": "Traditional foods", "body": "Overview" } },
    { "id": "child", "data": { "title": "Harvest dishes", "body": "Seasonal recipes" } }
  ]
}
Open in Studio

Using these samples

Copy JSON into a .jsonfile and import it from Studio's toolbar. Full downloadable templates will live here once we publish curated starter files. Until then, see docs for export structure and graph types.