restapi-translations
Управление переводами REST API ключей (rest_*) для MikoPBX. Автоматически находит отсутствующие русские ключи в RestApi.php и синхронизирует их с исходным кодом. Использовать при проверке переводов API, после добавления новых endpoints или перед релизом.
Install
mkdir -p .claude/skills/restapi-translations && curl -L -o skill.zip "https://mcp.directory/api/skills/download/6706" && unzip -o skill.zip -d .claude/skills/restapi-translations && rm skill.zipInstalls to .claude/skills/restapi-translations
About this skill
REST API Translation Management
Автоматическое управление русскими переводами REST API ключей для документации OpenAPI в MikoPBX.
What This Skill Does
- Extracts rest_ keys* from PBXCoreREST source code (~1589 unique keys)
- Validates translations comparing code keys with RestApi.php
- Finds missing keys (in code but not in RestApi.php) - 219 keys
- Finds unused keys (in RestApi.php but not used) - 358 keys
- Synchronizes RestApi.php adding/removing keys with backups
- Validates PHP syntax after changes
When to Use This Skill
Automatically activate when:
- User asks "check REST API translations" / "проверь переводы REST API"
- User says "sync RestApi.php" / "синхронизируй RestApi.php"
- User asks "find missing rest_* keys" / "найди отсутствующие ключи rest_*"
- After adding new REST API endpoints
- Before creating a new release
DO NOT activate when:
- User asks about general translation management (use
translationsskill) - User needs to translate to other languages (not Russian)
How It Works
Three-Step Workflow
cd .claude/skills/restapi-translations/scripts
# Step 1: Extract keys from code
python3 extract_keys.py
# Step 2: Validate translations
python3 validate_translations.py
# Step 3: Sync RestApi.php
python3 sync_translations.py --add-missing
Interactive Mode
./manage_translations.sh
# Menu:
# 1. Extract keys from source code
# 2. Validate translations
# 3. Add missing keys
# 4. Remove unused keys
# 5. Full sync (add + remove)
# 6. Preview changes (dry run)
# 7. Run all (extract + validate + sync)
Key Patterns
1. API Resource Descriptions
'rest_Extensions_ApiDescription' => 'Комплексное управление внутренними номерами...'
Pattern: rest_{ResourceName}_ApiDescription
2. Operation Summaries & Descriptions
'rest_ext_GetList' => 'Получить список внутренних номеров'
'rest_ext_GetListDesc' => 'Получить пагинированный список всех...'
Pattern: rest_{abbr}_{Operation}[Desc]
3. HTTP Responses
'rest_response_200_get' => 'Запись успешно получена'
'rest_response_404_not_found' => 'Запись не найдена'
Pattern: rest_response_{code}_{type}
4. Parameters, Schemas, Security
'rest_param_name' => 'Название'
'rest_schema_extension_list' => 'Список внутренних номеров'
'rest_security_bearer' => 'JWT Bearer Token аутентификация'
Core Principles
✅ DO:
- Run extraction before validation
- Use --dry-run to preview changes
- Translate placeholder text after adding keys
- Review unused keys carefully (might be for future features)
❌ DON'T:
- Skip extraction step (validation needs extracted_keys.json)
- Remove unused keys without reviewing them
- Edit RestApi.php manually (use sync script)
- Ignore
[ТРЕБУЕТ ПЕРЕВОДА]placeholders
Typical Workflow
When Creating New Endpoint
# 1. Write controller
vim src/PBXCoreREST/Controllers/MyResource/RestController.php
# 2. Extract + validate + sync
./manage_translations.sh all
# 3. Translate placeholders
grep "ТРЕБУЕТ ПЕРЕВОДА" src/Common/Messages/ru/RestApi.php
vim src/Common/Messages/ru/RestApi.php
# 4. Verify
python3 validate_translations.py
# 5. Commit
git add src/PBXCoreREST/Controllers/MyResource/
git add src/Common/Messages/ru/RestApi.php
git commit -m "feat: add MyResource REST API endpoints"
Monthly Maintenance
# Check for drift
./manage_translations.sh validate
# Review unused keys with team
# Clean up if agreed
./manage_translations.sh sync --remove-unused
Before Release
# Complete check
./manage_translations.sh all
# Ensure no placeholders
grep "ТРЕБУЕТ ПЕРЕВОДА" src/Common/Messages/ru/RestApi.php
# Commit if changes
git add src/Common/Messages/ru/RestApi.php
git commit -m "chore: sync REST API translations"
Placeholder Generation
Script generates context-aware Russian placeholders:
GetList→ "Получить список [ТРЕБУЕТ ПЕРЕВОДА]"Create→ "Создать запись [ТРЕБУЕТ ПЕРЕВОДА]"Update→ "Обновить запись [ТРЕБУЕТ ПЕРЕВОДА]"Delete→ "Удалить запись [ТРЕБУЕТ ПЕРЕВОДА]"_ApiDescription→ "Описание API ресурса [ТРЕБУЕТ ПЕРЕВОДА]"rest_response_→ "Описание HTTP ответа [ТРЕБУЕТ ПЕРЕВОДА]"
Always translate [ТРЕБУЕТ ПЕРЕВОДА] to proper Russian text!
Safety Features
- Automatic Backups -
RestApi.php.bak.YYYYMMDD_HHMMSSbefore changes - PHP Syntax Validation - Auto-restores if invalid
- Dry Run Mode - Preview with
--dry-run - User Confirmation - Asks before removing keys
- Rollback Support - Manual restore from
.bakfiles
Output Examples
Validation Output
======================================================================
VALIDATION RESULTS
======================================================================
✅ Valid keys: 1370/1589 (86%)
❌ Missing keys: 219 (in code, not in RestApi.php)
⚠️ Unused keys: 358 (in RestApi.php, not used in code)
Missing Keys:
rest_ext_GetList (Controllers/Extensions/RestController.php:123)
rest_fw_CreateDesc (Controllers/Firewall/RestController.php:89)
Sync Output
======================================================================
REST API TRANSLATION SYNCHRONIZATION
======================================================================
➕ Adding 219 missing keys...
✅ Backup created: RestApi.php.bak.20251024_143022
🔍 Validating PHP syntax...
✅ PHP syntax is valid
Next steps:
1. Review changes: git diff src/Common/Messages/ru/RestApi.php
2. Translate placeholder text from Russian
3. Run validate_translations.py to verify
Troubleshooting
Error: "Extracted keys file not found"
Fix: Run python3 extract_keys.py first
Error: "PHP syntax error detected"
Fix: Script auto-restores from backup
Too many unused keys
Fix: Review carefully, check if for future features, ask team
Placeholders not translated
Fix: grep -n "ТРЕБУЕТ ПЕРЕВОДА" src/Common/Messages/ru/RestApi.php and edit
Integration with Other Skills
openapi-analyzer- Get endpoint list, validate completenessendpoint-validator- Check translation coveragetranslations- Propagate to other 29 languages
File Structure
.claude/skills/restapi-translations/
├── SKILL.md # This file
├── README.md # User documentation
├── QUICKSTART.md # Quick start guide
└── scripts/
├── extract_keys.py # Extract keys from code
├── validate_translations.py # Validate translations
├── sync_translations.py # Sync RestApi.php
├── manage_translations.sh # Interactive wrapper
└── extracted_keys.json # Generated data
Statistics
Current state:
Files scanned: 479 PHP files
Keys found: 2876 total usages
Unique keys: 1589 unique keys
Valid keys: 1370/1589 (86%)
Missing keys: 219 need to be added
Unused keys: 358 could be removed
Goal: 100% Valid keys (perfect sync)
Quality Checklist
Before considering complete:
- Extraction run successfully
- Validation shows 100% valid keys
- No missing keys reported
- Unused keys reviewed
- All placeholders translated
- No
[ТРЕБУЕТ ПЕРЕВОДА]markers - PHP syntax is valid
- Changes committed
Command Reference
# Interactive mode
./manage_translations.sh
# Command-line mode
./manage_translations.sh extract
./manage_translations.sh validate
./manage_translations.sh sync --add-missing
./manage_translations.sh sync --remove-unused
./manage_translations.sh all
# Direct Python
python3 extract_keys.py
python3 validate_translations.py
python3 sync_translations.py --add-missing --dry-run
python3 sync_translations.py --add-missing --remove-unused
Success Criteria
Translation management succeeds when:
- Extraction runs without errors (479 files)
- Validation shows 100% valid keys
- No missing keys remain
- Unused keys reviewed and handled
- No placeholder markers left
- PHP syntax valid
- Git diff clean and meaningful
Remember
- Extract before validate - Validation needs extracted_keys.json
- Validate before sync - Know what will change
- Dry run first - Preview with --dry-run
- Translate placeholders - Don't leave [ТРЕБУЕТ ПЕРЕВОДА]
- Review unused keys - Might be for future features
- Backup is automatic - RestApi.php.bak.* created
- PHP validation automatic - Script checks syntax
Additional Resources
- README.md - Complete documentation
- QUICKSTART.md - Quick examples
- SUMMARY.md - Project summary
More by mikopbx
View all skills by mikopbx →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversTransform any OpenAPI specification into callable tools. Easily test an API, handle authentication, and generate schemas
Magic-API is an advanced API documentation platform for managing, debugging, and exploring your swagger API and openapi
Integrate Swagger/OpenAPI with your REST API to explore endpoints, fetch docs, and execute authenticated requests easily
eToro MCP Server: Model Context Protocol tools to access eToro API endpoints—fetch portfolios, search instruments, get i
ioBroker MCP Server — a configurable ioBroker server and smart home web server for home automation. Supports HTTP/HTTPS,
Createve.AI Nexus unifies REST API and MCP, integrating APIs for AI workflow automation with tools like Calendly API and
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.