$ 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 Odoo RPC
from "@marketplace"
// Call an Odoo 19 model method (search_read, read, search, search_count, create, write, unlink, or a custom method) via the Odoo JSON-2 API. Uses the Odoo connection from account settings, or ODOO_URL / ODOO_API_KEY (and optional ODOO_DATABASE) as workspace secrets.
export Fetch URL as Markdown
from "@marketplace"
// Fetch a batch of public URLs (1-50) and return per-URL Markdown ready for LLM consumption. Scrapes HTML and converts to Markdown via crawl4ai + Playwright + Chromium. Wire directly from `Web Search` — the urls input accepts the ranked URL array as-is. Returns parallel arrays (markdown, title, error) plus success_count and failed_count. On success each markdown item is prefixed with a Source/title header. Failure is encoded by empty markdown. Pairs with: `Web Search`.
export Lark Update Task
from "@marketplace"
// Updates an existing Lark task. Can modify title, description, due/start dates, and mark tasks as complete. Only provided fields are updated.
export Lark Get Tasklist
from "@marketplace"
// Fetches a single Lark tasklist (board) by its ID. Returns the tasklist name, owner, and members. Re-execute to refresh.
export Lark Get Task
from "@marketplace"
// Fetches a single Lark task by its ID. Returns the task summary, status, due date, and members. Re-execute to refresh.
export Lark Get Member
from "@marketplace"
// Fetches details of a single Lark user by their ID. Returns name, email, avatar, and department. Use to enrich task data with member information.
export Lark List Tasks
from "@marketplace"
// Lists tasks from a Lark tasklist (board). Supports filtering by completion status and pagination. Connect a Lark List Tasklists node to discover available boards.
export Lark List Tasklists
from "@marketplace"
// Lists all tasklists (boards) accessible in Lark Suite. Returns names, owners, and member counts. Connect the tasklist ID output to a Lark List Tasks node to retrieve tasks.
export Lark List Members
from "@marketplace"
// Lists organization members from Lark Suite. Use to discover members for task assignment. Supports filtering by department and pagination.
export Lark Create Task
from "@marketplace"
// Creates a new task in Lark Suite. Supports title, description, due/start dates, member assignment, and tasklist placement.
export HTTP Request
from "@marketplace"
// Makes HTTP requests to external APIs. Supports various methods, headers, authentication, and response parsing. Use to integrate external services and fetch data.