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/narupa-plugin

v1.2.0

Published

Multi-agent orchestration for VR-based drug discovery using Narupa integration with HoloScript

Downloads

262

Readme

HoloScript Scientific Plugin - Narupa Integration

Multi-agent orchestration for VR-based drug discovery using Narupa molecular dynamics.

Status: Week 1 - Infrastructure Setup

Current Week: Week 1 (Feb 12-18, 2026) Focus: Infrastructure setup and API exploration Progress: ✅ Repository created, project structure initialized

Overview

This plugin bridges HoloScript with Narupa, enabling VR-based interactive molecular dynamics simulations. Scientists can visualize and manipulate proteins, run drug docking simulations, and explore molecular interactions in immersive 3D environments.

Key Features (Planned)

  • VR Molecular Visualization: View proteins and molecules in 3D VR
  • Interactive Docking: Manually guide ligands to binding sites
  • Parallel Simulations: Run multiple docking simulations simultaneously
  • Real-time MD: Live molecular dynamics with force feedback
  • Multi-agent Orchestration: Coordinate multiple Narupa servers

Project Structure

holoscript-scientific-plugin/
├── src/                          # TypeScript source
│   ├── narupa-process-manager.ts # Python process lifecycle
│   ├── narupa-orchestrator.ts    # Multi-agent coordination
│   └── types.ts                  # TypeScript definitions
├── python/                       # Python bridge
│   └── holoscript_narupa_bridge.py
├── docs/                         # Documentation
│   ├── api-reference.md          # API documentation
│   ├── architecture-design.md    # Architecture decisions
│   └── trait-specifications.md   # HoloScript trait specs
├── examples/                     # Example .holo files
│   ├── simple-narupa.holo        # Basic protein viewer
│   ├── parallel-docking.holo     # 4x parallel docking
│   └── hitl-docking.holo         # Human-in-the-loop
└── tests/                        # Test suite

Installation

Prerequisites

  • Node.js 18+
  • Python 3.8+
  • Unity 2021.3+ (for VR client)
  • VR Headset (optional, can test in desktop mode)

Quick Start (Week 2+)

# Clone repository
git clone https://github.com/brianonbased-dev/holoscript-scientific-plugin
cd holoscript-scientific-plugin

# Install Node dependencies
npm install

# Install Python dependencies
pip install nanover-server  # Week 1 - installation testing phase

# Build TypeScript
npm run build

Usage (Week 3+)

Simple Protein Visualization

// examples/simple-narupa.holo
object "Protein Viewer" @narupa_integration {
  source: "1ABC.pdb",
  server_port: 38801,
  position: [0, 1.5, -2]
}

Interactive Docking

// examples/hitl-docking.holo
object "Target Protein" @narupa_integration @interactive_forces {
  source: "target_protein.pdb",
  server_port: 38801,
  force_enabled: true
}

object "Drug Ligand" @molecular_dynamics @grabbable {
  protein: "target_protein.pdb",
  ligand: "drug_candidate.mol",
  user_controlled: true
}

Development Roadmap

Week 1 (Feb 12-18) - ✅ IN PROGRESS

  • [x] Repository setup
  • [x] Project structure
  • [x] npm initialization
  • [ ] Narupa server installation testing
  • [ ] API documentation started
  • [ ] Architecture design

Week 2 (Feb 19-25)

  • [ ] Python bridge implementation
  • [ ] Process manager (TypeScript)
  • [ ] First integration test

Week 3 (Feb 26 - Mar 4)

  • [ ] Basic trait implementation (@narupa_integration)
  • [ ] Unity client integration
  • [ ] Simple VR test

Week 4 (Mar 5-11)

  • [ ] Advanced traits (@molecular_dynamics, @interactive_forces)
  • [ ] Multi-agent orchestration

Week 5-8

  • [ ] Parallel docking
  • [ ] Performance optimization
  • [ ] Production deployment

Documentation

Contributing

This project is in active development (Week 1). Contributions welcome after initial implementation is complete.

License

MIT

Acknowledgments

  • Narupa - Interactive molecular dynamics framework
  • HoloScript - Spatial computing language
  • Research supported by University of Bristol Interactive Realities Lab

Week 1 Status: Infrastructure complete ✅ | API testing in progress 🔄