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

@remnic/connector-limitless

v9.3.637

Published

Limitless.ai Pendant connector for Remnic — pull, clean, and remember wearable transcripts

Readme

@remnic/connector-limitless

Limitless.ai Pendant connector for Remnic. Pulls your Pendant lifelogs into Remnic's wearable-transcript pipeline: cleaned, speaker-labeled, redacted, searchable day transcripts — and, under per-source trust gates, memories.

This is an à-la-carte optional companion of @remnic/core. The base install never pulls it in; install it only if you wear a Pendant:

npm install -g @remnic/connector-limitless

Remnic discovers it at runtime. No further registration is needed.

Setup

  1. Create an API key in the Limitless app: Developer settings → Create API Key.
  2. Provide the key via environment variable (preferred) or config:
    • LIMITLESS_API_KEY (or REMNIC_LIMITLESS_API_KEY)
    • or wearables.sources.limitless.apiKey in the plugin config
  3. Enable the source:
{
  "wearables": {
    "enabled": true,
    "sources": {
      "limitless": {
        "enabled": true,
        "memoryMode": "smart"    // smart (default) | off | review | auto
      }
    }
  }
}
  1. Sync:
remnic wearables check limitless     # verify the key
remnic wearables sync --source limitless --days 7
remnic wearables transcript --date 2026-06-10

What it pulls

  • Pendant lifelogs via GET /v1/lifelogs (day-windowed, cursor pagination, includeContents for the diarized segments).
  • Dialogue comes from blockquote content nodes. The wearer is pre-identified by the API (speakerIdentifier: "user"); other speakers carry Limitless display names ("Speaker 2" or saved names) and can be renamed once via remnic wearables speakers set limitless "Speaker 2" "Jane Doe" — the label applies to every stored transcript going forward.

The Limitless API is in beta and currently exposes Pendant data only (no web/desktop meetings). Rate limits (180 req/min) are respected with automatic retry honoring the API's retryAfter.

Trust gating (worth reading)

Limitless transcription quality varies, so memory creation is trust-gated. The default memoryMode: "smart" is fully automated: Remnic's LLM extraction judge plus a per-source trust prior (sourceTrust) and corroboration (agreement with another wearable's same-day transcript, or with an existing memory) combine into a trust score — high-trust facts are written active, borderline facts go to the review queue, low-trust facts are dropped. Tune with sourceTrust, autoApproveTrust, reviewTrust, and maxMemoriesPerDay, or switch to "review" (everything queued), "auto", or "off".

Full documentation: docs/wearables.md.

Programmatic use

import { createLimitlessConnector, LimitlessClient } from "@remnic/connector-limitless";

The package also exports the raw LimitlessClient (typed lifelog shapes, pagination, retry) for standalone use.

License

MIT