Skip to content

Instantly share code, notes, and snippets.

View Ylarod's full-sized avatar
🐒
busy working

Ylarod Ylarod

🐒
busy working
  • Canada
  • 00:27 (UTC -05:00)
View GitHub Profile
@Ylarod
Ylarod / CMakePresets.json
Last active August 5, 2025 23:31
Android cross compile env setup for CLion
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21
},
"configurePresets": [
{
"name": "android-base",
@Ylarod
Ylarod / codex-cli.js
Last active February 26, 2026 09:38
codex-cli transformer for claude-code-router
class CodexCLITransformer {
name = "codex-cli";
constructor(options) {
this.options = options || {};
this.debug = this.options.debug || false;
// Reasoning configuration with validation
this.reasoning = this.validateReasoningConfig(this.options.reasoning || {});
}