Apply ai-persona-os preset 2 (executive assistant) with Russian personalization

This commit is contained in:
OpenClaw Assistant
2026-03-02 00:52:06 +03:00
parent 67562dc49c
commit 4a0ae884ae
13 changed files with 1464 additions and 292 deletions

79
.learnings/ERRORS.md Normal file
View File

@@ -0,0 +1,79 @@
# Errors
> Command and operation failures. Track to identify patterns.
---
## Entry Format
```markdown
## [ERR-YYYYMMDD-XXX] [category]
**Logged:** YYYY-MM-DD HH:MM
**Priority:** low | medium | high | critical
**Status:** pending | in_progress | resolved | promoted | wont_fix
**Area:** tool | api | permission | config | network | other
### Summary
One-line description of the error
### Error Output
```
[Paste actual error message]
```
### Context
What were you trying to do?
### Root Cause
[After investigation]
### Resolution
[How it was fixed]
```
---
## Active Errors
<!-- Add new errors here -->
---
## Patterns
> Recurring error types and standard fixes
### Permission Errors
- Check file/directory permissions
- Verify user context
- Check ACLs
### API Errors
- Verify credentials
- Check rate limits
- Validate request format
### Network Errors
- Check connectivity
- Verify DNS
- Check firewall/proxy
### Timeout Errors
- Check target availability
- Adjust timeout values
- Check for resource overload
---
## Resolved
<!-- Move fixed errors here for reference -->
---
*Every error is a chance to build resilience.*
---
*Part of AI Persona OS by Jeff J Hunter — https://os.aipersonamethod.com*