Skip to main content

AI-powered tool for developers, simplifying coding tasks and improving workflow efficiency.

Project description

AI Code Bot 🤖

Your AI-powered coding sidekick

AICodeBot is a coding assistant designed to make your coding life easier. Think of it as your AI version of a pair programmer. Perform code reviews, create helpful commit messages, debug problems, and help you think through building new features. A team member that accelerates the pace of development and helps you write better code.

We've planned to build out multiple different interfaces for interacting with AICodeBot. To start, it's a command-line tool. In the future, we plan to integrate it with GitHub Actions, Slack, and other tools to make it even more useful.

Status: This project is in its early stages, but it already improves the software development workflow, and has a healthy roadmap of features (below).

We're using AICodeBot to build AICodeBot, and it's upward spiraling all the time.️ We're looking for contributors to help us build it out. See CONTRIBUTING for more.

What it's NOT

aicodebot is a tool for developers, not a replacement for them. It's not going to replace your job, but it will make your job easier and more fun. It's not going to take over the world, but it will help us build a better one. See the Alignment section below for more.

⚠️ AICodeBot currently uses OpenAI's ChatGPT large language models, which can hallucinate and be confidently wrong. Sometimes AICodeBot does dumb things, which is why it's mostly reading and advising and not yet writing. Much like Tesla's "Full Self Driving", you have to keep your hands on the wheel.

It's also not a "build a site for me in 5 minutes" tool that takes a well constructed prompt and builds a scaffold for you. There are other tools for that. It's not a no-code platform. Instead, AICodeBot is built to work with existing code bases and the git-commit level. It's designed to multiply the effectiveness of capable engineers.

Current features - how you can use it today

Task Status
Generating quality commit messages
Thinking through tasks as a pair programmer
Coding with a small number of files
Debugging
Doing code reviews
Explaining code
Writing tests
Modifying local files In Progress
Searching the internet for answers In Progress
Reading library documentation In Progress
Coding with a large number of files As LLMs improve
Writing senior developer level code Eventually
Major refactors Eventually
Build an entire app Nope
Replace Developers Nope

AI Sidekick 🦸‍♂️

aicodebot sidekick Your AI-powered coding assistant. It's designed to help you with your coding tasks by providing context-aware suggestions and solutions. Think ChatGPT with the ability to read local files for context.

By default it will pass along a directory of files from the current working directory, and you can also pass in a list of files to use as context. For example:

aicodebot sidekick file1.py file2.py

In this example, the sidekick will read in the contents of file1.py and file2.py and use them to provide context-aware answers.

Pro-tip: add your README.md to the list of files to get context-aware answers.

This feature is in it's early phases right now, but it's already useful. We'll be adding support for tools that the sidekick can use, including GitHub integration, ingesting repository specific domain knowledge, writing local files, and more. For now, it just reads files and provides suggestions.

AI-Assisted Git Commit 📝

aicodebot commit improves the git commit process. It will run pre-commit for you to check syntax, and then generate a commit message for you based on the changes you've made. In about as much effort as typing "fix bug" for the commit message, you will get a high quality commit message that thoroughly describes the change.

AI-Assisted Code Review 👀

aicodebot review will run a code review on your code and suggest improvements. By default it will look at [un]staged changes, and you can also supply a specific commit hash to review. It's goal is to suggest how to make the code better, and we've found that it often teaches us new things about our code and makes us better programmers. It's not perfect, but it's a great way to get a second set of robot eyes on your code.

AI-Assisted Debugging 🐞

aicodebot debug $command will run the command and capture the log output. It will pass the error message, stack trace, command output, etc. to the AI and respond with some suggestions on how to fix it. It saves a trip to Stack Overflow in a separate window, allowing you to stay in terminal with all the context.

PyPI version

Installation and Usage

To install AICodeBot, run:

pip install aicodebot

And then run aicodebot configure to get started.

Usage: aicodebot [OPTIONS] COMMAND [ARGS]...

Options:
  -V, --version  Show the version and exit.
  -h, --help     Show this message and exit.

Commands:
  alignment  Get a message about Heart-Centered AI Alignment  + 🤖.
  commit     Generate a commit message based on your changes.
  configure  Create or update the config file
  debug      Run a command and debug the output.
  fun-fact   Get a fun fact about programming and artificial intelligence.
  review     Do a code review, with [un]staged changes, or a spe

Open AI key setup

The first time you run it, you'll be prompted to enter your OpenAI API Key, which is required, as we use OpenAI's large language models for the AI. You can get one for free by visiting your API key settings page.

Note: You will be billed by OpenAI based on how much you use it. Typical developers will use less than $10/month - which if you are a professional developer you'll likely more than make up for with saved time and higher quality work. See OpenAI's pricing page for more details.

Which Language Model? GPT-3.5 vs GPT-4

Not all OpenAI accounts have GPT-4 API access enabled. By default, AICodeBot will use GPT-4 if your OpenAI account supports it, we will check the first time you run it. Tip: If your OpenAI API does not support GPT-4, you can ask to be added to the waitlist here

Note: We'll be adding more options for AI models in the future, including those that can be run locally, such as GPT4all and HuggingFace's Transformers.

Roadmap of Upcoming Features ️

Code Workflow Improvements

  • Assisted Git Commit: Automatically generate a commit message based on the changes you've made
  • Assisted Debugging: Run a command with aicodebot and it captures the log message and tries to figure out what's going on from the error message. Eventually, it could also suggest fixes for the error and make the changes for you. Try it out with aicodebot debug $command
  • Code Review: Provides feedback on potential issues in code, and suggests improvements to make it better.
  • Dependency Management: Updating dependencies to their latest versions with pull requests that run tests.
  • Documentation Generation: Generates comprehensive documentation for code, including docstrings, README files, and wiki pages.
  • Performance Optimization Suggestions: Suggests potential performance optimizations for code.
  • Test Generation: Generates unit tests for code, improve test coverage.
  • Integration with CI/CD pipelines: Integrates with CI/CD pipelines to automate tasks like code review, testing, and deployment (via GitHub Actions). Eventually: Fix the build automatically when there are small errors.
  • Rubber Ducky Chat Bot: Helps developers think through design issues by providing a conversational interface to discuss and solve problems, using data from the current repository.
  • Linting/Formatting: Checks code for linting errors and automatically fixes them where possible (via pre-commit)
  • Handle GitHub Issues: Handles basic tasks that you assign to @aicodebot
  • Automatically Generate ChangeLogs and Release Notes: Generates release notes and changelogs based on commit messages and code changes.

User Interfaces

  • Command-line, installable via pip: aicodebot can be installed as a Python package using pip install aicodebot
  • Mention the @aicodebot GitHub user: Mentioning the @aicodebot GitHub user in a comment will trigger it to perform a task, review code, or pull in an appropriate GIF.
  • Callable as a GitHub action: Can be called as a GitHub action to perform tasks on GitHub repositories. WIP
  • Jupyter Notebook Extension: Provides a Jupyter Notebook extension that can be used to debug code in the notebook.
  • Chat: CLI chat interface that knows the context of your codebase and can answer questions about it. No more going back and forth between ChatGPT and command-line.
  • Slack Bot: Interacts with aicodebot via slack, sends notifications, performs tasks, and provides real-time assistance to developers.
  • Bug Report service integrations: Listen for bug reports from Sentry, Honeybadger, and other bug reporting tools and automatically create issues, assign them to developers, and notify them via Slack. Eventually: FIX the bug automatically and notify the team.

Repository / Project Management

  • Project best practices: Suggest things like pre-commit, linting, license, CI/CD, etc. Eventually: Implement them for you.
  • Manage GitHub Issues: Provides Level 1 triage of incoming issues on GitHub, including tagging, assigning, and responding with FAQs. It could also escalate issues to human developers when necessary, and provide nudges for tasks that need more input.
  • Welcome new contributors: Automatically welcome new contributors to the project, find out what they're interested in, and suggest issues for them to work on.

Fun

  • Fun Facts: Provides fun facts about programming or AI. It could also share interesting news or articles related to AI and programming. Try it out with aicodebot fun-fact.
  • Alignment: Gives a heart-centered inspirational message about how we can build AI in a way that aligns with humanity. Try it out with aicodebot alignment.
  • Telling Jokes: We've gotta figure out how to teach LLMs about humor. :)
  • Supportive Encouragement: High fives and kudos for a job well done
  • GIF Reactions: Reacts to messages with relevant and fun gifs.

Alignment ❤️ + 🤖

Technology itself is amoral, it just imbues the values of the people who create it. We believe that AI should be built-in a way that aligns with humanity, and we're building AICodeBot to help us do just that. We're building from a heart-centered space, and contributing to the healthy intersection of AI and humanity.

Development / Contributing

We'd love your help! If you're interested in contributing, here's how to get started. See CONTRIBUTING for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aicodebot-0.9.5.tar.gz (35.5 kB view hashes)

Uploaded Source

Built Distribution

aicodebot-0.9.5-py3-none-any.whl (31.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page