Neue Skills, Referenzen & OpenWiki-Doku integriert

Umfangreiche Erweiterung der Skill-Bibliothek: Neue Skills für Humanisierung (Englisch/PT-BR), Design-Validierung, AI-SEO und Coolify-Deployment inkl. Regelwerke, Presets, Pattern-Referenzen, Testfälle und Automatisierungsskripte. Zusätzliche Skills für Revenue-Centric Design, Pier Cloud, OKF, Lebenslauf- und LinkedIn-Optimierung sowie zahlreiche Referenzdateien, Checklisten und YAML/JSON/Markdown-Templates. Einführung einer vollständigen OpenWiki-Dokumentation mit Architektur-, Domain- und Workflow-Beschreibungen, zentralem Index und automatisierten Updates. Modularer Aufbau, restriktive Lizenzen und umfassende Qualitäts- und Evaluationsmechanismen für alle neuen Inhalte.
This commit is contained in:
Tim Krampitz
2026-07-26 14:00:58 +02:00
parent 070727d5cd
commit 01046b01e4
202 changed files with 31290 additions and 0 deletions

View File

@@ -0,0 +1,128 @@
#!/bin/bash
set -e
# Ralph Loop for Kiro Specs — Runner Script
# Based on https://github.com/mreferre/ralph-loop-kiro-specs
# Licensed under Apache License 2.0
#
# Usage: ./ralph-loop-kiro-specs-script.sh <max_iterations> <specs_name>
# ── Color & style codes ──
RED='\033[1;31m'
GREEN='\033[1;32m'
YELLOW='\033[1;33m'
BLUE='\033[1;34m'
CYAN='\033[1;36m'
MAGENTA='\033[1;35m'
BOLD='\033[1m'
DIM='\033[2m'
NC='\033[0m' # No Color
MAX_ITERATIONS=${1:-10}
SPECS_NAME=${2:-}
if [ -z "$SPECS_NAME" ]; then
echo -e "${RED}❌ Usage: $0 <max_iterations> <specs_name>${NC}" >&2
exit 1
fi
# Validate MAX_ITERATIONS is a positive integer
if ! [[ "$MAX_ITERATIONS" =~ ^[1-9][0-9]*$ ]]; then
echo -e "${RED}❌ Error: <max_iterations> must be a positive integer, got '${BOLD}$MAX_ITERATIONS${RED}'${NC}" >&2
exit 1
fi
# Validate SPECS_NAME is a non-empty string (no whitespace-only)
if ! [[ "$SPECS_NAME" =~ [^[:space:]] ]]; then
echo -e "${RED}❌ Error: <specs_name> must be a non-empty string${NC}" >&2
exit 1
fi
SCRIPT_DIR="$(cd "$(dirname \
"${BASH_SOURCE[0]}")" && pwd)"
# Set the specs directory path based on the provided specs name
SPECS_DIR="$SCRIPT_DIR/.kiro/specs/$SPECS_NAME"
# Check if the specs directory exists, exit with error if not found
if [ ! -d "$SPECS_DIR" ]; then
echo -e "${RED}❌ Error: No specs named '${BOLD}$SPECS_NAME${RED}' found in this project${NC}" >&2
exit 1
fi
# Initialize progress log file if it doesn't exist
if [ ! -f "$SPECS_DIR/progress.md" ]; then
echo "# Progress Log for spec: $SPECS_NAME" \
> "$SPECS_DIR/progress.md"
echo -e "${DIM}📝 Created progress.md${NC}"
fi
# Initialize time log file if it doesn't exist
TIME_LOG="$SPECS_DIR/specs_time.md"
if [ ! -f "$TIME_LOG" ]; then
echo "# Time Log for spec: $SPECS_NAME" > "$TIME_LOG"
echo -e "${DIM}📝 Created specs_time.md${NC}"
fi
# Load the prompt template and substitute the specs name placeholder
PROMPT=$(sed "s/SPECS_NAME/$SPECS_NAME/g" \
"$SCRIPT_DIR/ralph-loop-kiro-specs-prompt.md")
echo ""
echo -e "${MAGENTA}══════════════════════════════════════${NC}"
echo -e " 🚀 ${BOLD}Starting Ralph${NC}"
echo -e " ${DIM}spec:${NC} ${CYAN}$SPECS_NAME${NC}"
echo -e " ${DIM}iterations:${NC} ${CYAN}$MAX_ITERATIONS${NC}"
echo -e "${MAGENTA}══════════════════════════════════════${NC}"
echo ""
# Ask user for iteration mode
read -r -p "$(echo -e "${YELLOW}🔄 Iterate automatically through tasks? (y/n):${NC} ")" AUTO_MODE
case "$AUTO_MODE" in
[yY]|[yY][eE][sS])
AUTO_MODE=true
echo -e " ${GREEN}✔ Auto-pilot enabled${NC}"
;;
*)
AUTO_MODE=false
echo -e " ${BLUE}✔ Manual mode — you'll confirm each iteration${NC}"
;;
esac
echo ""
echo -e "${CYAN}─── 📋 Prompt ───────────────────────────${NC}"
echo "$PROMPT"
echo -e "${CYAN}──────────────────────────────────────────${NC}"
echo ""
read -r -p "$(echo -e "${YELLOW}👀 Review the prompt above. Press Enter to launch the Ralph loop...${NC} ")"
echo ""
for i in $(seq 1 $MAX_ITERATIONS); do
echo -e "${BLUE}═══════════════════════════════════════${NC}"
echo -e " 🔁 ${BOLD}Iteration ${CYAN}$i${NC}${BOLD} / ${DIM}$MAX_ITERATIONS${NC}"
echo -e "${BLUE}═══════════════════════════════════════${NC}"
OUTPUT=$(echo "$PROMPT" \
| kiro-cli chat --trust-all-tools --no-interactive 2>&1 \
| tee /dev/stderr) || true
if echo "$OUTPUT" | \
grep -q "<promise>COMPLETE</promise>"
then
echo ""
echo -e "${GREEN}══════════════════════════════════════${NC}"
echo -e "${BOLD}All tasks complete!${NC}"
echo -e "${GREEN}══════════════════════════════════════${NC}"
exit 0
fi
if [ "$AUTO_MODE" = false ]; then
echo ""
read -r -p "$(echo -e "${YELLOW}⏸️ Iteration $i done. Press Enter to continue...${NC} ")"
fi
done
echo ""
echo -e "${RED}══════════════════════════════════════${NC}"
echo -e " ⚠️ ${BOLD}Max iterations reached${NC} ${DIM}($MAX_ITERATIONS)${NC}"
echo -e "${RED}══════════════════════════════════════${NC}"
exit 1