Development in Progress

Search your code,
not your folders.

Stop hunting for that one RemoteEvent handler. Just ask nebulops where it is.

The intelligent context layer for Roblox Studio. Find scripts, trace logic, and understand complex systems in seconds.

Architecture

Built for Scale & Security

01. Ingestion Engine

Luau-optimized Recursive Chunking. Automatically scrubs PII and hardcoded secrets via Regex before indexing to Pinecone.

02. AI Reasoning

Powered by Claude 3.5 Haiku via AWS Bedrock. Optimized RAG retrieval provides the model with the exact code context needed to generate accurate, project-specific answers.

03. Identity Layer

Custom Lambda Authorizers and DynamoDB transactions handle atomic API key rotation and strict namespace isolation.

Demos

See it in Action

Intelligent Search

Code Ingestion

Security & Rotation

Technical FAQ

Engineering & Security

How is my codebase data isolated?

nebulops utilizes Logical Multi-Tenancy at the database level. Every developer is assigned a unique tenant_id which acts as a mandatory namespace filter for all vector operations in Pinecone. This ensures zero cross-pollination between project indexes.

Are my API keys and secrets safe?

Before any code leaves the Roblox environment, it passes through a Pre-Ingestion Scrubber. We utilize optimized Regex patterns to identify and redact hardcoded credentials, high-entropy strings, and proprietary access tokens, ensuring sensitive infrastructure metadata never reaches the cloud.

How do you manage API rate limits?

The plugin features an Asynchronous Batch-Processing engine. By grouping scripts into chunks of 20 and implementing a task.wait() drip-feed, we respect Roblox's HttpService limits while maintaining high-speed ingestion.

What happens during API key rotation?

Identity management is handled via DynamoDB Transactions. Our TransactWriteItems logic ensures that new key creation and old key deletion happen atomically, preventing account lockouts or orphaned identities if a network interruption occurs.