feat(skills): add kotlin-standards + swift-standards for mobile profile

- kotlin-standards: gradle build/test, ktlint/detekt, Android lint; company specifics TODO
- swift-standards: SwiftPM/xcodebuild, swiftformat/swiftlint, XCTest; company specifics TODO
- wire mobile profile -> kotlin+swift; 'all' now includes both; README matrix updated
- verified all six *-standards skills load via pi RPC
This commit is contained in:
2026-07-16 12:31:12 +03:00
parent fbf10b0521
commit e98e4ca9ae
4 changed files with 119 additions and 6 deletions

View File

@@ -118,11 +118,11 @@ case "$PROFILE" in
qa) # TODO: уточнить стек тестировщиков; по умолчанию — Python и TS (автотесты)
LANG_BUNDLED="python-standards typescript-standards"
;;
mobile) # TODO: добавить kotlin-standards/swift-standards и мобильные скилы
LANG_BUNDLED=""
mobile) # Android (Kotlin) + iOS (Swift)
LANG_BUNDLED="kotlin-standards swift-standards"
;;
*) # all: не гейтим, включаем все языковые скилы
LANG_BUNDLED="go-standards rust-standards python-standards typescript-standards"
LANG_BUNDLED="go-standards rust-standards python-standards typescript-standards kotlin-standards swift-standards"
;;
esac