### VSCode Setup: Download Bonyan Docs for Copilot Source: https://github.com/maziyargh83/bonyanllm/blob/main/README.md This command downloads the Bonyan documentation file and saves it to the `.vscode` directory within your project. This file can then be referenced by VSCode extensions like Copilot for context-aware code generation. ```sh curl -L https://bonyan.snappfood.dev/llm-bonyan.txt --create-dirs -o .vscode/bonyan.md ``` -------------------------------- ### Cursor Setup: Save Bonyan Docs to .cursor/rules Source: https://github.com/maziyargh83/bonyanllm/blob/main/README.md This command downloads the Bonyan documentation file and saves it to the specified project-level directory for Cursor. This ensures that Cursor can access the documentation locally for context, improving code generation quality. ```sh curl -L https://bonyan.snappfood.dev/llm-bonyan.txt --create-dirs -o .cursor/rules/bonyan.mdc ``` -------------------------------- ### Cursor Setup: Add Custom Docs URL Source: https://github.com/maziyargh83/bonyanllm/blob/main/README.md This guide explains how to add Bonyan's documentation URL as a custom document source within Cursor. This enables the AI to access and utilize the Bonyan documentation when responding to queries or generating code. ```md https://bonyan.snappfood.dev/llm-bonyan.txt ``` -------------------------------- ### VSCode Setup: Configure Copilot with Bonyan Docs Source: https://github.com/maziyargh83/bonyanllm/blob/main/README.md This JSON configuration snippet is added to VSCode's `settings.json` file. It instructs GitHub Copilot to use the downloaded Bonyan documentation file (`.vscode/bonyan.md`) for code generation and chat interactions. ```json { "github.copilot.chat.codeGeneration.instructions": [ { "file": "./.vscode/bonyan.md" } ] } ``` -------------------------------- ### Quick Use: Add Bonyan Docs to VSCode Chat Source: https://github.com/maziyargh83/bonyanllm/blob/main/README.md This snippet demonstrates how to instruct VSCode to fetch Bonyan's documentation for use in its chat interface. This allows the AI to leverage the documentation for generating Bonyan-specific code. ```md #fetch https://bonyan.snappfood.dev/llm-bonyan.txt ``` -------------------------------- ### VSCode Setup: Add Context7 MCP Server to settings.json Source: https://github.com/maziyargh83/bonyanllm/blob/main/README.md This JSON configuration is added to VSCode's `settings.json` file to integrate the Context7 MCP server. This enables VSCode to utilize the Context7 server for improved AI model interactions and context management. ```json { "mcp": { "servers": { "Context7": { "type": "stdio", "command": "npx", "args": ["-y", "@upstash/context7-mcp@latest"] } } } } ``` -------------------------------- ### Cursor Setup: Add Context7 MCP Server Source: https://github.com/maziyargh83/bonyanllm/blob/main/README.md This JSON configuration adds the Context7 MCP server to Cursor's global settings. This allows Cursor to communicate with the Context7 server, which can provide enhanced context and capabilities for AI-driven tasks. ```json { "mcpServers": { "Context7": { "type": "stdio", "command": "npx", "args": ["-y", "@upstash/context7-mcp@latest"] } } } ``` -------------------------------- ### Quick Use: Add Bonyan Docs to Cursor Chat Source: https://github.com/maziyargh83/bonyanllm/blob/main/README.md This snippet shows how to quickly provide Bonyan's documentation to Cursor's chat interface. By referencing the external URL, Cursor can use the provided documentation to generate more accurate Bonyan code. ```md @web https://bonyan.snappfood.dev/llm-bonyan.txt ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.