Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>AICoderHubNew to Visual Studio Code? Get it now.
AICoderHub

AICoderHub

carlospolop

|
60 installs
| (0) | Free
Generate and modify code easily with openAI
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

aicoder README

For information about this extension, please refer to the GH originals project

Features

>AICoder Full Generator

Use this extension command to generate a full program from your own prompt.

You will be asked for the prompt describing the program and it can be a string, a file path or an URL.

My recommendation is to generate a PROMPT.md file with the detailed description of the program to generate.

This will generate the program in ./generated/.

This is what is being run under the hood:

# Generate a full program from nothing
aicoder full-generator --prompt "prompt_file.md" --api-key <openai-api-key> --model gpt-4

>AICoder File Enhancer

Use this extension command to modify a file from your own prompt.

You will be asked for the prompt describing modification of the file and it can be a string, a file path or an URL. You will also be asked for the file path to modify.

My recommendation is to generate a PROMPT_FILE.md file with the detailed description of the change to perform to the file.

This is what is being run under the hood:

aicoder file-enhancer --prompt "prompt_file.md" --file-path "./generated/main.m" --api-key <openai-api-key> --model gpt-4

>AICoder File Generator

Use this extension command to generate a file from your own prompt and using other files as templates (I wouldn't use more than 2).

You will be asked for the prompt describing the file to generate and it can be a string, a file path or an URL. You will also be asked for the file path to generate and the template files to use (space separated).

My recommendation is to generate a PROMPT_FILE.md file with the detailed description of the file to generate.

This is what is being run under the hood:

aicoder file-generator --prompt "prompt_file.md" --template-files "./generated/module1.m ./generated/module2.m" --api-key <openai-api-key> --model gpt-4

>AICoder Security Checker

aicoder file-security --path "./generated/main.m" --api-key <openai-api-key> --model gpt-4

>AICoder Code Optimizer

aicoder file-optimizer --path "./generated/main.m" --api-key <openai-api-key> --model gpt-4

>AICoder Add Comments

aicoder file-comments --path "./generated/main.m" --api-key <openai-api-key> --model gpt-4

>AICoder Fix Bugs

aicoder file-bugfixer --path "./generated/main.m" --api-key <openai-api-key> --model gpt-4

Requirements

The only requirements are:

  • Have aicoder python moduled installed
  • A OpenAI model that supports gpt-4. You will be asked for this by the extension.
# If you install the extension this will be automatically installed for you
pip3 install aicoder

Extension Settings

This extension contributes the following settings:

  • openai.apiKey: The API key for OpenAI
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft