Initial commit: LLM Automation Docs & Remediation Engine v2.0
Features: - Automated datacenter documentation generation - MCP integration for device connectivity - Auto-remediation engine with safety checks - Multi-factor reliability scoring (0-100%) - Human feedback learning loop - Pattern recognition and continuous improvement - Agentic chat support with AI - API for ticket resolution - Frontend React with Material-UI - CI/CD pipelines (GitLab + Gitea) - Docker & Kubernetes deployment - Complete documentation and guides v2.0 Highlights: - Auto-remediation with write operations (disabled by default) - Reliability calculator with 4-factor scoring - Human feedback system for continuous learning - Pattern-based progressive automation - Approval workflow for critical actions - Full audit trail and rollback capability
This commit is contained in:
103
mkdocs.yml
Normal file
103
mkdocs.yml
Normal file
@@ -0,0 +1,103 @@
|
||||
site_name: Documentazione Datacenter
|
||||
site_description: Documentazione tecnica completa del datacenter - Aggiornata automaticamente
|
||||
site_author: Automation Team
|
||||
site_url: https://docs.datacenter.local
|
||||
|
||||
# Repository
|
||||
repo_name: datacenter-docs
|
||||
repo_url: https://github.com/company/datacenter-docs
|
||||
edit_uri: edit/main/docs/
|
||||
|
||||
# Copyright
|
||||
copyright: Copyright © 2025 Company Name - Aggiornato automaticamente
|
||||
|
||||
# Configuration
|
||||
theme:
|
||||
name: material
|
||||
language: it
|
||||
palette:
|
||||
- media: "(prefers-color-scheme: light)"
|
||||
scheme: default
|
||||
primary: indigo
|
||||
accent: indigo
|
||||
toggle:
|
||||
icon: material/brightness-7
|
||||
name: Passa a modalità scura
|
||||
- media: "(prefers-color-scheme: dark)"
|
||||
scheme: slate
|
||||
primary: indigo
|
||||
accent: indigo
|
||||
toggle:
|
||||
icon: material/brightness-4
|
||||
name: Passa a modalità chiara
|
||||
|
||||
features:
|
||||
- navigation.instant
|
||||
- navigation.tracking
|
||||
- navigation.tabs
|
||||
- navigation.sections
|
||||
- navigation.expand
|
||||
- navigation.top
|
||||
- search.suggest
|
||||
- search.highlight
|
||||
- toc.follow
|
||||
- content.code.copy
|
||||
|
||||
icon:
|
||||
repo: fontawesome/brands/github
|
||||
logo: material/server-network
|
||||
|
||||
# Extensions
|
||||
markdown_extensions:
|
||||
- abbr
|
||||
- admonition
|
||||
- attr_list
|
||||
- def_list
|
||||
- tables
|
||||
- toc:
|
||||
permalink: true
|
||||
toc_depth: 4
|
||||
- pymdownx.details
|
||||
- pymdownx.highlight
|
||||
- pymdownx.superfences
|
||||
- pymdownx.tabbed:
|
||||
alternate_style: true
|
||||
|
||||
# Plugins
|
||||
plugins:
|
||||
- search:
|
||||
lang:
|
||||
- it
|
||||
- en
|
||||
- tags
|
||||
- git-revision-date-localized:
|
||||
enable_creation_date: true
|
||||
type: datetime
|
||||
|
||||
# Navigation
|
||||
nav:
|
||||
- Home: index.md
|
||||
- Infrastruttura:
|
||||
- Fisica: sections/01_infrastruttura_fisica.md
|
||||
- Networking: sections/02_networking.md
|
||||
- Server e Virtualizzazione: sections/03_server_virtualizzazione.md
|
||||
- Storage: sections/04_storage.md
|
||||
- Sicurezza e Compliance:
|
||||
- Sicurezza: sections/05_sicurezza.md
|
||||
- Backup e DR: sections/06_backup_disaster_recovery.md
|
||||
- Operations:
|
||||
- Monitoring: sections/07_monitoring_alerting.md
|
||||
- Database: sections/08_database_middleware.md
|
||||
- Procedure: sections/09_procedure_operative.md
|
||||
- Strategia:
|
||||
- Miglioramenti: sections/10_miglioramenti.md
|
||||
- API:
|
||||
- Documentazione API: api/index.md
|
||||
- Endpoints: api/endpoints.md
|
||||
|
||||
# Extra for LLM
|
||||
extra:
|
||||
llm_friendly: true
|
||||
structured_data: true
|
||||
api_endpoint: /api/v1/docs
|
||||
last_update_automated: true
|
||||
Reference in New Issue
Block a user