Your First Win
Outcome: You complete a real AI-assisted task AND understand Markdown
Part 1: Let's cook!
Lets put this to the test!
Step 1: Create a Test File
- In VS Code, right-click on your personal repo folder
- Click "New Folder" → name it
test - Right-click on the
testfolder - Click "New File" → name it
test.md
Why .md? The .md extension means "Markdown." It's like a Google Doc for GitHub. 99% of the files you create will be .md files.
Step 2: Open Claude Code
- Look for the Claude Code panel (usually on the right side or bottom)
- Or press Cmd + Shift + P and type "Claude Code"
You should see a chat interface. This is your AI assistant.
Step 3: Give Claude a Task
Think of something you're actually working on. A project, a document you need to write, research you need to do.
Activate Wispr Flow: Press FN + Space and talk naturally:
"Hey, I need you to help me create a summary of [your topic]. I want you to research this and give me a comprehensive overview. Write the output to my test.md file."
Or type it out if you prefer.
Pro tip: Add this line at the end:
"Make a comprehensive to-do list for yourself to complete this task."
This makes Claude organize its own work.
Step 4: Provide Context (Optional but Powerful)
If you have a relevant file (notes, transcript, data):
- Find the file in your VS Code Explorer
- Right-click → Copy Path
- Go back to your prompt
- Press Shift + Enter to add a new line
- Paste: "Here's some context: [paste path]"
Step 5: Watch It Work
Press Enter and watch Claude:
- Create a to-do list for itself
- Research or analyze
- Write content to your test.md file
That's it. You just gave an instruction, and an AI agent executed a multi-step task for you.
Step 6: Turn it into Ppt Deck w/brand guidelines
Step 7: Turn it into ASCII Diagrams
Part 2: Understanding Markdown
Now let's look at what Claude created—and learn about the format it used.
Open Your File with Mark Sharp
- Click on
test.mdin your Explorer - You'll see raw text with symbols like
#,**,- - Look for the M icon in the top-right of the editor tab
- Click it
Now you see it formatted: headings are big, bold text is bold, lists look like lists.
This is what Mark Sharp does—it renders Markdown so you can read it like a normal document.
Make Mark Sharp your default so you don't have to click the M icon every time:
- Right-click on any
.mdfile - Click "Open With..."
- Click "Configure Default Editor for .md"
- Select "Mark Sharp"
Now every Markdown file opens formatted.
What is Markdown?
Markdown is a simple formatting language. Here's the cheat sheet:
| What You Type | What You Get |
|---|---|
# Heading | Big heading |
## Subheading | Smaller heading |
**bold** | bold |
*italic* | italic |
- item | Bullet point |
1. item | Numbered list |
Why does this matter? Every document Claude creates will be in Markdown. It's the universal language of AI-generated content.
Bonus: Paste Markdown into Google Docs
You can take this Markdown and paste it into Google Docs with formatting preserved.
Enable Markdown paste in Google Docs:
- Open Google Docs
- Go to Tools → Preferences
- Check "Automatically detect Markdown"
- Click OK
Now:
- Copy the raw Markdown text from VS Code (not the rendered version)
- Paste into Google Docs
- Watch it format automatically
What You Just Learned
- How to give Claude a task with context
- How to have Claude write to a specific file
- What Markdown is and how to read it
- How to move content to Google Docs
Next: Let's understand WHY this worked—and why it's different from using AI in your browser.