npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-adacode

v0.1.0

Published

n8n community node untuk adaCODE — pakai satu API key adaCODE untuk semua model (Claude, GPT, GLM, Qwen, MiniMax, adaCODE house) di workflow n8n, termasuk sebagai Chat Model untuk AI Agent.

Downloads

161

Readme

n8n-nodes-adacode

Community node n8n untuk adaCODE — satu API key adaCODE untuk semua model di katalog Anda (adaCODE 2.0, Claude, GPT, GLM, Qwen, MiniMax, Gemini, DeepSeek, Kimi …), dipakai langsung di dalam workflow n8n.

n8n adalah platform otomatisasi workflow fair-code.

Isi paket

| Node | Fungsi | |---|---| | adaCODE | Node biasa: kirim pesan ke sebuah model (Chat → Message a Model) atau ambil daftar model (Model → Get Many) | | adaCODE Chat Model | Sub-node AI: dipasang ke konektor Chat Model milik AI Agent, Basic LLM Chain, Summarization Chain, dsb. |

Dropdown model diisi live dari katalog API key Anda, jadi model baru langsung muncul tanpa update paket. Model yang termasuk kuota plan diberi tanda (coding plan) dan diurutkan paling atas; sisanya ditagih tarif pasar dari saldo Token Recharge.

Instalasi

n8n Cloud / n8n self-host (lewat UI)

  1. Buka Settings → Community Nodes → Install
  2. Isi npm package name: n8n-nodes-adacode
  3. Centang persetujuan risiko, klik Install

Self-host (manual)

cd ~/.n8n/nodes          # buat folder ini bila belum ada
npm install n8n-nodes-adacode
# lalu restart n8n

Docker

docker exec -u node -it n8n npm install n8n-nodes-adacode -g
docker restart n8n

Kredensial

  1. Ambil API key di https://adacode.ai/api-keys (formatnya sk-adacode-…)
  2. Di n8n: Credentials → New → adaCODE API
  3. Isi API Key. Base URL biarkan https://api.adacode.ai kecuali Anda memakai gateway adaCODE self-host — tulis tanpa akhiran /v1.
  4. Klik Test — n8n akan memanggil GET /v1/models dengan key tersebut.

Satu kredensial dipakai bersama oleh kedua node.

Cara pakai

Sebagai node biasa

adaCODE → Chat → Message a Model

  • Model — pilih dari dropdown (atau isi ID model lewat expression)
  • InputPrompt (satu pesan + system message opsional) atau Messages (susun sendiri urutan system/user/assistant)
  • Simplify (default aktif) — keluaran diringkas jadi:
{
  "content": "Ibu kota Indonesia adalah Jakarta.",
  "model": "adacode-2.0",
  "finishReason": "stop",
  "usage": { "prompt_tokens": 477, "completion_tokens": 53, "total_tokens": 530 },
  "id": "393e467ed284480882da6efa99dda710"
}

Matikan Simplify untuk mendapat respons API apa adanya.

Options yang tersedia: Temperature, Max Tokens, Top P, Frequency/Presence Penalty, Seed, Stop Sequences, Timeout, Output Content as JSON (memaksa response_format: json_object lalu mem-parse hasilnya), dan Custom Body Fields untuk field yang belum punya kolom sendiri.

Sebagai otak AI Agent

Tambahkan node AI Agent, klik konektor Chat Model di bawahnya, pilih adaCODE Chat Model, lalu tentukan modelnya. Tool calling dan streaming didukung, jadi Agent + Tools berjalan seperti dengan provider bawaan n8n.

Coding Plan vs tarif pasar

Katalog tiap API key ditentukan server:

  • Model bertanda (coding plan) dibayar dari kuota plan Anda.
  • Model lain ditagih tarif pasar dari saldo Token Recharge. Kalau saldonya kosong, permintaan ditolak 402 dan node menampilkan pesan aslinya lengkap dengan tautan pengisian saldo — bukan error generik n8n.

Kompatibilitas

  • n8n 1.x dan 2.x (diuji dengan n8n-workflow 2.16)
  • Node.js ≥ 20.15

Pengembangan

git clone https://github.com/angga-ada-AI/n8n-nodes-adacode.git
cd n8n-nodes-adacode
npm install
npm run build
npm run lint

# coba di n8n lokal
mkdir -p ~/.n8n/nodes && cd ~/.n8n/nodes && npm install /path/ke/n8n-nodes-adacode

Sumber

Lisensi

MIT