$ browse --type node-templates
Node Templates
// Individual building blocks for your workspace workflows
export Web Search
from "@marketplace"
// Search the public web (via Brave Search) and return a ranked list of result URLs (no snippets — deliberate, to avoid SERP-snippet hallucination). The output is a URL list; reading the content behind those URLs is a separate concern handled downstream. Pairs with: `Fetch URL as Markdown`.
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 List Artifacts
from "@marketplace"
// List all Artifact ids on a Drive item (a Drive item can have many artifacts). Feed each id into Get Artifact to read its content.
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 Get Artifact
from "@marketplace"
// Read an existing Artifact's content and metadata from Drive by its id.
export Drive Video Reader
from "@marketplace"
// Reads a video file from Drive and outputs it as a Video file.
export Drive Image Reader
from "@marketplace"
// Reads an image from Drive and outputs it as an Image file.
export Drive Folder Reader
from "@marketplace"
// Reads all documents from a Drive folder recursively. Returns document references that can be passed to a Drive Document Reader.
export Drive Document Reader
from "@marketplace"
// Reads one or more documents from Drive and returns their text content. Multiple documents are merged into a single output.
export Drive Audio Reader
from "@marketplace"
// Reads an audio file from Drive and outputs it as an Audio file.
export Drive 3D Model Loader
from "@marketplace"
// Reads a 3D file from Drive (GLB, glTF, OBJ, STL, FBX, PLY, USDZ or .blend) and outputs it as a File for 3D nodes like Retopology.
export Workspace Picker
from "@marketplace"
// Selects a workspace to reference. Outputs the workspace ID for use with Workspace Break nodes.