Skip to content

Instantly share code, notes, and snippets.

View Immutablemike's full-sized avatar
:fishsticks:
Lost, Fumbling About

ImmutableMike Immutablemike

:fishsticks:
Lost, Fumbling About
  • Immutability.space
  • 17:20 (UTC -07:00)
View GitHub Profile
@Immutablemike
Immutablemike / install_tamer_unified.sh
Created October 29, 2025 06:14
Tamer Platform - Final Working Installer
#!/bin/bash
# TAMER PLATFORM INSTALLER - Enterprise AI-Native Development Environment
# Complete installation script with GitHub sparse checkout approach
set -e
trap 'echo "❌ Installation failed. Cleaning up..."; rm -rf "$TEMP_DIR" 2>/dev/null || true; exit 1' ERR
# Colors for output
RED='\033[0;31m'
@Immutablemike
Immutablemike / install_tamer_unified.sh
Created October 29, 2025 06:13
Tamer Platform - Fixed Installer with Absolute Paths
#!/bin/bash
# TAMER PLATFORM - UNIFIED ENTERPRISE INSTALLER
# Deploys complete 12-se # Set permissions
find "$TARGET_DIR/Tamer" -name "*.sh" -exec chmod +x {} \; 2>/dev/null || true
find "$TARGET_DIR/Tamer" -name "*.py" -exec chmod +x {} \; 2>/dev/null || truece AI-native development environment
set -e
# Configuration
TARGET_DIR="${1:-.}"
@Immutablemike
Immutablemike / install_tamer_unified.sh
Last active October 29, 2025 06:13
Tamer Platform - Working Installer
#!/bin/bash
# TAMER PLATFORM - UNIFIED ENTERPRISE INSTALLER
# Deploys complete 12-se # Set permissions
find "$TARGET_DIR/Tamer" -name "*.sh" -exec chmod +x {} \; 2>/dev/null || true
find "$TARGET_DIR/Tamer" -name "*.py" -exec chmod +x {} \; 2>/dev/null || truece AI-native development environment
set -e
# Configuration
TARGET_DIR="${1:-.}"
@Immutablemike
Immutablemike / install_tamer_unified.sh
Created October 29, 2025 06:09
Tamer installer - production ready
#!/bin/bash
# TAMER PLATFORM - UNIFIED ENTERPRISE INSTALLER
# Deploys complete 12-service AI-native development e echo ""
echo -e "${GREEN}🎉 Tamer Platform Installation Complete!${NC}"
echo ""
echo -e "${BLUE}🚀 Quick Start:${NC}"
echo -e " ${GREEN}python Tamer/gotime/gotime.py${NC} # Start FastAPI platform"
echo -e " ${GREEN}python Tamer/codewolf/codewolf.py .${NC} # Run CI/CD automation"
echo -e " ${GREEN}./Tamer/git/git_smart_sync.sh --manual . \"Update\"${NC} # Manual git commit"
echo ""
@Immutablemike
Immutablemike / install_tamer_unified.sh
Last active October 29, 2025 06:08
Tamer installer with debug info
#!/bin/bash
# TAMER PLATFORM - UNIFIED ENTERPRISE INSTALLER
# Deploys complete 12-service AI-native development e echo ""
echo -e "${GREEN}🎉 Tamer Platform Installation Complete!${NC}"
echo ""
echo -e "${BLUE}🚀 Quick Start:${NC}"
echo -e " ${GREEN}python Tamer/gotime/gotime.py${NC} # Start FastAPI platform"
echo -e " ${GREEN}python Tamer/codewolf/codewolf.py .${NC} # Run CI/CD automation"
echo -e " ${GREEN}./Tamer/git/git_smart_sync.sh --manual . \"Update\"${NC} # Manual git commit"
echo ""
#!/bin/bash
# TAMER PLATFORM - UNIFIED ENTERPRISE INSTALLER
# Deploys complete 12-service AI-native development environment
set -e
# Configuration
TARGET_DIR="${1:-.}"
INSTALL_MODE="${2:-complete}"
@Immutablemike
Immutablemike / install_codewolf_complete.sh
Created October 29, 2025 01:15
CodeWolf Professional CI/CD Automation System - Complete installer with auto-fixing, testing, security scanning, quality gates
#!/bin/bash
# CodeWolf Professional CI/CD Automation System - Complete Installer
# Part of COPILOT_TAMER distribution system
set -euo pipefail
REPO_ROOT="${1:-$(pwd)}"
echo "🐺 Installing CodeWolf Professional CI/CD Automation System..."
# 1. Create CodeWolf directory structure
@Immutablemike
Immutablemike / install_enhanced_validation_issues_auto.sh
Created October 28, 2025 02:28
Enhanced Validation + Issues_Auto System Installer - Complete brief validation with XML XSD + YAML linting + DAG integrity checking integrated with Issues_Auto automation pipeline
#!/bin/bash
# Enhanced Issues Auto System with Integrated XML/YAML/DAG Validation
# Based on your validate-brief.yml pattern
set -euo pipefail
REPO_ROOT="${1:-$(pwd)}"
VALIDATION_MODE="${2:-strict}" # strict|lenient
SLACK_INTEGRATION="${3:-false}"
#!/bin/bash
# 🚀 KILLER-AIDER: All-in-One Script
# Installation and Launcher for Multi-AI Development Team
# Created by GitHub Copilot for professional development workflows
# Version: 1.0.0
set -e
# Colors for output