feat(phase6-9): Complete modular architecture and Agent Teams

Phase 6.4 - Modular Architecture:
- Add lewooogo-brain adapters for LLM providers
- Add lewooogo-data dual memory (Redis + PostgreSQL)
- Implement consensus engine for multi-agent decisions
- Add incident memory service for historical context

Phase 9 - Agent Teams (Claude Agent SDK):
- Add base agent class with Claude Sonnet 4 integration
- Implement action planner, blast radius, and security agents
- Add agent API endpoints and proposal workflow
- Integrate ADR-009 OpenClaw Agent Teams architecture

DevOps & CI/CD:
- Add GitHub Actions CI/CD workflows (ci.yaml, cd.yaml)
- Add pre-commit hooks and secrets baseline
- Add docker-compose for local development
- Update Kubernetes network policies

Frontend Improvements:
- Add auto-healing error boundary component
- Update i18n messages for agent features
- Enhance dual-state incident card with execution feedback

Documentation:
- Add 7 ADRs covering MCP, design system, architecture decisions
- Update ARCHITECTURE_MEMORY.md with modular design
- Add GLOBAL_RULES.md and SOUL.md for project identity

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
OG T
2026-03-23 18:40:36 +08:00
parent 6eccb45757
commit 7478dc0254
169 changed files with 24613 additions and 247 deletions

View File

@@ -0,0 +1,192 @@
# =============================================================================
# AWOOOI Nginx Reverse Proxy Configuration
# =============================================================================
# 域名: awoooi.wooo.work
# 用途: 新版前端 + API Gateway 反向代理
# 負責人: CIO (CIO-002)
# 日期: 2026-03-21
#
# 後端架構:
# - 前端 (Next.js): K3s NodePort 192.168.0.120:32335
# - API (FastAPI): K3s NodePort 192.168.0.120:32334
#
# ⚠️ 警告: 絕對不允許出現 Legacy 系統的 Port (31234/31235)
# =============================================================================
# -----------------------------------------------------------------------------
# Upstream 定義 (K3s NodePort)
# -----------------------------------------------------------------------------
upstream awoooi_web {
server 192.168.0.120:32335;
keepalive 32;
}
upstream awoooi_api {
server 192.168.0.120:32334;
keepalive 64;
}
# -----------------------------------------------------------------------------
# HTTP → HTTPS 重導向
# -----------------------------------------------------------------------------
server {
listen 80;
listen [::]:80;
server_name awoooi.wooo.work;
# Let's Encrypt ACME Challenge
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
# 強制 HTTPS
location / {
return 301 https://$host$request_uri;
}
}
# -----------------------------------------------------------------------------
# HTTPS 主配置
# -----------------------------------------------------------------------------
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name awoooi.wooo.work;
# =========================================================================
# SSL 配置 (Let's Encrypt)
# =========================================================================
ssl_certificate /etc/letsencrypt/live/awoooi.wooo.work/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/awoooi.wooo.work/privkey.pem;
ssl_session_timeout 1d;
ssl_session_cache shared:SSL:50m;
ssl_session_tickets off;
# Modern SSL 配置 (TLS 1.2+)
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_prefer_server_ciphers off;
# HSTS (2 年)
add_header Strict-Transport-Security "max-age=63072000" always;
# =========================================================================
# 安全 Headers
# =========================================================================
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-Content-Type-Options "nosniff" always;
add_header X-XSS-Protection "1; mode=block" always;
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
# =========================================================================
# 通用 Proxy 設定
# =========================================================================
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
# =========================================================================
# API 路由 (/api/)
# =========================================================================
# 標準 REST API
location /api/ {
proxy_pass http://awoooi_api;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
# Connection 重用
proxy_set_header Connection "";
}
# -------------------------------------------------------------------------
# SSE 端點專用配置 (Server-Sent Events)
# -------------------------------------------------------------------------
# /api/v1/dashboard/stream - 戰情室即時串流
# /api/v1/agent/thinking - AI 思考過程串流
location ~ ^/api/v1/(dashboard/stream|agent/thinking) {
proxy_pass http://awoooi_api;
# SSE 必要設定: 禁用緩衝
proxy_buffering off;
proxy_cache off;
# SSE 長連線 (24 小時)
proxy_read_timeout 86400s;
proxy_send_timeout 86400s;
# 保持連線
proxy_set_header Connection "";
# 禁用 gzip (SSE 不需要壓縮)
gzip off;
# Chunked Transfer Encoding
chunked_transfer_encoding on;
}
# -------------------------------------------------------------------------
# WebSocket 端點 (預留)
# -------------------------------------------------------------------------
location /api/v1/ws {
proxy_pass http://awoooi_api;
# WebSocket 升級
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# WebSocket 長連線
proxy_read_timeout 86400s;
proxy_send_timeout 86400s;
}
# =========================================================================
# 前端路由 (/)
# =========================================================================
location / {
proxy_pass http://awoooi_web;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
# Connection 重用
proxy_set_header Connection "";
}
# -------------------------------------------------------------------------
# Next.js 靜態資源快取
# -------------------------------------------------------------------------
location /_next/static/ {
proxy_pass http://awoooi_web;
proxy_cache_valid 200 365d;
add_header Cache-Control "public, max-age=31536000, immutable";
}
# =========================================================================
# 健康檢查端點 (Nginx 層級)
# =========================================================================
location /nginx-health {
access_log off;
return 200 "OK";
add_header Content-Type text/plain;
}
# =========================================================================
# 錯誤頁面
# =========================================================================
error_page 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
internal;
}
# =========================================================================
# 日誌配置
# =========================================================================
access_log /var/log/nginx/awoooi.wooo.work.access.log;
error_log /var/log/nginx/awoooi.wooo.work.error.log warn;
}

