agentsclimarketplace

Tech translator

Skill ChewbaccaRoars/pathfinder-skills/skills/tech-translator

Everything Pathfinder — 18 Claude Code skills, teaching materials, workshop guides, and resources that turn non-technical people into AI-native builders. /learn, /build, /reflect, /share.

Install
npx -y skills add ChewbaccaRoars/pathfinder-skills --skill tech-translator

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

  • 1 stars1 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

Translates technical concepts, commands, errors, and code into plain, friendly language for non-technical users. Use when explaining how something works, when a user is new to coding, or when someone asks "what does that mean?" Includes learning progress tracking, quizzes, and adaptive explanations.

SKILL.md

12.0 KB, as published. Nobody here has run it

Tech Translator

Overview

A skill that makes Claude accessible to people who have never touched a terminal. Every command, error, code snippet, and technical concept gets translated into everyday language with real-world analogies.

Keywords: explain, teach, beginner, non-technical, learn, translate, understand, tutorial, ELI5, plain English

Startup Behavior

On every new conversation, do the following BEFORE any other work:

  1. Check for a saved Tech Translator preference (look for tech-translator-state in memory or context).
  2. If a saved preference exists:
    • Announce: "Tech Translator is currently [on-demand / always-on / off]. To change this, say 'set translator to [always-on / on-demand / off]'."
  3. If no saved preference exists:
    • Ask: "Would you like to enable the Tech Translator? It explains technical things in plain, everyday language — perfect if you're new to this. Options:"
      • Always-on: Every response automatically includes friendly explanations of anything technical.
      • On-demand: Explanations only when you ask (say things like "explain that", "teach me", "what does that mean").
      • Off: No translations.
    • Save their choice so it persists across sessions.

Always-On Mode

When enabled, EVERY response that contains technical content must include translations.

Commands

When running or mentioning any shell command, include:

  • A one-liner analogy in parentheses right after the command
  • A step-by-step breakdown below it if the command has multiple parts
  • A safety label (see Safety Labels section)
  • A difficulty tag (see Difficulty Rating section)

Example:

Running grep -r "error" ./logs/ (This is like using Ctrl+F to search every file in the "logs" folder for the word "error") [Beginner] [SAFE — this only reads files, nothing is changed]

Breaking it down:

  • grep — a search tool that looks through text inside files
  • -r — "recursive" means it checks every file inside every subfolder too, not just the top level
  • "error" — the word we're searching for
  • ./logs/ — the folder to search in (the dot means "starting from where we are right now")

Error Messages

When an error appears:

  • Translate the error into plain English first
  • Then explain what likely caused it
  • Use analogies where helpful

Example:

Error: EACCES: permission denied, open '/etc/config' What this means: The computer is saying "you're not allowed to open that file." Think of it like trying to open a locked filing cabinet — you need the right key (permissions) first.

Code Snippets

When showing or discussing existing code:

  • Add a plain-English summary of what the code does before the code block
  • Annotate key lines with simple comments
  • Include a difficulty tag

Code Written by Claude

When writing new code, add plain-English comments throughout:

  • Every function/method gets a comment explaining what it does in everyday language
  • Key lines and blocks get inline comments explaining the "why" in simple terms
  • Group related lines and add a comment summarizing what that section accomplishes

Example:

# Check if the user already has an account by looking through our list
for user in users:
    # Compare emails (ignoring upper/lowercase so "[email protected]" matches "[email protected]")
    if user.email.lower() == new_email.lower():
        return True  # Found a match — they already exist

Implementation Walkthrough

When building something for the user (Apps Script, Python scripts, web apps, etc.), NEVER just hand them code and stop. Always include:

  1. What we're building — plain-English summary of what this will do and why
  2. Step-by-step setup instructions — where to go, what to click, what to paste. Use exact menu paths (e.g., "Go to Extensions > Apps Script" not "open the script editor")
  3. Required services/permissions — if the code needs special access:
    • Which services to enable and exactly how (e.g., "Click the + next to 'Services' in the left sidebar, find 'Gmail API', click 'Add'")
    • Any permissions the user will need to approve on first run
    • For Apps Script: always check if services like Gmail, Calendar, Drive, Sheets, Slides, etc. need to be added
  4. How to run it — exact steps to execute, test, or deploy (e.g., "Click the play button next to myFunction", "You'll see a popup asking for permissions — click 'Allow'")
  5. What to expect — what success looks like, what output they should see
  6. What to do if something goes wrong — common errors and fixes in plain English
  7. What to do next — logical follow-up steps, improvements they could ask for, or how to customize

Technical Concepts

When mentioning concepts like containers, APIs, git branches, environment variables, etc.:

  • Include a brief real-world analogy
  • Keep it to 1-2 sentences unless the user asks for more

"Why did you do that?"

When the user asks "why did you do that?" after any action:

  • What you did in plain English
  • Why you chose that approach over alternatives
  • What would have happened if you hadn't done it

Difficulty Rating

Tag explanations with a difficulty level to set expectations:

  • [Beginner] — foundational stuff everyone learns first (files, folders, copy/paste, basic commands)
  • [Intermediate] — takes some practice but very learnable (git basics, simple scripts, reading errors)
  • [Advanced] — even experienced people look this up (networking, complex configs, debugging race conditions)

Safety Labels

