Dark Mode #1234 To Do
Unassigned
Unassigned

Comments

Complete user stories, tasks or bugs

Assign to Neo with your project management tool, and Neo informs you when the work is done

Iterate and Collaborate

Ask Neo to rework anything by commenting on a pull request

Pull Request #1234 Open
- console.log('Old code');
- let result = calculate(a, b);
- return result;
+ console.log('New code');
* let result = calculate(a, b) + 10;
+ console.log('Result is', result);
+ return result;
Commits
Addressing code review comments 7702f7d
src / Calculator.java

 public class Calculator {
   public int add(int a, int b) {
    return a + b;
   }

   public int multiply(int a, int b) {
     return a * b;
   }

   public int subtract(int a, int b) {
     return a - b;
   }
 }
        

import javax.swing.*;

 public class CalculatorGUI {
   public static void main(String[] args) {
    JFrame frame = new JFrame("Calculator");
    JTextField field = new JTextField();
    JButton addButton = new JButton("Add");
    frame.add(field);
    frame.add(addButton);
    frame.setSize(300, 200);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
  }
}
            

Documentation

Generate software engineering and architecture diagrams from code and specifications

Architecture Diagrams
Sequence Diagram Class Diagram Flow Diagram

Review code

Neo reviews code following your team's documented practices and industry standards

Pull Request Review Open
- console.log('Old code line 1');
- console.log('Old code line 2');
- let result = calculate(a, b);
+ console.log('New code line 1');
* let result = calculate(a, b) + 10;
+ console.log('New code line 2');
* let finalResult = result * 2;
Review Comments
Have you considered edge cases for this calculation?
Is the finalResult variable necessary here?
Backlog
Gantt Diagram
Sprint Items
  • Design dashboard UI DOING
    J
    Jose
  • Develop login feature TO DO
    M
    Michael
  • Setup CI/CD pipeline TO DO
    F
    Francis

Manage your project

Neo creates and updates tickets, keeping your project tracking up to date

THE TEAM

Let's make AI the right way
Michael Smith, CEO
Who is the assistant, you or the AI?
Jose Palazon, CTO
Do useful things to the world
Francis Irving, Staff Software Engineer
Turn data into decisions
Bingbing Zhang, Software Engineer
Be bold, take risks and innovate!
Sam Lacey, Staff Software Engineer

CONNECT WITH US