aicodebot 0.26.3

Creator: bradpython12

Last updated:

0 purchases

TODO
Add to Cart

Description:

aicodebot 0.26.3

AI Code Bot πŸ€–
Your AI-powered coding sidekick
AICodeBot is a terminal-based 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 that you can install and run in your terminal, and a GitHub Action for Code Reviews.
Status: This project was built before AI Coding Assistants were cool. πŸ€“ As such, much of the functionality has
been replicated in various IDEs. Where AICodeBot shines is a) it's in the terminal, not GUI, and b) it can be used
in processes like GitHub actions.
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.
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
βœ…


Integration with GitHub
βœ…


Modifying local files
Early stages


Searching the internet for answers
In Progress


Reading library documentation
Early stages


Coding with a large number of files
As LMs get larger token limits


Writing senior developer level code
Eventually


Major refactors
Eventually


Build entire apps
Eventually


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 the local repository 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 the task you are working on. For example:
aicodebot sidekick file1.py file2.py

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

Add your README.md to the list of files to get context-aware answers.
Paste in error messages from log files or stack traces and it will help you debug
Brainstorm new features
Have it write unit tests for you that cover all the cases

This feature is in its 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.
Its 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 is 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. over to the AI and respond with some suggestions on how to fix it.

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.
-d, --debug Enable langchain debug output

Commands:
alignment A message from AICodeBot about AI Alignment ❀ + πŸ€–.
commit Generate a commit message based on your changes.
configure Create or update the configuration file
debug Run a command and debug the output.
review Do a code review, with [un]staged changes, or a...
sidekick Coding help from your AI sidekick

API Key setup
AICodeBot supports multiple Large Language Models, including Anthropic's Claude 3.x, and OpenAI's GPT-3/4x.
Pull requests for Gemini or Ollama are welcomed, but we feel these two do the trick.
The first time you run AICodeBot, you'll be prompted to enter your API keys
Integration with GitHub Actions
How about automated code reviews on every commit? You can have AICodeBot run as a GitHub action on your repository. See The AICodeBot GitHub Action for Code Reviews. It will look at every commit and pull request, and then either:

βœ… Pass
πŸ—’οΈ Comments - pass the action, but leave a comment with minor issues, suggestions, or improvements.
❌ Fail the action - if a serious issue is found, it will leave a comment and let you know about something that should be addressed.

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)
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. AICodeBot Action
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

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 language models 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.
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 won't 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, so it's mostly reading and advising and not yet writing. Much like Tesla's "Full Self Driving", you must 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 codebases and the git-commit level. It's designed to multiply the effectiveness of capable engineers.
Configuring the language model to use
To specify a different model, you can set the language_model in your $HOME/.aicodebot.yaml file. For example:
openai_api_key: sk-*****
language_model: gpt-3.5-turbo
personality: Stewie
version: 1.3

Understanding Tokens and Using Commands Efficiently
In AI models like OpenAI's GPT-4, a "token" is a piece of text, as short as a character or as long as a word. The total tokens in an API call, including input and output, affect the cost, time, and whether the call works based on the maximum limit.
Each model has a maximum token limit. For example, GPT-3.5 has a limit of 4096 tokens, and GPT-4 has a token limit of 8192 tokens. If a conversation exceeds this limit, you must reduce your text until it fits.
When using commands like the Sidekick command in AICodeBot, which allows you to pass in files for context, it's important to manage your tokens effectively. Due to token limits, it's not feasible to load your entire codebase. Instead, you should only load the specific files that are relevant to the task you're working on.
This ensures that the AI model can process your request efficiently and provide the most relevant suggestions for your current task.
How can I get a larger token limit?
Do you need a larger context window for your task? Are you running into token limits and getting a message like this?
The context is too large (21414) for any of the models supported by your API key. 😞

There are a couple of things you can do:

Load fewer files into the context (only what you need to work with)
Use Anthropic's Claude, which has much larger context window

Development / Contributing
We'd love your help! If you're interested in contributing, here's how to get started. See CONTRIBUTING for more details.
Docker
Assumes you have changes in current working dir that are already added.
docker build -t aicodebot .
docker run -v ~/.aicodebot.yaml:/home/user/.aicodebot.yaml -v .:/app aicodebot commit -y

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.