VS Code Extensions
J

JRD AI NEXUS

by vishwateja

Interactive sidebar chat assistant for querying local workspace code and documentation

Downloads

1

Rating

(0)

Version

0.0.2

Last updated

Jun 01, 2026

JRD Doc Agent is a Visual Studio Code extension that provides an interactive sidebar Chat Agent. It helps you query and understand your codebases by referencing specific local files and documentation files.

Features

  • Sidebar Chat Interface: Chat with the JRD Doc Agent directly in the VS Code sidebar.
  • Contextual Code Selection: Select code files from your active workspace to include them in the query context.
  • Documentation Reference: Select a specific documentation file to supply domain-specific knowledge to the model.
  • Local Backend Integration: Sends queries to a local backend for quick, private, and secure responses.

Requirements

Before using JRD Doc Agent, ensure you have:

  1. A running chat server on http://127.0.0.1:8000 exposing a /chat endpoint.
  2. The /chat endpoint should accept a POST request with the following JSON schema:
    {
      "user_input": "Your message",
      "code_file_paths": ["/absolute/path/to/code.py"],
      "doc_file_path": "/absolute/path/to/doc.md"
    }
    
    And return a JSON object containing a reply string.

Related extensions