Sign In

attepack

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

attepack

Shared library for packet envelopes, schema contracts, and error packet normalization across the Forest tool ecosystem

npmnpm
Version
0.1.0
Version published
Weekly downloads
25
-57.63%
Maintainers
1
Weekly downloads
 
Created
Source

Attepack

Attepack is a shared library of packet envelope primitives, schema contracts, and error packet normalization routines for the Forest tool ecosystem.

Purpose

Across the Forest ecosystem, tools emit and consume structured JSON packets (e.g. remogram.forge_facts.v1, waylane.execution_facts.v1, verigram.work_judgment.v1, atteway.audit_view_model.v1). Attepack standardizes these packet envelopes and error structures to eliminate duplicate parsing and prevent schema drift.

Modules

ModulePurpose
attepackPrimary entrypoint exporting envelope validation and error packet constructors
attepack/envelopeEnforces packet envelope validation (type, schema_version, observed_at, ok)

Install

npm install attepack

Quick Start

import { validatePacketEnvelope, buildErrorPacket } from 'attepack';

const envelope = validatePacketEnvelope({
  type: 'attepack.sample.v1',
  schema_version: 1,
  observed_at: new Date().toISOString(),
  ok: true
});

Keywords

forest

FAQs

Package last updated on 28 Jul 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