Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
NODE_ENV | No | Node environment setting | production |
LOG_LEVEL | No | Logging level - options include: 'fatal', 'error', 'warn', 'info', 'debug', 'trace' | info |
GEMINI_MODEL | No | The Gemini model to use | google/gemini-pro |
PERPLEXITY_MODEL | No | The Perplexity model to use | perplexity/sonar-small-online |
OPENROUTER_API_KEY | Yes | Your OpenRouter API key | |
OPENROUTER_BASE_URL | No | The base URL for OpenRouter API | https://openrouter.ai/api/v1 |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
research | Performs deep research on a given topic using Perplexity Sonar and enhances the result. |
generate-rules | Creates project-specific development rules based on product description, user stories, and research. |
generate-prd | Creates comprehensive product requirements documents based on a product description and research. |
generate-user-stories | Creates detailed user stories with acceptance criteria based on a product description and research. |
generate-task-list | Creates structured development task lists with dependencies based on product description, user stories, and research. |
generate-fullstack-starter-kit | Generates full-stack project starter kits with custom tech stacks, research-informed recommendations, and setup scripts. |
generate-code-stub | Generates a code stub (function, class, etc.) in a specified language based on a description. Can optionally use content from a file (relative path) as context. |
refactor-code | Refactors a given code snippet based on specific instructions, optionally using surrounding file context. |
generate-git-summary | Retrieves a summary of current Git changes (diff). Can show staged or unstaged changes. |
analyze-dependencies | Analyzes dependency manifest files (currently supports package.json) to list project dependencies. |
process-request | Processes natural language requests, determines the best tool using semantic matching and fallbacks, and either asks for confirmation or executes the tool directly. |