Skill119 repo starsupdated 2d ago
archiver
The archiver skill provides TypeScript functions for creating ZIP and TAR archives from files, directories, buffers, and streams using the archiver npm package. Use this skill when you need to bundle multiple files or entire directory structures into compressed archives, compress in-memory content without temporary files, or build archive-heavy workflows with streaming support for handling large datasets efficiently.
Install in Claude Code
Copygit clone --depth 1 https://github.com/TerminalSkills/skills /tmp/archiver && cp -r /tmp/archiver/skills/archiver ~/.claude/skills/archiverThen start a new Claude Code session; the skill loads automatically.
Definition
SKILL.md
# Archiver
Create ZIP and TAR archives from files, directories, and streams. Streaming architecture for large archives.
## Setup
```bash
# Install archiver for creating archives.
npm install archiver
npm install -D @types/archiver
```
## Creating a ZIP Archive
```typescript
// src/archive/zip.ts — Bundle multiple files into a ZIP archive.
import archiver from "archiver";
import fs from "fs";
export async function createZip(files: string[], outputPath: string): Promise<void> {
const output = fs.createWriteStream(outputPath);
const archive = archiver("zip", { zlib: { level: 9 } });
return new Promise((resolve, reject) => {
output.on("close", () => {
console.log(`Archive created: ${archive.pointer()} bytes`);
resolve();
});
archive.on("error", reject);
archive.pipe(output);
for (const file of files) {
archive.file(file, { name: file.split("/").pop()! });
}
archive.finalize();
});
}
```
## Archiving Directories
```typescript
// src/archive/directory.ts — Recursively add an entire directory to a ZIP.
import archiver from "archiver";
import fs from "fs";
export async function zipDirectory(sourceDir: string, outputPath: string): Promise<void> {
const output = fs.createWriteStream(outputPath);
const archive = archiver("zip", { zlib: { level: 6 } });
return new Promise((resolve, reject) => {
output.on("close", resolve);
archive.on("error", reject);
archive.pipe(output);
// Add entire directory, preserving structure
archive.directory(sourceDir, false);
// Or nest under a folder name inside the archive
// archive.directory(sourceDir, "my-project");
archive.finalize();
});
}
```
## Adding Buffers and Streams
```typescript
// src/archive/buffers.ts — Add in-memory content (buffers, strings) to archives
// without writing temporary files.
import archiver from "archiver";
import fs from "fs";
export async function createArchiveFromData(
entries: { name: string; content: string | Buffer }[],
outputPath: string
): Promise<void> {
const output = fs.createWriteStream(outputPath);
const archive = archiver("zip", { zlib: { level: 6 } });
return new Promise((resolve, reject) => {
output.on("close", resolve);
archive.on("error", reject);
archive.pipe(output);
for (const entry of entries) {
archive.append(entry.content, { name: entry.name });
}
archive.finalize();
});
}
// Example: bundle generated reports
// await createArchiveFromData([
// { name: "report.csv", content: csvString },
// { name: "report.json", content: JSON.stringify(data) },
// { name: "README.txt", content: "Generated reports bundle" },
// ], "reports.zip");
```
## TAR Archives
```typescript
// src/archive/tar.ts — Create gzipped TAR archives for deployment or backup.
import archiver from "archiver";
import fs from "fs";
export async function createTarGz(sourceDir: string, outputPath: string): Promise<void> {
const output = fs.createWriteStream(outputPath);
const archive = archiver("tar", { gzip: true, gzipOptions: { level: 9 } });
return new Promise((resolve, reject) => {
output.on("close", resolve);
archive.on("error", reject);
archive.pipe(output);
archive.directory(sourceDir, false);
archive.finalize();
});
}
```
## Progress Tracking
```typescript
// src/archive/progress.ts — Track archive creation progress for large bundles.
import archiver from "archiver";
import fs from "fs";
export async function createZipWithProgress(
sourceDir: string,
outputPath: string,
onProgress: (percent: number) => void
): Promise<void> {
const output = fs.createWriteStream(outputPath);
const archive = archiver("zip", { zlib: { level: 6 } });
return new Promise((resolve, reject) => {
output.on("close", resolve);
archive.on("error", reject);
archive.on("progress", (progress) => {
const percent = (progress.entries.processed / progress.entries.total) * 100;
onProgress(Math.round(percent));
});
archive.pipe(output);
archive.directory(sourceDir, false);
archive.finalize();
});
}
```
## Streaming to HTTP Response
```typescript
// src/archive/api.ts — Stream a ZIP archive directly to an Express response
// without writing to disk.
import archiver from "archiver";
import type { Response } from "express";
export function streamZipResponse(
res: Response,
files: { name: string; content: string | Buffer }[]
) {
res.setHeader("Content-Type", "application/zip");
res.setHeader("Content-Disposition", "attachment; filename=export.zip");
const archive = archiver("zip", { zlib: { level: 6 } });
archive.pipe(res);
for (const file of files) {
archive.append(file.content, { name: file.name });
}
archive.finalize();
}
```More from this repository
PULL_REQUEST_TEMPLATESkill
3dsmax-renderingSkill
>-
3dsmax-scriptingSkill
>-
3proxySkill
>-
a2a-protocolSkill
>-
ab-test-setupSkill
When the user wants to plan, design, or implement an A/B test or experiment. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," or "hypothesis." For tracking implementation, see analytics-tracking.
ablySkill
>-
accessibility-auditorSkill
>-