https://martinfowler.com/articles/exploring-gen-ai.html
https://www.thoughtworks.com/insights/blog/generative-ai/using-ai-requirements-analysis-case-study
| # Created to accompany https://martinfowler.com/articles/exploring-gen-ai.html#memo-10 | |
| # | |
| # Prerequisites: | |
| # - pip install pyautogen | |
| # - pip install python-dotenv | |
| # - git clone [email protected]:openmrs/openmrs-react-components.git | |
| # - .env file in the same directory with the respective env variables needed for the model connection | |
| # | |
| # Implementation based on https://microsoft.github.io/autogen/docs/notebooks/agentchat_function_call_code_writing/ | |
| # Prompt based on docs at https://testing-library.com/docs/react-testing-library/migrate-from-enzyme/ |
| #!/bin/bash | |
| set -e | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| BLUE='\033[1;34m' | |
| YELLOW='\033[1;33m' | |
| NC='\033[0m' # No Color | |
| BRANCH_AHEAD_PATTERN="^.*ahead.*$" | |
| NOT_STAGED_PATTERN="^.*not staged.*$" |
Erik Dörnenburg, Martin Fowler “Architecture without Architects”
Pat Kua, "The Well-Rounded Architect"
Pat Kua, "The Geek’s Guide to Leading Teams"
| #https://github.com/schacon/ruby-git | |
| #https://github.com/es-analysis/plato | |
| require 'git' | |
| ################################## | |
| # root location of git repository | |
| root_location = '/path/to/my/repo' | |
| # JS scripts folder, relative to folder where script is started |
| #!/bin/sh | |
| ## | |
| # This is a script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # Run in interactive mode with: | |
| # $ sh -c "$(curl -sL https://raw.github.com/gist/2108403/hack.sh)" | |
| # | |
| # or run it without prompt questions: |