70 Claude Code sub-agents that think in Turkish rather than translate into it - they know PowerShell 5.1 has no &&, that cp1254 kills a Python tool before its first line prints, and that a heredoc eats backslashes. Plus 3 commands, 2 skills and an eval suite. One source, exported to Cursor, OpenCode, Copilot and Codex.
- 71 sub-agents that think in Turkish rather than translate into it
- Encodes the traps that actually bite on Turkish Windows: no && in PowerShell 5.1, cp1254 killing a tool before its first line, heredocs eating backslashes
agent-skillsai-agentsclaudeclaude-codecodexcursordeveloper-toolsgithub-copilot
Godot reports a broken resource reference only when that scene loads, and a dead signal connection never at all. godot-refcheck reads the project files instead: missing paths, case-only breakage, uid problems, connections to nodes that are gone. It repairs the ones with a single provable answer.
- Eleven checks over .tscn, .tres, project.godot, .import, plugin.cfg, GDScript and shaders, in both the Godot 3 and Godot 4 formats
- Node paths resolve through instanced, inherited and placeholder scenes, so a dead signal connection is found without ever calling a healthy one broken
cigamedevgodotgodot-enginegodot4linterrustsarif
The engine that keeps every repository on this account moving forward: it measures what each one can currently do, ranks where the headroom is, and refuses to record work that no check actually verified.
- Twelve signals that measure a repository without executing anything inside it, each returning the evidence behind its number and null rather than a guess
- Work records with three rules enforced in code: advanced needs the commit to have moved, advanced needs a check that ran and exited zero, no-change needs a stated reason
continuous-improvementdeveloper-toolsgithubrepository-maintenancezero-dependency
Which model, provider, params and job made this file - written into the file itself, so the record outlives the database row. PNG gets a lossless text chunk, JPEG a private APP1 marker spliced into container bytes with no re-encoding, MP4/MOV a uuid box appended after the media data so the absolute chunk offsets in moov stay valid, everything else a sidecar. Honest about what C2PA does that this does not. 125 tests.
- Which model, provider, parameters and job made this file - written into the file itself, so the record outlives the database row
- PNG gets a lossless text chunk; JPEG gets a private APP1 marker spliced into container bytes with no re-encoding
ai-transparencyaudit-trailc2paclicontent-authenticityexifffmpeggenerative-ai
Checks what a GitHub repository claims about itself - install commands, badges, links, releases, published sites - against what is actually there. Six checks over the GitHub API, no clone, zero dependencies.
- Checks a README's install commands against PyPI and npm, so the first command a visitor runs is one that still resolves
- Only fenced code blocks count as instructions: a sentence mentioning a command is discussing it, not asking anyone to run it
ciclideveloper-toolsdocumentationgithubgithub-actionslink-checkerlinter
A pipeline is a plain YAML DAG in git, not a diagram in a visual editor - and it is validated before it runs. A step that reads another step's result without declaring the dependency is rejected at load time, typo and all. Layers run concurrently, capped and backed off so width never becomes a burst. 72 tests.
- A pipeline is a plain YAML DAG in git, not a diagram in a visual editor
- Validated before it runs: a step reading another step's result without declaring the dependency is rejected at load time, typo and all
automationdaggenerative-aigitopsinfrastructure-as-codejob-orchestrationorchestrationpipeline
Fire one request at N model backends at once and read latency, success and output side by side. --rubric adds a judge model returning pass/fail, a 0-1 score and a reason, so you compare quality too, not just who answered first. Every failure carries an error_type a script can branch on. CLI: mch. 74 tests.
- Fires one request at N model backends at once and puts latency, success and output side by side
- --rubric adds a judge model returning pass/fail, a 0-1 score and a reason, so quality is compared too
benchmarkingclideveloper-toolsevaluationgenerative-ailatencyllmllm-evaluation
Your prompts deserve git diff, not a database row. Templates as plain YAML, rendered through Jinja's SandboxedEnvironment with StrictUndefined so a typo'd variable fails loudly instead of rendering blank - plus a ${var} form that keeps an integer an integer instead of stringifying it. CLI: ptm. 61 tests.
- Templates as plain YAML, so a prompt change is a diff in a pull request rather than a database row
- Rendered through Jinja's SandboxedEnvironment with StrictUndefined: a typo'd variable fails loudly instead of rendering blank
clideveloper-toolsgitopsjinja2llmllmopsprompt-engineeringprompt-templates