skald

N8N community nodes for Skald knowledge base API

Package Information

Downloads: 1 weekly / 57 monthly
Latest Version: 0.1.2
Author: Skald

Documentation

n8n-nodes-skald

N8N community nodes for integrating with Skald - an AI-powered knowledge base API.

Features

This node package provides integration with the Skald API, enabling you to:

Memo Operations

  • Create: Add new memos to your knowledge base
  • Get: Retrieve memos by UUID or reference ID
  • Update: Modify existing memos
  • Delete: Remove memos from your knowledge base

Chat Operations

  • Ask: Query your AI-powered knowledge base

Installation

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-skald and confirm

Manual Installation

npm install n8n-nodes-skald

Credentials

To use this node, you need a Skald API key:

  1. Sign up at Skald
  2. Navigate to your project settings
  3. Generate an API key (starts with sk_proj_)
  4. Add the API key in n8n credentials

Usage Examples

Create a Memo

{
  "title": "Meeting Notes",
  "content": "Discussed Q4 roadmap and budget allocation",
  "tags": "meetings, planning, q4",
  "source": "Weekly Sync"
}

Query the Knowledge Base

{
  "query": "What were the main discussion points from our last meeting?",
  "system_prompt": "Answer concisely based on the available memos"
}

Resources

Development

Prerequisites

  • Node.js >= 18.10
  • pnpm >= 9.1

Setup

pnpm install
pnpm build

Local Testing

Link the package to your n8n installation:

cd ~/.n8n/nodes
pnpm link /path/to/n8n-nodes-skald

Replace /path/to/n8n-nodes-skald with the absolute path to this project directory (e.g., /Users/yourname/Developer/tmp/n8n-nodes-study).

Then restart n8n.

License

MIT

Discussion