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

holoscript-vscode

v4.0.1

Published

HoloScript v6 language support — syntax, traits, preview, debug, AI agent API

Downloads

457

Readme

HoloScript Enhanced

Language support for HoloScript+ - a declarative language for spatial computing and XR development.

Features

  • Syntax Highlighting for .holo, .hs, and .hsplus files
  • 3,300+ VR Traits - Built-in traits for XR interactions across 114 categories
  • IntelliSense - Autocomplete for traits, objects, and properties
  • Hover Documentation - Trait and keyword documentation on hover
  • Semantic Tokens - Rich syntax coloring (15 token types, 6 modifiers)
  • LSP Integration - Full Language Server Protocol support via @holoscript/lsp
  • 3D Preview - Live preview panel for .holo files
  • AI Agent API - 10+ commands for AI-assisted scene generation
  • MCP Orchestrator - Integration with MCP mesh orchestrator
  • Debugger - Built-in debug adapter for HoloScript
  • Smart Asset Editor - Custom editor for .hsa files
  • Getting Started Walkthrough - 6-step onboarding for new users

Supported Syntax

Primitives

orb, sphere, cube, box, cylinder, cone, plane, mesh, avatar, light, camera, scene, group, text, panel, button, slider, zone

VR Traits (3,300+ across 114 categories, highlights below)

Interaction: @grabbable, @throwable, @hoverable, @clickable, @draggable, @pointable, @collidable, @physics, @gravity, @trigger, @teleport

Visual: @glowing, @transparent, @spinning, @floating, @billboard, @pulse, @animated, @look_at, @outline, @particle_system

AI/Behavior: @behavior_tree, @emotion, @goal_oriented, @perception, @memory

Physics: @cloth, @soft_body, @fluid, @buoyancy, @rope, @wind, @joint, @rigidbody, @destruction

Extended: @scalable, @rotatable, @stackable, @snappable, @breakable, @character, @patrol, @networked, @anchor, @spatial_audio, @reverb_zone

Advanced: @voice_proximity, @ui_panel, @weather, @day_night, @lod, @hand_tracking, @haptic, @portal, @mirror, @recordable

Control Flow

@if, @else, @for, @forEach, @while

Example

composition "Interactive Demo" {
  object "InteractiveBox" @grabbable @throwable @hoverable {
    geometry: "cube"
    position: [0, 1, -2]
    size: 0.5
    color: "#3498db"
  }

  object "NPC" @character @perception @emotion {
    geometry: "mesh"
    position: [2, 0, -3]
  }
}

AI Agent Commands

The extension provides AI agent commands accessible via the command palette:

  • holoscript.agent.createFile - Generate a new HoloScript file
  • holoscript.agent.generateObject - Generate an object from description
  • holoscript.agent.analyzeScene - Analyze scene structure
  • holoscript.agent.insertCode - Insert code at cursor
  • holoscript.agent.addTrait - Add traits to selected object
  • holoscript.agent.listTraits - List available traits
  • holoscript.agent.validate - Validate current file
  • holoscript.agent.status - Check extension status

Keyboard Shortcuts

| Shortcut | Action | | -------------- | -------------------- | | Ctrl+Shift+V | Open Preview to Side | | Ctrl+K V | Open Preview |

Installation

  1. Open VS Code
  2. Go to Extensions (Ctrl+Shift+X)
  3. Search for "HoloScript Enhanced"
  4. Click Install

Links

License

MIT