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

optivise

v5.2.4

Published

Optivise - The Ultimate Optimizely Development Assistant with AI-powered features, zero-config setup, and comprehensive development support

Readme

Optivise

This Package is Under Development. Please allow me some more days. Will bring something awesome soon.

Optivise is an intelligent MCP (Model Context Protocol) tool that enhances AI-assisted Optimizely development. It analyzes developer prompts for Optimizely relevance and provides curated, contextual information to LLMs.

Features (Current)

  • 5 Specialized MCP Tools:

    • optidev_context_analyzer: Enhanced context analysis with product detection
    • optidev_implementation_guide: Jira ticket analysis and implementation planning
    • optidev_debug_helper: Intelligent bug analysis and resolution
    • optidev_code_analyzer: Real-time code analysis and optimization
    • optidev_project_helper: Project setup, migration, and configuration assistance
  • AI-Powered Capabilities (Optional):

    • OpenAI integration for embeddings and semantic search (optional)
    • ChromaDB vector database for documentation search (optional)
    • Deterministic relevance scoring with evidence and rules
    • Graceful fallbacks when AI features unavailable
  • Observability & Safety:

    • Structured JSON logs on stderr with correlation IDs; MCP stdout clean
    • Log redaction, block sanitization (scripts/iframes/JS/data URIs), content size ceilings
    • Diagnostics with per-stage timings and relevance breakdown

Installation

# Install Optivise globally
npm install -g optivise

# Verify installation
optivise version

IDE Configuration

For Cursor IDE:

Create or update .cursor/mcp.json in your project:

{
  "mcpServers": {
    "optivise": {
      "command": "npx",
      "args": ["optivise-mcp"]
    }
  }
}

For VS Code:

Add to your VS Code settings:

{
  "mcp.servers": [
    {
      "name": "optivise",
      "command": "npx",
      "args": ["optivise-mcp"]
    }
  ]
}

Usage

@optidev_context_analyzer "How do I implement a custom handler chain in Optimizely Commerce?"

AI Enhancement (Optional)

To enable AI-powered features:

{
  "mcpServers": {
    "optivise": {
      "command": "npx",
      "args": ["optivise-mcp"],
      "env": {
        "OPENAI_API_KEY": "your-api-key-here"
      }
    }
  }
}

CLI Utilities

# Propose a consolidated .cursorrules from discovered rules (prints JSON with diff)
optivise-rules propose /path/to/project

# Write the proposed .cursorrules to the project root
optivise-rules propose /path/to/project --write

# Print version and service diagnostics (AI/Chroma/doc-sync availability)
optivise-diag

# Query local HTTP server health or readiness
optivise-health                   # defaults to http://localhost:3007/health
optivise-health --ready           # queries http://localhost:3007/ready
optivise-health --url=http://host:port/ready

Environment Variables

  • LOG_LEVEL: error|warn|info|debug (default: info)
  • OPTIVISE_MODE: mcp|server (default: mcp)
  • MAX_BLOCK_CHARS: max characters per context block (default: 5000)
  • MAX_TOTAL_TOKENS: hard safety ceiling for context tokens (default: 4000)
  • OPENAI_API_KEY: optional, enables AI-powered features
  • CORS_ALLOW_ORIGINS: comma-separated allowed origins for HTTP server (default: *)
  • REQUEST_TIMEOUT_MS: per-request timeout for /analyze (default: 15000)
  • AUDIT_API_KEY: enables protected GET /audit endpoint when OPTIVISE_AUDIT=true
  • OPTIVISE_AUDIT: set to 'true' to enable in-memory audit trail (requires AUDIT_API_KEY for access)

Troubleshooting

MCP Server Not Connecting

  • Verify Node.js version: Ensure Node.js >= 18.0.0
  • Restart IDE after configuration changes
  • Check logs: Set LOG_LEVEL=debug for detailed logs

Tools Not Available

  • Verify configuration: Ensure optivise-mcp is correctly referenced
  • Test connection: npx @modelcontextprotocol/inspector npx optivise-mcp

