Advanced Tutorial: SuperDuck.AI CLI with Vi/Vim

Introduction

The sd command line tool transforms your Vi/Vim editing experience by seamlessly integrating AI capabilities directly into your workflow. This tutorial explores how to leverage this powerful combination to enhance your productivity, improve your writing, and simplify complex editing tasks.

What is the sd command? This utility reads from STDIN, processes text through an AI assistant, and writes the result to STDOUT. When paired with Vi/Vim's filtering capabilities, it becomes a natural extension of your editing environment.

Installation and Setup

Before diving into usage examples, ensure you have the sd command line tool installed and properly configured:

# Installation may vary depending on your OS and distribution method

# Verify installation
sd --version

To check if the tool is properly installed, try a simple echo test:

echo "Hello, AI!" | sd 'Translate to French'

Core Syntax

The fundamental pattern for using sd with Vi/Vim is:

:[range]!sd '[instruction]'

Where:

Essential Techniques

Processing the Entire File

:%!sd 'Improve this text'

This takes your entire buffer (%), sends it through the AI with the instruction "Improve this text", and replaces the content with the result.

Working with Specific Lines

:10,30!sd 'Summarize these paragraphs'

This processes only lines 10 through 30, replacing them with a summary.

Visual Mode Selection

For more precise control:

  1. Press v to enter visual mode
  2. Select the text you want to process
  3. Press : (a colon will appear with '<,'>)
  4. Complete the command: '<,'>!sd 'Rewrite in a professional tone'

Inserting Generated Content

To add new AI-generated content without replacing existing text:

:r !sd 'Write a function that calculates fibonacci numbers in Python'

This reads (r) the output of the AI command into your buffer at the current cursor position.

Advanced Workflow Techniques

Keyboard Mappings

Add these to your .vimrc for rapid AI assistance:

" Improve writing on current paragraph
nnoremap <leader>sd vip:!sd 'Improve this writing'<CR>

" Generate documentation for selected code
vnoremap <leader>doc :!sd 'Write documentation for this code'<CR>

" Fix spelling and grammar in selection
vnoremap <leader>fix :!sd 'Fix spelling and grammar'<CR>

" Explain selected code
vnoremap <leader>exp :!sd 'Explain what this code does in simple terms'<CR>

" Simplify complex text
vnoremap <leader>simp :!sd 'Simplify this text for clarity'<CR>

" Generate a test for selected function
vnoremap <leader>test :!sd 'Write unit tests for this function'<CR>

Command Mode Abbreviations

Create shorthand commands for frequently used operations:

" Add to .vimrc
command! -range=% Improve <line1>,<line2>!sd 'Improve this writing'
command! -range=% Summarize <line1>,<line2>!sd 'Summarize this text concisely'
command! -range=% Proofread <line1>,<line2>!sd 'Fix grammar, spelling, and style issues'
command! -range=% Simplify <line1>,<line2>!sd 'Simplify this content for clarity'

Usage:

:Improve
:5,20Summarize
:Proofread

AI-Powered Macros

Combine with Vi/Vim macros for complex transformations:

" First, create a macro that uses AI to process text
" Example: Record a macro to convert a comment into documentation
qq                          " Start recording to register q
vip                         " Select paragraph
:!sd 'Convert this comment to proper documentation'<CR>  " Process with AI
q                           " Stop recording

" Then use the macro on multiple parts of your file
:%g/\/\/ TODO:/normal @q   " Run the macro on every line containing "// TODO:"

Practical Use Cases

Code Refactoring

Command: :10,50!sd 'Refactor this code to use modern JavaScript features and improve performance'

Description: Transform legacy code into more maintainable and efficient modern code.

Language Translation

Command: :%!sd 'Translate this document to Spanish, maintaining the original formatting'

Description: Quickly translate documents while preserving structure and formatting.

Documentation Generation

Command: :1,20!sd 'Generate comprehensive JSDoc comments for this function'

Description: Create detailed documentation for your code to improve maintainability.

Content Transformation

Command: :%!sd 'Convert this technical specification to a client-friendly project proposal'

Description: Reformatting technical content for different audiences without starting from scratch.

Error Fixing

Command: :100,120!sd 'Fix the bugs in this function and explain the issues'

Description: Identify and fix problematic code while learning what went wrong.

Style Conversion

Command: :%!sd 'Convert this CSS to SCSS with proper nesting and variables'

Description: Transform between different syntax styles or languages.

Advanced Prompt Engineering

The quality of results depends significantly on your prompting technique. Here are strategies for crafting effective AI prompts:

