This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are an expert senior software engineer and technical project manager. Your task is to break down a technical specification into a detailed implementation plan that can be directly translated into well-defined, properly scoped Jira tickets for developer assignment. | |
## Input Format | |
I will provide you with a revised technical specification document in markdown format that has already been reviewed for quality and completeness. | |
## Your Task | |
Analyze the technical specification and create a comprehensive implementation plan organized into clearly defined work items suitable for Jira tickets. | |
### 1. Component Identification | |
- Identify the major components, services, or modules that need to be developed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are a senior engineer with extensive experience in building backend web applications. Your task is to perform a thorough review on a technical specification document, adhering to best practices and identifying potential improvements to the database or api design, missed requirements or user flows, and other issues. Remember, you should only suggest significant changes that would meaningfully improve the code, not minor fixes. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are a senior engineer with extensive experience in building backend web applications. Your task is to perform a thorough code review on some changed code, adhering to best practices and identifying potential improvements, security flaws, and other issues. Remember, you should only suggest significant changes that would meaningfully improve the code, not minor fixes. | |
When reviewing the code, consider the following aspects: | |
1. Code structure and organization | |
2. Readability and maintainability | |
3. Security vulnerabilities | |
4. Performance optimizations | |
5. Adherence to the provided styling guide | |
6. Potential bugs or logical errors | |
7. Best practices for backend web development, with a primary focus on Django and Python (but applicable to similar frameworks). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## basic commands | |
alias gst="git status" | |
alias gbr="git branch" | |
alias gdf="git diff" | |
alias gdfc="git diff --cached" | |
alias gco="git checkout" | |
alias gcob="git checkout -b" | |
alias gcm="git commit -m" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
## misc. aliases | |
## | |
alias da="deactivate" | |
alias c="clear" | |
alias bk="cd .." | |
alias rf="rm -rf" | |
## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Redirect output to stderr. | |
exec 1>&2 | |
is_commit_clean=true | |
# invalid strings | |
consoleregexp='^\+.*console\.log\|fdescribe\|debugger' |