Windows Path Issues

Use forward slashes or double backslashes in JSON:

"args": ["optivise-mcp"]

Render Deployment (Example)

See render.yaml for a minimal configuration:

services:
  - type: web
    name: optivise
    env: node
    plan: free
    buildCommand: npm install && npm run build
    startCommand: npm start
    envVars:
      - key: NODE_ENV
        value: production
      - key: OPTIVISE_MODE
        value: server
      - key: OPTIDEV_DEBUG
        value: false
      - key: CORS_ALLOW_ORIGINS
        value: https://yourdomain.com
    healthCheckPath: /health

After deployment:

  • GET /health for liveness
  • GET /ready for feature matrix + circuit states (OpenAI/Chroma)
  • Use optivise-health locally to check http://localhost:3007/health

Audit Trail (Opt-in)

  • Enable: set OPTIVISE_AUDIT=true and set a strong AUDIT_API_KEY.
  • Fetch recent events:
curl -H "Authorization: Bearer $AUDIT_API_KEY" http://localhost:3007/audit | jq

Security & Privacy (Current)

  • Log redaction (API keys/tokens/passwords), correlation IDs, MCP stdout kept clean
  • Output sanitization and size bounds in formatter; relevance-aware truncation
  • Opt-in in-memory audit trail for tool invocations (protected endpoint)
  • Circuit breakers and backoff for AI/Chroma integrations; CI npm audit + CycloneDX SBOM

Planned (not yet implemented): stronger PII detection, allow-listed HTML sanitization, signed releases, and comprehensive policy scans (e.g., OSV).

Use Cases & Examples

For Individual Developers

@optidev_implementation_guide "Implement customer loyalty points system"
@optidev_debug_helper "Cart total calculation incorrect after discount applied"
@optidev_code_analyzer "Review this handler for performance optimization"

For Development Teams

@optidev_project_helper "Setup new Commerce + CMS integrated project"
@optidev_context_analyzer "Best practices for integrating Commerce with CMS"

Data Flow Diagram

---
config:
  theme: neo-dark
---
flowchart TD
    User[User/Developer] -->|Prompt| IDE[IDE/CLI Interface]
    IDE -->|Request| MCP[MCP Server]
    MCP -->|Initialize| CAE[Context Analysis Engine]
    MCP -->|Initialize| Tools[Specialized Tools]
    MCP -->|Initialize| AI[AI Services]
    
    subgraph "Context Analysis Flow"
        CAE -->|Analyze Prompt| PA[Prompt Analyzer]
        PA -->|Relevance Score & Intent| CAE
        
        CAE -->|Detect Products| PDS[Product Detection Service]
        PDS -->|Product Context| CAE
        
        CAE -->|Analyze Rules| RIS[Rule Intelligence Service]
        RIS -->|Rule Analysis| CAE
        
        CAE -->|Fetch Documentation| DS[Documentation Service]
        
        DS -->|Basic Docs| DOC[Documentation Sources]
        DS -->|Vector Search| CDB[ChromaDB Service]
        CDB -->|AI-Enhanced Search| OAI[OpenAI Client]
        OAI -->|Embeddings| CDB
        
        DS -->|Documentation Content| CAE
    end
    
    subgraph "AI Services"
        AKDS[API Key Detector] -->|Detect Keys| OAI
        AKDS -->|Detect Keys| CDB
        DSS[Documentation Sync Service] -->|Sync| CDB
    end
    
    subgraph "Specialized Tools"
        Tools -->|Implementation Guide| IGT[Implementation Guide Tool]
        Tools -->|Debug Helper| DHT[Debug Helper Tool]
        Tools -->|Code Analyzer| CAT[Code Analyzer Tool]
        Tools -->|Project Helper| PHT[Project Helper Tool]
        
        IGT & DHT & CAT & PHT -->|Use| CAE
    end
    
    CAE -->|Curated Context| MCP
    MCP -->|Response| IDE
    IDE -->|Enhanced Response| User

Documentation & Support

Contact