├── .env.example ├── .gitignore ├── README.md ├── knowledge └── user_preference.txt ├── pyproject.toml ├── src └── pro_tools │ ├── __init__.py │ ├── config │ ├── agents.yaml │ └── tasks.yaml │ ├── crew.py │ ├── main.py │ ├── models │ ├── article.py │ └── research.py │ ├── tools │ ├── RedditSearchTool.py │ ├── TrelloAddCardCommentTool.py │ ├── TrelloUpdateCardTool.py │ └── __init__.py │ └── utils │ └── trello_utils.py └── uv.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | *.txt 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/README.md -------------------------------------------------------------------------------- /knowledge/user_preference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/knowledge/user_preference.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pro_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pro_tools/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/src/pro_tools/config/agents.yaml -------------------------------------------------------------------------------- /src/pro_tools/config/tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/src/pro_tools/config/tasks.yaml -------------------------------------------------------------------------------- /src/pro_tools/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/src/pro_tools/crew.py -------------------------------------------------------------------------------- /src/pro_tools/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/src/pro_tools/main.py -------------------------------------------------------------------------------- /src/pro_tools/models/article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/src/pro_tools/models/article.py -------------------------------------------------------------------------------- /src/pro_tools/models/research.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/src/pro_tools/models/research.py -------------------------------------------------------------------------------- /src/pro_tools/tools/RedditSearchTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/src/pro_tools/tools/RedditSearchTool.py -------------------------------------------------------------------------------- /src/pro_tools/tools/TrelloAddCardCommentTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/src/pro_tools/tools/TrelloAddCardCommentTool.py -------------------------------------------------------------------------------- /src/pro_tools/tools/TrelloUpdateCardTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/src/pro_tools/tools/TrelloUpdateCardTool.py -------------------------------------------------------------------------------- /src/pro_tools/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pro_tools/utils/trello_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/src/pro_tools/utils/trello_utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/noob-vs-pro-tools/HEAD/uv.lock --------------------------------------------------------------------------------