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 🙏

© 2026 – Pkg Stats / Ryan Hefner

bloxxy

v1.4.0

Published

AI-Powered Roblox Game Development CLI

Readme

Bloxxy

AI-Powered Roblox Game Development CLI

Bloxxy is a command-line tool that uses Claude AI to help you build Roblox games faster with production-quality code, built-in security linting, and intelligent project management.

Features

  • AI Code Generation: Generate Roblox Lua code from natural language descriptions
  • Multiple LLM Support: Claude, OpenAI, Mistral, GLM, and Ollama providers
  • Security First: Built-in anti-exploit patterns and security linting
  • Project Management: Structured project templates and organization
  • Interactive CLI: Beautiful, user-friendly command-line interface
  • Configuration Management: Flexible project configuration system

Installation

Global Installation (Recommended)

npm install -g bloxxy

Development Installation

git clone <repository-url>
cd bloxxy
npm install
npm link

Quick Start

Interactive Mode (Recommended)

Simply run bloxxy without any arguments to enter interactive mode:

bloxxy

This launches an interactive session where you can use commands continuously without typing "bloxxy" each time:

🧱 bloxxy> /                    # Shows interactive command menu
🧱 bloxxy> /init
🧱 bloxxy> /config set api-key sk-ant-...
🧱 bloxxy> /generate create a damage system
🧱 bloxxy> @read package.json
🧱 bloxxy> @search function src/
🧱 bloxxy> @run git status
🧱 bloxxy> /help
🧱 bloxxy> /exit

Traditional CLI Mode

  1. Initialize a new project
bloxxy init
  1. Configure your API key
bloxxy config set api-key sk-ant-...
  1. Generate code (Coming Soon)
bloxxy generate "create a damage system"

Commands

Interactive Mode Commands

When in interactive mode, use these slash commands:

  • /help - Show all available commands
  • /init - Initialize a new project
  • /status - Show project status
  • /project or /info - Show current project info
  • /config get <key> - Get configuration value
  • /config set <key> <value> - Set configuration value
  • /config list - List all configuration
  • /generate <prompt> - Generate code (coming soon)
  • /review <path> - Review code (coming soon)
  • /clear or /cls - Clear the screen
  • /exit or /quit or /q - Exit interactive mode

Note: Commands work with or without the / prefix in interactive mode!

Interactive Command Palette

Type / by itself to open an interactive command palette where you can browse and select commands using arrow keys.

@ Shortcuts (Amp-style)

For quick actions, use @ shortcuts:

  • @read <file> - Read and display file contents
  • @search <pattern> [path] - Search for text in files
  • @edit <file> - Edit a file (coming soon)
  • @run <command> - Run a shell command
  • @list [path] - List directory contents
  • @help - Show @ shortcuts help

Tip: Use Tab completion for both / commands and @ shortcuts!

Traditional CLI Commands

  • bloxxy init - Initialize a new Bloxxy project
  • bloxxy status - Show current project status
  • bloxxy config <action> <key> [value] - Manage configuration
    • bloxxy config get <key> - Get configuration value
    • bloxxy config set <key> <value> - Set configuration value
    • bloxxy config list - List all configuration values

Code Generation (Coming Soon)

  • bloxxy generate <prompt> - Generate code from description
  • bloxxy generate-ui <prompt> - Generate UI components
  • bloxxy generate-module <name> - Generate a Lua module
  • bloxxy batch <file> - Batch generate from file

Code Quality (Coming Soon)

  • bloxxy review <path> - Review code for issues
  • bloxxy lint <path> - Lint generated code

Templates (Coming Soon)

  • bloxxy templates - List available templates
  • bloxxy create-from-template <name> - Create from template

Help

  • bloxxy help - Show help menu
  • bloxxy --version - Show version

Configuration

Bloxxy uses a bloxxy.config.json file in your project root:

{
  "project_name": "My Game",
  "roblox_user_id": 123456789,
  "src_path": "./src",
  "output_path": "./output",
  "api_key": "",
  "agent_settings": {
    "model": "claude-sonnet-4-20250514",
    "temperature": 0.7,
    "max_tokens": 4000,
    "ask_clarifying_questions": true
  },
  "code_generation": {
    "include_comments": true,
    "include_error_handling": true,
    "anti_exploit_level": "high",
    "code_style": "idiomatic_lua"
  },
  "linting": {
    "enabled": true,
    "security_level": "strict",
    "performance_level": "medium"
  }
}

Project Structure

After running bloxxy init, your project will have this structure:

my-game/
├── bloxxy.config.json
├── src/
│   ├── ReplicatedStorage/
│   ├── ServerScriptService/
│   ├── StarterPlayer/
│   └── StarterGui/
├── templates/
└── .bloxxy/

Requirements

  • Node.js >= 14.0.0
  • API key for your preferred LLM provider:
    • Claude API key (get one at https://console.anthropic.com)
    • OpenAI API key (get one at https://platform.openai.com)
    • Mistral AI API key (get one at https://console.mistral.ai)
    • GLM API key (get one at https://open.bigmodel.cn)
    • Ollama (local setup required)

Development

Building from Source

npm install
chmod +x bin/bloxxy.js
npm link

Project Architecture

bloxxy/
├── bin/                 # Entry point
├── src/
│   ├── cli/             # CLI commands
│   ├── core/            # Core logic
│   ├── utils/           # Utilities
│   └── templates/       # Config templates
└── templates/           # Project templates

Roadmap

  • [x] Phase 1a: Foundation (CLI, config, project setup)
  • [x] Interactive Mode (Claude Code-style REPL)
  • [x] Red Brick Theme & Branding
  • [ ] Phase 1b: Claude API integration
  • [ ] Phase 2: Code generation
  • [ ] Phase 3: Security linting
  • [ ] Phase 4: Templates system
  • [ ] Phase 5: Advanced features

Contributing

Contributions are welcome! Please read the contributing guidelines before submitting PRs.

License

MIT

Support

  • Documentation: https://bloxxy.dev/docs (coming soon)
  • Issues: https://github.com/your-repo/bloxxy/issues
  • Discord: https://discord.gg/bloxxy (coming soon)

Built with Claude AI by Anthropic