150
ops/nginx/deploy-nginx.sh Normal file
View File

@@ -0,0 +1,150 @@
#!/bin/bash
# =============================================================================
# AWOOOI Nginx 配置部署腳本
# =============================================================================
# 用途: 將 awoooi.wooo.work.conf 部署至 Nginx 反向代理伺服器
# 目標: 192.168.0.188 (AI + Web 中心) ⚠️ 絕對禁止部署至其他主機
# 負責人: CIO
# 日期: 2026-03-21
#
# ⚠️ 四主機架構強制校驗 ⚠️
# | IP | 職責 | Nginx 部署? |
# |-----------------|------------------------|-------------|
# | 192.168.0.110 | DevOps 金庫 (Harbor) | ❌ 禁止 |
# | 192.168.0.112 | Kali Security | ❌ 禁止 |
# | 192.168.0.188 | AI+Web 中心 (Nginx SSL) | ✅ 唯一目標 |
# | 192.168.0.120 | K3s Master | ❌ 禁止 |
# =============================================================================
set -e
# =============================================================================
# 配置常量 (四主機架構強制定義)
# =============================================================================
NGINX_HOST="192.168.0.188" # ⚠️ 唯一合法目標,禁止修改
NGINX_USER="root"
REMOTE_SITES_AVAILABLE="/etc/nginx/sites-available"
REMOTE_SITES_ENABLED="/etc/nginx/sites-enabled"
LOCAL_CONF="./ops/nginx/awoooi.wooo.work.conf"
CONF_NAME="awoooi.wooo.work.conf"
# 顏色
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'
log_info() { echo -e "${BLUE}[INFO]${NC} $1"; }
log_success() { echo -e "${GREEN}[SUCCESS]${NC} $1"; }
log_warn() { echo -e "${YELLOW}[WARN]${NC} $1"; }
log_error() { echo -e "${RED}[ERROR]${NC} $1"; }
# =============================================================================
# 前置檢查
# =============================================================================
echo ""
echo "=============================================="
echo " AWOOOI Nginx 配置部署"
echo " 目標: ${NGINX_HOST} (AI + Web 中心)"
echo "=============================================="
echo ""
# 四主機架構強制校驗
if [[ "$NGINX_HOST" != "192.168.0.188" ]]; then
log_error "四主機架構違規Nginx 必須部署至 192.168.0.188"
log_error "當前目標: $NGINX_HOST"
exit 1
fi
# 檢查本地設定檔
if [ ! -f "$LOCAL_CONF" ]; then
log_error "設定檔不存在: $LOCAL_CONF"
exit 1
fi
log_success "設定檔存在: $LOCAL_CONF"
# 檢查 SSH 連線
log_info "測試 SSH 連線至 ${NGINX_HOST}..."
if ! ssh -o ConnectTimeout=5 -o BatchMode=yes ${NGINX_USER}@${NGINX_HOST} "echo 'SSH OK'" > /dev/null 2>&1; then
log_error "無法透過 SSH 連線至 ${NGINX_HOST}"
log_warn "請確認 SSH Key 已配置"
exit 1
fi
log_success "SSH 連線成功"
# =============================================================================
# Step 1: 備份現有設定 (如存在)
# =============================================================================
log_info "Step 1: 備份現有設定..."
ssh ${NGINX_USER}@${NGINX_HOST} "
if [ -f ${REMOTE_SITES_AVAILABLE}/${CONF_NAME} ]; then
cp ${REMOTE_SITES_AVAILABLE}/${CONF_NAME} ${REMOTE_SITES_AVAILABLE}/${CONF_NAME}.bak.\$(date +%Y%m%d_%H%M%S)
echo '已備份現有設定'
else
echo '無現有設定需備份'
fi
"
# =============================================================================
# Step 2: 傳輸設定檔
# =============================================================================
log_info "Step 2: 傳輸設定檔..."
scp -q "$LOCAL_CONF" ${NGINX_USER}@${NGINX_HOST}:${REMOTE_SITES_AVAILABLE}/${CONF_NAME}
log_success "設定檔已傳輸"
# =============================================================================
# Step 3: 建立 Symlink 並測試
# =============================================================================
log_info "Step 3: 啟用設定並測試..."
ssh ${NGINX_USER}@${NGINX_HOST} "
# 建立 symlink
ln -sf ${REMOTE_SITES_AVAILABLE}/${CONF_NAME} ${REMOTE_SITES_ENABLED}/${CONF_NAME}
# 測試設定語法
nginx -t
"
log_success "Nginx 設定語法正確"
# =============================================================================
# Step 4: 重載 Nginx
# =============================================================================
log_info "Step 4: 重載 Nginx..."
ssh ${NGINX_USER}@${NGINX_HOST} "systemctl reload nginx"
log_success "Nginx 已重載"
# =============================================================================
# Step 5: 驗證
# =============================================================================
log_info "Step 5: 驗證部署..."
ssh ${NGINX_USER}@${NGINX_HOST} "
echo '--- 已啟用的站點 ---'
ls -la ${REMOTE_SITES_ENABLED}/ | grep awoooi
echo ''
echo '--- Nginx 狀態 ---'
systemctl status nginx --no-pager | head -5
"
# =============================================================================
# 完成
# =============================================================================
echo ""
echo "=============================================="
echo -e "${GREEN} AWOOOI Nginx 部署完成!${NC}"
echo "=============================================="
echo ""
echo "部署資訊:"
echo " - 設定檔: ${REMOTE_SITES_AVAILABLE}/${CONF_NAME}"
echo " - 目標主機: ${NGINX_HOST} (AI + Web 中心)"
echo ""
echo "下一步:"
echo " 1. 確認 SSL 憑證已申請 (Let's Encrypt)"
echo " 2. 測試 https://awoooi.wooo.work"
echo ""