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-telenow

v0.1.0

Published

n8n community nodes for Telenow voice AI: trigger workflows on call events (call ended, analyzed, recording ready) and place outbound AI agent calls.

Readme

n8n-nodes-telenow

n8n community nodes for Telenow — voice AI agents over phone and web.

  • Telenow Trigger: start workflows on call events — call started/ended, post-call AI analysis (summary, sentiment, disposition), recording ready, transcript turns, tool invocations. Subscriptions are registered and removed automatically via Telenow's REST-hooks API when you activate/deactivate the workflow.
  • Telenow: place outbound AI agent calls (with context variables, opening line, answering-machine handling), fetch a call with its transcript, list calls, agents and phone numbers. The action node is also usable as a tool by n8n AI agents (usableAsTool).

What you can build

  • 60-second lead callback — form/CRM trigger → Place AI Agent Call with the lead's name and product passed as context variables; the agent greets them personally.
  • CRM hygiene on autopilotCall Analyzed trigger → write the AI summary, sentiment and disposition to the contact; let the disposition set the deal stage or alert a salesperson.
  • Follow-ups that send themselvesCall Analyzed action items → templated WhatsApp/email sends.
  • Mid-call lookups — a Telenow agent can call an n8n Webhook → Respond to Webhook flow during a live call and speak the result (order status, account balance, appointment slots).
  • Compliance archiveRecording Ready → upload recordings to Drive/S3.
  • Daily ops digest — schedule → Get Many Calls → aggregate → Slack/email report.

Installation

Self-hosted n8n: Settings → Community Nodes → Install and enter n8n-nodes-telenow. n8n Cloud: available after the package passes n8n's verified-community-node review.

Requires n8n 1.94+ (Node 20).

Credentials

  1. In the Telenow dashboard, go to Developers → API Keys and create a key (role developer or above to manage triggers).
  2. In n8n, create Telenow API credentials with that key. Leave the base URL at https://api.telenow.ai unless you're on a self-hosted/regional deployment.

The credential test calls GET /api/v1/me.

Trigger events

| Event | Fires | |---|---| | call.started | when a call becomes active | | call.ended | when a call finishes (opt-in recording URL + transcript in the payload) | | call.analyzed | when post-call AI analysis is ready — best event for CRM updates | | recording.ready | when the recording file is available | | transcript.ready | per utterance, during the call | | tool.invoked | when the agent calls one of its tools |

Optionally scope the trigger to a single agent.

Deliveries are signed with HMAC-SHA256 (X-VoiceAI-Signature: sha256=<hex> over the raw body) and deduplicable via X-VoiceAI-Delivery. The n8n webhook URL is unguessable; if you also want signature verification, add an n8n Code node comparing the header against your endpoint's signing secret (shown once in the Telenow dashboard for manually created endpoints).

Development

npm install
npm run build    # tsc + icon copy → dist/
npm run lint

To try it locally, link the package into your n8n custom nodes directory (~/.n8n/custom/), or use n8n-node dev.

Publishing (maintainers)

This package must live in its own public GitHub repository (TelenowAI/n8n-nodes-telenow) — n8n's verification program requires npm releases to be published via GitHub Actions with npm provenance (no local publishes) since May 2026. The included .github/workflows/release.yml does exactly that on a GitHub release; it needs an NPM_TOKEN repo secret (automation token). After the first npm publish, submit the package through the n8n Creator Portal for verification so it appears on n8n Cloud.

Rules the package already follows: no runtime dependencies, English-only UI strings, n8n-community-node-package keyword, credentials/nodes wired under the n8n attribute in package.json.

License

MIT