From bffdf0ec6c99b4674a312755ff127a36a451d81d Mon Sep 17 00:00:00 2001 From: valitovgaziz Date: Sat, 2 May 2026 09:15:43 +0500 Subject: [PATCH] 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 --- documentation/LLM_Information.md | 53 ++++++++++++++++++++++ main_dc/certbot/scripts/checkRenewCerts.sh | 3 +- 2 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 documentation/LLM_Information.md diff --git a/documentation/LLM_Information.md b/documentation/LLM_Information.md new file mode 100644 index 0000000..eb4fb40 --- /dev/null +++ b/documentation/LLM_Information.md @@ -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 \ No newline at end of file diff --git a/main_dc/certbot/scripts/checkRenewCerts.sh b/main_dc/certbot/scripts/checkRenewCerts.sh index d37ceb9..d8271ba 100644 --- a/main_dc/certbot/scripts/checkRenewCerts.sh +++ b/main_dc/certbot/scripts/checkRenewCerts.sh @@ -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)