Pack F — Data + Docs

A curated set of agents with a shared permission & risk profile.

Pack permissions

No special permissions

Quickstart

  • Download the pack bundle.
  • Unzip it locally and review pack.json + each agent stub.
  • Use the Local Runner to install (demo) packs, then run agents against demo targets.

Agents in this pack

Code Formatter Agent (Dev Utility)

formats source code (.js, .json, .css, .md) using prettier. Ensures consistent style across your project files.

spec No permissions

Contract Filler (Legal Automation)

Takes a text template (e.g., NDA) with placeholders like {{NAME}} and fills them with provided data. Safe, local document generation.

spec No permissions

Cron Scheduler Agent

Registers a task in a local JSON schedule registry. This avoids cross-platform issues with system crontab. A hypothetical "Runner" would read this file.

spec No permissions

CSV Processor Agent (Data Logic)

Reads a raw CSV file, parses it, filters rows based on criteria, and exports the result as JSON. Real data transformation logic.

spec No permissions

Excel Cleaner (Data Hygiene)

Reads an Excel file, removes duplicate rows, trims whitespace from cells, and saves a "Clean" version.

spec No permissions

In-Memory SQL Engine (Database)

A tiny SQL parser that runs queries like SELECT name FROM users WHERE age > 20 directly against a JSON array. Shows how database filtering logic works.

spec No permissions

Invoice Generator Agent (Finance)

Generates a professional PDF invoice with line items, totals, and tax calculations using pdfkit.

spec No permissions

JSON Validator Agent (DevTools)

Validates a JSON file against basic syntax rules or a provided schema. Finds syntax errors (trailing commas, missing quotes) instantly.

spec No permissions

License Compliance Agent (Legal)

Scans a project's node_modules folder (or package.json) to list all software licenses used. Flags "Copyleft" licenses (GPL) that might be risky for proprietary code.

spec No permissions

Log Analyzer Agent (Analytics Logic)

Parses raw server logs (Apache/Nginx style), aggregates traffic statistics, and identifies error spikes. Uses regex capture groups and statistical sorting.

spec No permissions

Markdown Table Generator (Productivity)

Converts a JSON array or CSV-like string into a perfectly formatted Markdown table. Useful for generating reports or documentation.

spec No permissions

Markdown to HTML Agent (Content Logic)

Converts Markdown documentation into static HTML. Includes a simple regex-based parser (no heavy deps) to show logic implementation.

spec No permissions

PDF Extractor Agent (Document Intelligence)

Reads a PDF file and extracts raw text content. Essential for indexing documents, analyzing invoices, or scraping academic papers.

spec No permissions

Slide Deck Builder (Presentation)

Generates a .pptx PowerPoint presentation from a simple JSON structure. Great for automating monthly status reports.

spec No permissions

SQLite Query Agent

Executes SQL queries against a local database file (.db). Great for data seeding, verification, or ad-hoc reporting.

spec No permissions

Text Adventure Engine (Interactive Fiction)

Loads a JSON "world" definition (rooms, items, exits) and lets the user navigate it via command line. A mini-engine for Interactive Fiction.

spec No permissions

Text Diff Engine (Algorithms)

Compares two text files and outputs the line-by-line differences (Git style) using the diff algorithm. Shows exactly what changed.

spec No permissions

Tree Visualizer Agent (File Utility)

Generates a text-based tree structure of a directory. Useful for documenting project structure or debugging file placement.

spec No permissions