Dark Mode #1234
To Do
Complete user stories, tasks or bugs
Assign to Neo with your project management tool, and Neo informs you when the work is done Start using Neo
Iterate and Collaborate
Ask Neo to rework anything by commenting on a pull request Start using Neo
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 Start using Neo
Architecture Diagrams



Review code
Neo reviews code following your team's documented practices and industry standards Start using Neo
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

Sprint Items
-
Design dashboard UI
DOING
JJose
-
Develop login feature
TO DO
MMichael
-
Setup CI/CD pipeline
TO DO
FFrancis
Manage your project
Neo creates and updates tickets, keeping your project tracking up to date Start using Neo
Comments