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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@plastichub/osr-ai-tools

v0.1.7

Published

CLI and library for LLM tools

Downloads

378

Readme

LLM Tools CLI

Command-line interface and library for LLM tools providing filesystem, npm, git, terminal, interactive user, and screen capture operations.

Setup

  1. Install dependencies:
pnpm install
  1. Build the project:
pnpm run build
  1. Configure environment: Either set environment variable:
export OPENAI_API_KEY=your-key-here

Or create a configuration file (e.g. .env.dev.json):

{
  "openai": {
    "key": "your-key-here"
  }
}

Then use with --env_key parameter:

pnpm start invoke --env_key dev

Available Commands

Generate TypeScript Types

Generates TypeScript interfaces from Zod schemas:

pnpm run types

List Available Tools

Show all available tools and their descriptions:

pnpm start list

# Write tools list to file
pnpm start list --output ./tools.json

Invoke Tool Functions

Invoke specific tool functions:

pnpm start invoke \
  --tools fs \
  --function list_files \
  --target ./src \
  --params '{"directory":".","pattern":"**/*.ts"}'

Available Tools

Filesystem Tools (fs)

  • list_files: List all files in a directory with optional glob pattern
  • remove_file: Remove a file at given path
  • rename_file: Rename or move a file or directory
  • modify_project_files: Modify existing project files with given content
  • create_project_structure: Create project structure with files and folders
  • create_file: Creates a file with given path and content
  • read_file: Read content of a file at given path

NPM Tools (npm)

  • build_project: Build project using pnpm build command
  • run_npm: Run an npm/pnpm command with optional arguments
  • install_dependency: Install project dependencies using pnpm

Git Tools (git)

  • init_repository: Initialize a new git repository if it doesn't exist
  • commit_files_git: Commit and push files to git repository with specified message

Terminal Tools (terminal)

  • execute_command: Execute terminal commands with options:
    • Run in background (non-blocking)
    • Open in new window
    • Run detached from parent process
    • Specify working directory

Interactive Tools (interact)

  • ask_question: Ask user a simple question and get response
  • choose_option: Ask user to choose from multiple options:
    • Single selection mode
    • Multiple selection mode (checkbox)

User Tools (user)

  • capture_screen: Capture a screenshot of the entire screen or a specific region

Project Structure

src/
  ├── commands/          # Command implementations
  │   ├── index.ts       # Command registry
  │   ├── invoke.ts      # Invoke command
  │   ├── list.ts        # List command
  │   └── types.ts       # Types command
  ├── lib/               # Core functionality
  │   └── tools/         # Tool implementations
  │       ├── fs.ts      # Filesystem tools
  │       ├── git.ts     # Git operations
  │       ├── npm.ts     # NPM commands
  │       ├── interact.ts # Interactive tools
  │       ├── user.ts    # User tools (screenshots)
  │       └── terminal.ts # Terminal operations
  ├── constants.ts       # Logger name constant
  ├── index.ts          # Logger setup
  ├── main.ts           # CLI entry point
  ├── tools.ts          # Tools registry
  ├── zod_schemas.ts    # Zod schemas
  └── zod_types.ts      # Generated TypeScript interfaces