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

@topaca/connector-skills

v0.1.0

Published

Connector skill contracts and mock adapters for Nova (Mail, Calendar, Files, Messaging, Search, Browser, IDE, Media)

Readme

@topaca/connector-skills

Connector skill contracts and real/mock adapters for Nova / Edgent.

Status

Phase 4 (envelope, interfaces, mock adapters, and real adapters for all 8 skill families).

Skill Families

| Family | Actions | Protocol/Backend | |--------|---------|--------------------| | Mail | inbox.list, inbox.read, draft.create, mail.send, folder.list | IMAP + SMTP (imapflow, nodemailer) | | Calendar | events.list, event.create, event.update, event.delete, freebusy.query | CalDAV + ICS (tsdav) | | Files | file.list, file.upload, file.download, file.search, file.share | WebDAV / S3 (webdav) | | Messaging | message.send, message.receive, status.get, command.register | Telegram Gateway (grammY) | | Search | web.search, web.fetch, web.summarize | Brave / SearXNG / DuckDuckGo | | Browser | page.open, page.click, page.fill, page.extract, page.screenshot | Playwright (Interface Injection) | | IDE | file.open, file.diff, selection.get, patch.propose | Local Filesystem (fs) | | Media | audio.transcribe, transcript.fetch, language.detect | Whisper CLI / YouTube HTML |

Development

npm run build
npm run check
npm run test

Usage

import { FetchSearchConnector } from "@topaca/connector-skills";

const search = new FetchSearchConnector({
  provider: "duckduckgo",
  timeoutMs: 5000
});

// Capability check
const check = await search.check();
console.log(check.available, check.capabilities);

// Use the connector
const result = await search.webSearch({ query: "typescript record type", limit: 5 });
console.log(result.results);

Architecture

Each skill family provides:

  1. Types (src/types/<family>.ts) -- deterministic I/O schemas
  2. Interface (src/interfaces/<family>.ts) -- capability contract
  3. Mock adapter (src/adapters/<family>.mock.ts) -- in-memory test implementation
  4. Real adapter (src/adapters/<family>.<backend>.ts) -- production implementation

All adapters share a unified envelope (SkillRequest/SkillResponse) and error taxonomy.

Small-Model-First Design

Schemas are designed for reliable tool-calling with small LLMs (Gemma 4 E4B):

  • Max 8 parameters per action, no nested optionals
  • Deterministic tool contracts, no union types in params
  • Flat error taxonomy (5 error classes)
  • Minimal response payloads

Playwright Note

The PlaywrightBrowserConnector requires you to pass a PlaywrightPage instance. This prevents @topaca/connector-skills from pulling in the massive Playwright binaries as a hard dependency.