In this gist, you can find all the VS Code chat modes I am using in my projects for the Persona based approach technique I created.
You will find an article about on my dev.to blog (dev.to/kasuken)
In this gist, you can find all the VS Code chat modes I am using in my projects for the Persona based approach technique I created.
You will find an article about on my dev.to blog (dev.to/kasuken)
Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.
Below you will find the Beast Mode prompt in various versions - starting with the most recent - 3.1
| node_modules | |
| *.png | |
| package-lock.json |
| TIMEZONE=America/Chicago | |
| PUID=1001 | |
| PGID=1001 | |
| CONFIG_PATH=/configs | |
| MEDIA_PATH=/mnt/media | |
| ROMS_PATH=${MEDIA_PATH}/roms |
| TIMEZONE=America/Chicago | |
| PUID=1001 | |
| PGID=1001 | |
| CONFIG_PATH=/configs | |
| MEDIA_PATH=/mnt/media | |
| MOVIES_PATH=${MEDIA_PATH}/movies | |
| TV_PATH=${MEDIA_PATH}/tv | |
| LEAVING_PATH=${MEDIA_PATH}/leaving-soon/ | |
| DOWNLOADS_PATH=${MEDIA_PATH}/downloads |
| # syntax=docker/dockerfile:1 | |
| # Keep this syntax directive! It's used to enable Docker BuildKit | |
| # Based on https://github.com/python-poetry/poetry/discussions/1879?sort=top#discussioncomment-216865 | |
| # but I try to keep it updated (see history) | |
| ################################ | |
| # PYTHON-BASE | |
| # Sets up all our shared environment variables | |
| ################################ |
| from aws_cdk import ( | |
| CfnOutput, | |
| RemovalPolicy, | |
| Stack, | |
| aws_iam as iam, | |
| aws_pipes as pipes, | |
| aws_logs as logs, | |
| aws_sqs as sqs, | |
| aws_stepfunctions as sfn, | |
| ) |
from soap_client import SoapClient
client = SoapClient("<host>", "<username>", "<password>")
client.doOperation()
options = {}
client.doThingWithParams(options)