Technique Example When to Use
Be specific about format 'Convert this to Markdown with level 2 headings for each section' When you need precise formatting
Include context 'This is part of a web API, refactor to follow RESTful practices' When additional information helps the AI understand the task
Chain instructions 'First fix all bugs, then add error handling, finally add comments' For multi-step transformations
Specify tone/audience 'Rewrite for a non-technical audience using simple language' When adapting content for specific readers
Request alternatives 'Provide three different ways to optimize this algorithm' When exploring multiple solutions

Combining with Other Unix Tools

The true power of the sd command comes from combining it with other Unix tools:

:r !grep -r "TODO" . | sd 'Generate a prioritized task list based on these TODOs'

:r !git log -p file.js | sd 'Summarize the evolution of this file'

:r !cat error.log | sd 'Analyze these errors and suggest solutions'

Troubleshooting

Common Issues

Timeout errors: For large files, consider processing them in smaller chunks.

Context limitations: The AI may have a maximum context length. Break up very large texts into manageable sections.

Rate limiting: If you encounter rate limits, add pauses between AI operations or check your account settings.

Debugging Tips

When AI processing doesn't work as expected:

:r !sd 'Debug why this code fails with error XYZ' < debug.log

Or capture the AI's reasoning process:

:r !sd 'Explain step by step why this algorithm is inefficient'

Real-world Workflow Examples

Documentation Writer

# In a single command, generate a full README from a codebase
:r !find . -name "*.js" | xargs cat | sd 'Generate a comprehensive README.md for this JavaScript project'

Code Reviewer

# Get AI review of your changes before committing
:r !git diff | sd 'Review these changes and suggest improvements'

Learning Assistant

# Learn new concepts while editing
:r !sd 'Explain the concept of recursion with examples in the context of this code'

Integration with Project-specific Knowledge

Create aliases for project-specific operations:

function ai-docs() {
    cat $1 | sd "Generate documentation following our team's style guide: 
                 - Use markdown
                 - Include examples
                 - Link to related modules"
}

# In vim
:r !ai-docs CurrentFile.js

Best Practices

Extended Configuration

Creating Your Own "e" Command

Custom AI Assistant: Create a personalized editor that aligns with your writing style and editing needs!

You can create a customized AI editing assistant called "e" (short for "editor", pronounced "echo") that has its own personality and behavior tailored to your specific needs. This creates a more focused tool that complements your vi/vim editing workflow.

Step 1: Create the Command

First, create a symbolic link from the existing "sd" command to your new "e" command:

# Create the symbolic link
ln -s $(which sd) ~/bin/e

# Make sure ~/bin is in your PATH
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bashrc  # or .zshrc for Zsh users
source ~/.bashrc  # Apply the changes

Step 2: Configure Your Editor's Personality

Next, customize how your editor behaves by setting environment variables in your shell configuration file:

# Add these lines to your .bashrc or .zshrc file
export E_SYSTEM_PROMPT="You are an editor specialized in improving technical writing.
Your goals are to:
1. Make text clearer and more concise
2. Maintain the author's original voice and meaning
3. Fix grammatical issues without changing style
4. Suggest structural improvements when appropriate
5. Format code snippets for readability"

# Choose which AI model to use
export E_MODEL="gpt-4"  # or another model of your choice

Step 3: Use Your Custom Editor

Now you can use your specialized editor in vi/vim with the same familiar syntax:

:%!e 'Make this paragraph more engaging'
:10,20!e 'Simplify this explanation'
:'<,'>!e 'Convert this to bullet points'

Personality Ideas for Different Editing Needs

You can create different editor personalities for various tasks:

The beauty of this approach is that your "e" command becomes an intuitive extension of your editing environment, blending naturally with vi/vim's philosophy of specialized, composable tools. Each time you invoke it, you're working with an assistant that understands your preferences and editing style.

Creating a .airc File

For project-specific AI behavior, create a .airc file:

# .airc example
style_guide_path=./docs/style_guide.md
code_standards_path=./docs/code_standards.md
default_language=javascript
default_api_model=gpt-4
tone=professional

Then in your .vimrc:

function! AIWithProjectContext(prompt)
    let l:context = system('cat .airc')
    return system('sd "Project context: ' . l:context . '\n\nTask: ' . a:prompt . '"')
endfunction

command! -range -nargs=1 AIProject <line1>,<line2>call AIWithProjectContext(<q-args>)

Conclusion

Integrating the sd command line tool with Vi/Vim transforms your editor into an intelligent assistant that understands context, follows instructions, and helps you work more efficiently. By building AI operations into your editing workflow, you can automate routine tasks, improve your writing, refactor code more effectively, and focus on more creative aspects of your work.

As you become more comfortable with these techniques, you'll develop your own patterns and shortcuts tailored to your specific needs and projects.

Pro Tip: Keep a journal of your most effective AI prompts and commands. The art of prompt engineering is valuable and reusable across projects.