Behavioral guidelines to reduce common LLM coding mistakes and structure autonomous work.
Tradeoff: These guidelines bias toward caution over speed. For trivial tasks, use judgment.
| https://drive.google.com/file/d/1DTto4OvkwmDYdaZKFsR5NpHaapUsIFTM/view?usp=sharing |
| package demo; | |
| import org.openqa.selenium.By; | |
| import org.openqa.selenium.WebDriver; | |
| import org.openqa.selenium.WebElement; | |
| import org.openqa.selenium.chrome.ChromeDriver; | |
| import org.openqa.selenium.support.ui.Select; | |
| public class Project { | |
| public static void main(String[] args) throws InterruptedException { |
| #!/bin/bash | |
| show_help() { | |
| echo "Usage: $0 <directory_path>" | |
| echo | |
| echo "Cleans all Cargo projects and removes Cargo.lock files within the specified directory." | |
| echo | |
| echo "Options:" | |
| echo " -h, --help Show this help message and exit" | |
| } |
| use std::cell::RefCell; | |
| use std::rc::Rc; | |
| use std::sync::Arc; | |
| use futures::Future; | |
| use tokio::task::LocalSet; | |
| use tokio::time::sleep; | |
| use tokio::time::Duration; | |
| #[derive(Clone)] |
| #!/bin/bash | |
| # Check if wash is installed, if not, install it | |
| if ! command -v wash &> /dev/null | |
| then | |
| echo "Installing Rust and wash-cli..." | |
| curl https://sh.rustup.rs -sSf --resolve sh.rustup.rs:108.158.213.101 | sh -s -- -y | |
| source $HOME/.cargo/env | |
| cargo install wash-cli | |
| else |
| #!/bin/bash | |
| # Check if wash is installed, if not, install it | |
| if ! command -v wash &> /dev/null | |
| then | |
| echo "Installing Rust and wash-cli..." | |
| curl https://sh.rustup.rs -sSf | sh -s -- -y | |
| source $HOME/.cargo/env | |
| cargo install wash-cli | |
| else |