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.
npx -y skills add viknesh20-20/claude-code-tool-kit --skill convert-codeAssembled 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
- Read the source file completely
- 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 Pattern | Target Equivalent |
|---|---|
| Python list comprehension | Java streams / Go slices / Rust iterators |
| JS Promise.all | Python asyncio.gather / Go goroutines+WaitGroup / Rust tokio::join |
| Python dict | Go map / Rust HashMap / Java Map |
| JS destructuring | Go multiple returns / Python tuple unpacking |
| Python decorator | Java annotation / Go middleware / Rust macro |
| C# LINQ | Python generators / JS array methods / Rust iterators |
| Ruby blocks | Python context managers / Go defer / Rust closures |
Step 3: Handle Dependencies
For each import/dependency in the source:
- Find the equivalent package/library in the target ecosystem
- If no direct equivalent exists, note it and implement the functionality
- Map API calls to the target library's conventions
Step 4: Convert Error Handling
Different languages handle errors differently:
| Language | Pattern |
|---|---|
| Python | try/except, raise |
| JavaScript/TypeScript | try/catch, throw, Promise rejection |
| Go | Multiple return values (value, error) |
| Rust | Result<T, E>, Option<T>, ? operator |
| Java/C# | try/catch, checked/unchecked exceptions |
| Ruby | begin/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
- Write the converted file with proper formatting
- Add a header comment noting the source and conversion
- Include all necessary imports
- Preserve comments (translate them to the target language's convention)
- 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