#shell#ai_agents#ai_assisted_development#anthropic#claude#claude_code#game_design#game_development#gamedev#godot#indie_game_dev#unity#unreal_engine
Claude Code Game Studios turns one Claude Code session into a full game dev team with 49 specialized agents, 72 skills, 12 hooks, and 11 rules for engines like Godot, Unity, and Unreal. Use slash commands like `/start`, `/brainstorm`, or `/dev-story` for design, coding, QA, and release—agents ask questions, show options, and get your approval to stay organized. You benefit by building games solo with pro structure, catching errors early, and shipping faster without chaos.
https://github.com/Donchitos/Claude-Code-Game-Studios
🚀 Вышел стабильный JavaScript движок от Google для Android
Новая стабильная библиотека Jetpack JavaScript Engine позволит разработчикам выполнять JS код в изолированной и ограниченной среде.
class MainActivity : ComponentActivity() {
// Теперь nullable, без lateinit
private var jsSandbox: JavaScriptSandbox? = null
private var jsIsolate: JavaScriptIsolate? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
if (!JavaScriptSandbox.isSupported()) {
Log.e("JS", "JavaScriptSandbox не поддерживается")
return
}
lifecycleScope.launch {
// Создаём и сохраняем в nullable-поле
jsSandbox = JavaScriptSandbox
.createConnectedInstanceAsync(applicationContext)
.await()
jsIsolate = jsSandbox?.createIsolate()
// При выполнении гарантируем, что jsIsolate != null
val result: String = jsIsolate
?.evaluateJavaScriptAsync(JS_SCRIPT_SCRING)
?.await()
?: "Ошибка: isolate не инициализирован"
Log.d("JS", "Результат выполнения: $result")
}
}
override fun onDestroy() {
super.onDestroy()
// Закрываем только если не null
jsIsolate?.close()
jsSandbox?.close()
}
}
#jetpack#js