On branch main

new file:   documentation/LLM_Information.md
	modified:   main_dc/certbot/scripts/checkRenewCerts.sh
renew checkRenewCerts replace line with expirY_unix parse date formate
This commit is contained in:
2026-05-02 09:15:43 +05:00
parent d9a4a579b7
commit bffdf0ec6c
2 changed files with 55 additions and 1 deletions
+53
View File
@@ -0,0 +1,53 @@
# LLM Information
## Current LLM Configuration
Based on system analysis conducted on 2026-04-16, the following LLM (Large Language Model) is being used:
### Model Details
- **Model Name**: `sourcecraft_model`
- **Current Mode**: Architect (`architect`)
- **Mode Display Name**: 🏗️ Architect
- **System**: SourceCraft Code Assistant Agent
### Environment Context
- **Operating System**: Windows 11
- **Default Shell**: C:\WINDOWS\system32\cmd.exe
- **Workspace Directory**: d:/artifacts/tp
- **User Time Zone**: Asia/Yekaterinburg (UTC+5:00)
### Capabilities
The SourceCraft Code Assistant Agent is an experienced technical leader with capabilities including:
- Information gathering and context analysis
- Detailed planning and task breakdown
- Code writing and modification
- System operations and command execution
- File management and editing
- Web development and debugging
### Modes Available
The system supports multiple specialized modes:
1. **🏗️ Architect** (current) - Planning, design, and strategy
2. **💻 Code** - Code writing, modification, and refactoring
3. **❓ Ask** - Explanations, documentation, and technical questions
4. **🪲 Debug** - Troubleshooting and error diagnosis
5. **🪃 Orchestrator** - Complex multi-step project coordination
### Project Context
The current workspace contains a Docker-based hosting solution for multiple websites:
- yalarba.ru
- begushiybashkir.ru
- easysite102.ru
- valitovgaziz.ru
The project includes backend APIs in Go, frontend applications in Vue.js/Nuxt.js, and various supporting services (nginx, certbot).
### Analysis Method
This information was gathered through:
1. System environment details inspection
2. File structure analysis
3. Configuration file review (package.json, README.md)
4. Current mode and model identification from system metadata
### Last Updated
2026-04-16T15:25:15.218Z
+2 -1
View File
@@ -19,7 +19,8 @@ check_local_cert() {
fi
# Преобразуем дату истечения в UNIX-время
expiry_unix=$(date -d "$expiry_date" +%s)
# expiry_unix=$(date -d "$expiry_date" +%s)
expiry_unix=$(date -D "%b %d %H:%M:%S %Y %Z" -d "$expiry_date" +%s 2>/dev/null)
# Текущая дата в UNIX-времени
current_unix=$(date +%s)