Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@forwardimpact/libpack

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forwardimpact/libpack

Pack distribution — tarballs, bare git repos, and skill discovery indices

latest
Source
npmnpm
Version
0.1.6
Version published
Maintainers
1
Created
Source

libpack

Pack distribution — tarballs, bare git repos, and skill discovery indices

Key Exports

  • PackBuilder — orchestrates stager + emitters per combination
  • PackStager — stages directory trees per layout (full, APM, skills)
  • TarEmitter — deterministic .tar.gz from a staged directory
  • GitEmitter — static bare git repo from a staged directory
  • DiscEmitter.well-known/skills/ discovery index

Composition

import {
  PackBuilder, PackStager,
  TarEmitter, GitEmitter, DiscEmitter,
} from "@forwardimpact/libpack";

const builder = new PackBuilder({
  stager: new PackStager(),
  emitters: {
    tar: new TarEmitter(),
    git: new GitEmitter(),
    disc: new DiscEmitter(),
  },
});

const { packs } = await builder.build({
  combinations,
  outputDir: "./dist",
  version: "1.0.0",
});

Keywords

pack

FAQs

Package last updated on 31 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts