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

@6digit/satellite-core

v0.3.1

Published

Core satellite application with tool registry and Convex integration for 6digit AI coding assistants

Downloads

10

Readme

@6digit/satellite-core

Core satellite application with tool registry and Convex integration for 6digit AI coding assistants.

Overview

The 6digit Satellite Core provides the foundational framework for creating AI-powered coding satellites that can execute tools and commands on behalf of AI assistants. It handles persistent pairing, heartbeat monitoring, tool registration, and real-time communication with Convex backends.

Features

  • 🔗 Persistent Pairing - Satellites pair once and automatically reconnect
  • 💓 Heartbeat Monitoring - Keeps satellite sessions alive with server updates
  • 🛠️ Tool Registry - Register and execute custom tools with Zod validation
  • 📡 Real-time Communication - Convex integration for live tool invocations
  • 🆔 Project-specific Identity - Satellite identity stored per project
  • 🔧 Built-in Tools - Includes ping tool for connectivity testing

Installation

npm install @6digit/satellite-core

Quick Start

import { Satellite, pingTool } from '@6digit/satellite-core';

// Create satellite instance
const satellite = new Satellite({
  studioUrl: process.env.CONVEX_URL!,
  authToken: process.env.STUDIO_API_KEY,
  type: 'devour',
  name: 'my-coding-satellite'
});

// Register tools
const toolRegistry = satellite.getToolRegistry();
toolRegistry.registerTool(pingTool);

// Start satellite
await satellite.start();

// The satellite will display a pairing code for first-time setup
// After pairing, it automatically reconnects on subsequent starts

Creating Custom Tools

import { SatelliteTool } from '@6digit/satellite-core';
import { z } from 'zod';

export const myCustomTool: SatelliteTool = {
  name: 'myTool',
  description: 'Does something useful',
  parameters: z.object({
    input: z.string().describe('Input parameter')
  }),
  execute: async (parameters) => {
    // Your tool logic here
    return { success: true, result: parameters.input };
  }
};

// Register with satellite
toolRegistry.registerTool(myCustomTool);

Environment Variables

  • CONVEX_URL - Your Convex deployment URL
  • STUDIO_API_KEY - Authentication token for 6digit Studio
  • SATELLITE_NAME - Optional satellite name (defaults to hostname)
  • SATELLITE_CWD - Optional working directory (defaults to process.cwd())

Architecture

The satellite system consists of:

  1. Satellite Core - Main application framework (this package)
  2. Tool Registry - Manages available tools and their execution
  3. Convex Client - Handles communication with backend
  4. Persistent Identity - Project-specific satellite identification

API Reference

Satellite Class

class Satellite {
  constructor(config: SatelliteConfig)
  start(): Promise<void>
  stop(): Promise<void>
  getToolRegistry(): ToolRegistry
  sendHeartbeat(): Promise<void>
  getMetadata(): SatelliteMetadata
}

SatelliteTool Interface

interface SatelliteTool {
  name: string
  description: string
  parameters: z.ZodSchema<any>
  execute: (parameters: any) => Promise<any>
}

License

MIT

Contributing

See CONTRIBUTING.md for development guidelines.

Support