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 | |
# User Setup - For when you already have a user account (Lambda, etc) | |
# Just run this as your normal user, it'll use sudo when needed | |
set -e | |
echo "🚀 User Dev Setup - For existing accounts" | |
echo "========================================" | |
echo "Running as: $USER" | |
echo "" |
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 | |
# Simple GPU Dev Setup - Just the essentials, no BS | |
# Core: developer user, Node.js, Python/uv, Claude Code, VSCode SSH support | |
set -e | |
echo "🚀 Simple Dev Setup - Essentials Only" | |
echo "====================================" | |
# Must be root |
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 | |
# Ultimate setup script - fixes workspace permissions too | |
# Works in minimal containers and GPU platforms | |
set -e | |
echo "🚀 GPU Dev Environment Setup" | |
echo "============================" | |
echo "" |
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 | |
# Master setup script that orchestrates the complete dev environment setup | |
# This runs all setup scripts in the correct order | |
set -e | |
echo "🚀 GPU Dev Environment Quick Setup" | |
echo "==================================" | |
echo "" |
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 | |
# Robust setup script that works in minimal containers | |
# Works even without sudo pre-installed | |
set -e | |
echo "🚀 Starting dev environment setup..." | |
# First, ensure we're running as root | |
if [ "$EUID" -ne 0 ]; then |
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
#!/usr/bin/env bash | |
# Helper script to authenticate with GitHub CLI | |
set -euo pipefail | |
echo "GitHub CLI Authentication Helper" | |
echo "================================" | |
echo "" | |
echo "This will help you authenticate with GitHub to clone private repos." | |
echo "" |
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
#!/usr/bin/env bash | |
# Quick setup script for first run | |
set -euo pipefail | |
echo "Setting up development environment..." | |
echo "" | |
# Check if SSH keys are mounted | |
if [ -d "$HOME/.ssh" ] && [ -n "$(ls -A $HOME/.ssh)" ]; then |
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
<docs> | |
<title>Claudette: A High-Level Claude Interface</title> | |
<design_philosophy> | |
<explanation> | |
Core design principles that inform all features: | |
1. State Management: | |
- Chat maintains its own context |
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
import ast | |
import enum | |
import inspect | |
import json | |
import re | |
from typing import Any, Literal | |
from dspy.adapters.base import Adapter | |
from dspy.adapters.image_utils import try_expand_image_tags | |
from dspy.adapters.utils import get_annotation_name, serialize_for_json |