agentsclimarketplace

Convert code

Skill viknesh20-20/claude-code-tool-kit/.claude/skills/convert-code

Production-ready Claude Code configuration. 12 original agents, 200+ slash-command skills, 45+ MCP servers, 14 plugins, design + 3D + WebGPU + GSAP + RAG tooling. One-command Node.js installer for premium websites, SaaS apps, AI agents. Free, MIT, stack-agnostic.

Install
npx -y skills add viknesh20-20/claude-code-tool-kit --skill convert-code

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Converts code between programming languages while preserving logic, error handling, and idiomatic patterns. Use when migrating modules between languages or frameworks.

SKILL.md

3.3 KB, as published. Nobody here has run it

Code Conversion

Instructions

Step 1: Analyze Source Code

  1. Read the source file completely
  2. Identify:
    • All functions, classes, and types
    • External dependencies and their equivalents in the target language
    • Error handling patterns
    • Async/concurrent patterns
    • Data structures and their representations
    • Tests (if present)

Step 2: Map Language Idioms

Don't transliterate — convert to idiomatic target code:

Source PatternTarget Equivalent
Python list comprehensionJava streams / Go slices / Rust iterators
JS Promise.allPython asyncio.gather / Go goroutines+WaitGroup / Rust tokio::join
Python dictGo map / Rust HashMap / Java Map
JS destructuringGo multiple returns / Python tuple unpacking
Python decoratorJava annotation / Go middleware / Rust macro
C# LINQPython generators / JS array methods / Rust iterators
Ruby blocksPython context managers / Go defer / Rust closures

Step 3: Handle Dependencies

For each import/dependency in the source:

  1. Find the equivalent package/library in the target ecosystem
  2. If no direct equivalent exists, note it and implement the functionality
  3. Map API calls to the target library's conventions

Step 4: Convert Error Handling

Different languages handle errors differently:

LanguagePattern
Pythontry/except, raise
JavaScript/TypeScripttry/catch, throw, Promise rejection
GoMultiple return values (value, error)
RustResult<T, E>, Option<T>, ? operator
Java/C#try/catch, checked/unchecked exceptions
Rubybegin/rescue/ensure
Elixir{:ok, value} / {:error, reason} tuples

Convert error handling to the idiomatic pattern of the target language.

Step 5: Convert Types

Map type systems:

  • Dynamic → Static: Infer and add explicit types
  • Static → Dynamic: Simplify but add runtime checks where safety-critical
  • Generics: Map to target language's generic system
  • Null safety: Map Optional/Maybe/Option patterns appropriately

Step 6: Generate Output

  1. Write the converted file with proper formatting
  2. Add a header comment noting the source and conversion
  3. Include all necessary imports
  4. Preserve comments (translate them to the target language's convention)
  5. Generate a companion test file if tests existed in the source

Step 7: Conversion Notes

Document:

  • Patterns that couldn't be directly converted and the approach taken
  • Dependencies that have no direct equivalent
  • Behavioral differences to be aware of
  • Performance characteristics that differ between implementations

Rules

  • Idiomatic over literal — code should look like it was written by a native developer
  • Preserve behavior — the converted code must do the same thing
  • Preserve tests — convert tests too, not just implementation
  • Flag risks — note where behavior might differ (floating point, string encoding, concurrency)
  • Don't assume — if unsure about a language feature, ask rather than guess

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.