Znote
  Get Znote  

✨ Welcome to Znote

Getting started: How to start with Znote

 

✨ Welcome to Znote

One note, one tool. Your notes don't just store ideas — they run.

Hit Run on the block below. No setup, no account, nothing to paste.


1. Run your first tool — free, instant

This block calls a real API and drops the result straight into your note. Code execution is free and unlimited — run it all day.

const r = await fetch("https://api.github.com/users/torvalds");
const u = await r.json();
console.log(`${u.name} · ${u.public_repos} repos · ${u.followers} followers`);

▶️ That ran on your machine. Zero credits, no limits. This is the free core of Znote: API calls, SQL queries, scripts — all runnable, right inside a note.


2. Point it at your own work

Open the ++Test an API++ or ++Database Query++ template — hit a real endpoint or run SQL against your project's DB. These are what most people end up reaching for every day.

💡 API tester, local DB browser, throwaway scripts — one note each, always one Run away.


3. Now let the AI reason over the result

Code fetches the data. The AI makes sense of it. The block below calls your function as a tool, then explains what it finds — in plain English.

async function getGithubActivity(username) {
  const r = await fetch(`https://api.github.com/users/${username}/events/public`);
  return (await r.json()).slice(0, 5);
}
Look up the recent GitHub activity of "torvalds" and summarize it in plain English.

💡 Any JS function becomes an AI tool — hit an API, query a DB, push to Jira. Your code does the work, the AI orchestrates.


4. Drop in your own file

💡 Just copy a file from your explorer (meeting note, PDF, screenshot, spec) and paste it above — Znote fills in the path for you and reads it as context.

Summarize this file in 3 bullets, then suggest 2 questions worth digging into.
@file:///👉-paste-your-file-here.txt

👉 You can also hit Ctrl+H to run AI on your note's content — analyse, rephrase, or rewrite on the fly.


5. Record a meeting, get the minutes you actually send

Hit record, talk (or play any audio), and Znote writes structured minutes into your note — decisions, action items, key points. Copy them straight into Teams or Confluence and you're done.

🎤 Try it: record 30 seconds on what you're shipping this week. This is the one people come back to.


Pick your path

👨‍💻 You write code — API Tester, Database Query, reusable AI tools. Scattered scripts become runnable notes.

📋 You ship specs & projects — Specs → Jira, Gmail auto-reply, meeting recorder. Automate the repetitive thinking.

→ Open the gallery and adapt a template to your real work.


The deal

  • Plain .md files on your disk. No cloud, no account.
  • Code runs free, forever. AI is the reasoning layer on top — 20 requests to start.
  • Want unlimited AI? Plug your own key (OpenAI, Ollama, OpenRouter). One-time unlock, you pay the provider a few cents, and your key and notes never leave your machine.

👉 Make it yours: Ctrl+N for a blank note, or open the gallery.

Related recipes