$ browse --type node-templates
Node Templates
// Individual building blocks for your workspace workflows
export Ontology Traverse
from "@marketplace"
// Walk typed links out of, into, or both directions from an ontology object and return the connected sub-graph.
export Ontology Set Property
from "@marketplace"
// Patch (merge) the properties of an existing ontology object or link and return its id.
export Ontology Search
from "@marketplace"
// Search the organization ontology (knowledge graph) for matching objects plus a match count. Supports entity mode (search by NAME), schema mode (search by RELATIONSHIP/THEME via matching types), and hybrid.
export Ontology From Documents
from "@marketplace"
// Bridge documents onto the knowledge graph: given document ids (e.g. semantic chunk hits), return the ontology objects appearing in them, ranked by appearance frequency and connectivity, optionally with the links among them. Wire from KB Semantic Search's documentIds output.
export Ontology Entity 360
from "@marketplace"
// Fetches the full 360 profile of one ontology entity - its links grouped by type WITH counts (e.g. 'employed_by (incoming): 18'), plus appearance counts - and emits a synthesizer-ready text summary. Wire objectId from Merge Ranked Lists' topId so the top fused entity's relationship profile reaches the answer. This is the node that answers COUNT and relationship questions from the graph.
export Ontology Delete
from "@marketplace"
// Soft-delete (recoverable server-side) an ontology object or link. Returns its id and the delete timestamp.
export Ontology Create Object
from "@marketplace"
// Create (or idempotently upsert by identity key) an object in the organization ontology and return its id for chaining into Ontology Create Link.
export Ontology Create Link
from "@marketplace"
// Link two ontology objects with a typed edge. Returns the link id and whether the server refused to downgrade an existing higher-confidence link.
export Ontology Aggregate
from "@marketplace"
// Count ontology objects, grouped by object type. Returns EXACT totals over everything the caller may see — a real census, not a sample or a ranked page. Leave every input empty for a whole-graph breakdown, or set a type for a single count.
export Merge Ranked Lists
from "@marketplace"
// Fuse two ranked lists of records into one with Reciprocal Rank Fusion (RRF): items surfacing in both lists rank highest. Generic and pure (no network) — wire e.g. Ontology Search's results into listA and Ontology From Documents' entities into listB.
export KB Semantic Search
from "@marketplace"
// Semantic (vector) search over the knowledge base's document chunks. Returns the ranked chunks, synthesizer-ready chunk texts, and the deduped document ids. Wire chunkTexts into Knowledge Synthesizer's context and documentIds into Ontology From Documents.
export Text Merge
from "@marketplace"
// Merges two text inputs into a single output. Supports configurable separators, templates, and formatting options.