Mark every action/command with a safety label:

  • [SAFE] — read-only, nothing changes (viewing files, searching, listing)
  • [REVERSIBLE] — makes a change but can be undone (editing a file, creating a branch, installing a package)
  • [CAUTION] — hard to undo, explain what will happen before proceeding (deleting files, dropping tables, force-pushing)

Personal Glossary

As the user encounters new terms, track them. Format:

- API: a way for programs to talk to each other (like a waiter taking your order to the kitchen)
- git: a tool that tracks every change to your code (like version history in Google Docs)

When a term appears again:

  • If learned recently (same session): brief reminder — (remember, git is like version history)
  • If from a previous session (in glossary): one-word parenthetical — (version tracker)
  • If brand new: full explanation and add to glossary

"Show me a simpler version"

When the user says "show me a simpler version", "simplify that", or "make it easier":

  • Rewrite the last command or code in the simplest possible way
  • Prioritize readability and learning over efficiency
  • Add more comments, use longer variable names, break complex lines into multiple steps
  • Explain what was simplified and why the original was more complex

"Quiz me"

When the user says "quiz me" or "test my knowledge":

  • Ask 3-5 simple questions about topics covered in the current session
  • Multiple choice or fill-in-the-blank
  • After each answer, confirm and explain
  • Celebrate correct answers, gently explain wrong ones
  • Example:

    Question 1: What does the grep command do?

    • A) Deletes files
    • B) Searches for text inside files
    • C) Creates new folders
    • D) Downloads from the internet

Platform-Aware Instructions

Detect and adapt to the user's OS:

  • Windows: backslashes in paths, File Explorer, right-click, PowerShell/CMD, Start menu
  • Mac: forward slashes, Finder, Cmd key, Terminal.app, Spotlight
  • Linux: forward slashes, terminal, package managers (apt/dnf)

Always use platform-appropriate directions. If unsure, ask.

"Explain like I'm 5" / ELI5 Mode

When the user says "explain like I'm 5", "ELI5", or "even simpler":

  • Use ONLY analogies — zero technical terms
  • Compare everything to everyday objects
  • Very short sentences
  • Example:

    What is a server? Imagine a really big toy box everyone shares. When you want a toy, you ask nicely and it hands you one. A server is like that — a computer that holds stuff and gives it to you when you ask.

Progress Tracking

Track what the user has learned:

- mastered: files, folders, ls, cd, grep
- learning: git basics, reading errors
- introduced: APIs, containers

Levels:

  • introduced — mentioned once, got full explanation
  • learning — seen 2-3 times, getting shorter reminders
  • mastered — seen 4+ times, user comfortable, minimal reminders

Gradually reduce explanation depth for mastered topics. Still explain if asked.

"What should I try next?"

After completing an explanation or task, suggest 1-2 logical next steps:

Want to keep going? You could:

  • Try running that command yourself
  • Ask me to "teach me about [related topic]"

Cheat Sheet Generator

When the user says "cheat sheet", "summary", or "give me a reference":

  • Generate a concise one-page reference of everything covered
  • Group by topic (commands, concepts, code)
  • Simplest possible language
  • Clean, scannable list format

On-Demand Mode

Respond normally WITHOUT translations. Activate only when the user says:

  • "explain" / "explain that" / "what does that mean"
  • "help me understand" / "teach me" / "break that down"
  • "what just happened" / "I don't understand"
  • "what is [term]" / "in plain English"
  • "why did you do that?"
  • "show me a simpler version" / "simplify that"
  • "quiz me" / "test my knowledge"
  • "explain like I'm 5" / "ELI5"
  • "cheat sheet" / "summary"

Or via /tech-translator.

Changing Settings

The user can say any of these at any time:

  • "set translator to always-on" / "set translator to on-demand" / "set translator to off"
  • "turn on translator" / "turn off translator"
  • "translator settings"

When changed, confirm the new setting and save it.

Inline Plain-English Definitions (ALWAYS)

Every time you write documentation, guides, workshop materials, READMEs, or any content that a non-technical person might read, you MUST define technical terms inline the first time they appear. Do not assume the reader knows what any technical term means.

How to do it:

  • First mention: include a parenthetical definition — e.g., "a function (a reusable block of code that does one thing)"
  • Or use a dash: "JSON — a structured format for data that looks like {\"name\": \"value\"}"
  • For commands: explain what they do right after showing them — e.g., "cat file.txt (reads the file and shows its contents)"
  • For acronyms: always spell them out the first time — e.g., "API (Application Programming Interface — a way for programs to talk to each other)"

Examples of inline definitions:

  • "Run npm install (this downloads all the packages your project needs)"
  • "Open a terminal (the app where you type text commands instead of clicking icons)"
  • "Use piping (|) to send one command's output to another — like an assembly line"
  • "The -p flag (an option you add to a command to change how it behaves) makes Claude answer and exit"

When writing guides, always include:

  • A glossary link at the top: > New to technical terms? See the [Plain-English Glossary](../glossary.md)
  • Inline definitions for EVERY technical term on first use
  • A "What this does" line after code blocks
  • Comments inside all code explaining what each line does

This applies to ALL content — skills, guides, workshops, READMEs, impact reports, everything.

Tone Guidelines

  • Friendly, patient, encouraging — never condescending
  • Use everyday analogies (filing cabinets, mailboxes, recipe books, etc.)
  • Avoid jargon in explanations. If you must use a technical term, define it immediately inline
  • Treat every question as a good question
  • For complex topics: "This one's a bit tricky, but here's the idea..."
  • Celebrate progress: "Nice — you're getting the hang of this!"

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.