4.1 Code Generation Beginner
CodyCodes excels at generating code snippets and full programs based on your specifications.
Basic Code Generation
Generate a simple function:
cody 'Write a function that calculates the Fibonacci sequence up to n terms in Python'
Generate based on specifications:
cody 'Create a JavaScript function that validates email addresses with the following requirements:
- Must have an @ symbol and a domain
- Domain must have at least one period
- Username part must be at least 3 characters
- No special characters except underscore and period in username'
Generating Complete Programs
cody 'Create a Python command-line tool that takes a CSV file as input and outputs summary statistics for each numeric column. Include error handling for file not found and malformed CSV files.'
Starting from Existing Code
cat starter_code.js | cody 'Complete this code by adding the missing functionality for user authentication described in the comments'
Tip: Be as specific as possible in your requirements. Include input/output examples when relevant to get more accurate code.
4.2 Debugging & Code Review Intermediate
Use CodyCodes to help identify and fix bugs in your code, or to get code review feedback.
Debugging Code
Fix a buggy function:
cat buggy_function.js | cody 'This function has a bug. It should sort an array of objects by a specified property, but it's not working. Please identify and fix the issue.'
Debug with error message:
cat error_log.txt my_script.py | cody 'My script is throwing this error. Please explain what might be causing it and how to fix it.'
Code Review
cat pull_request.diff | cody 'Review this code change. Highlight any potential issues with performance, security, or maintainability.'
Performance Optimization
cat slow_function.py | cody 'This function is running slowly. Suggest optimizations to improve its performance while maintaining the same functionality.'
Tip: When debugging complex issues, provide as much context as possible, including error messages, expected behavior, and any relevant environment details.
4.3 Content Creation Beginner
The emmy
persona is specialized for content creation tasks, from emails to comprehensive documentation.
Writing Professional Communications
Create an email:
emmy 'Write a professional email to decline a project opportunity due to scheduling conflicts. Express gratitude for the consideration and leave the door open for future collaboration.'
Meeting summary:
cat meeting_notes.txt | emmy 'Create a structured summary of these meeting notes with action items and responsibilities highlighted.'
Documentation Creation
cat project_outline.md | emmy 'Create a detailed README.md for this project that includes installation instructions, usage examples, and API documentation.'
Converting Between Formats
cat report.txt | emmy 'Convert this plain text report into a well-formatted markdown document with proper headings, lists, and emphasis.'
Tip: For the best results with content creation, be specific about tone, audience, and format in your prompt.
4.4 Data Analysis Intermediate
CodyCodes can help analyze data, identify patterns, and generate visualization code.
Basic Data Analysis
Analyze CSV data:
cat sales_data.csv | cody 'Analyze this CSV data. Identify trends in monthly sales and suggest possible factors affecting performance.'
Statistical summary:
cat experiment_results.csv | cody 'Calculate key statistical measures for this data: mean, median, standard deviation, and identify any outliers.'
Generating Visualization Code
cat weather_data.csv | cody 'Generate Python code using matplotlib to create a line chart showing temperature trends over time, with separate lines for max and min temperature.'
Multi-step Data Workflow
cat raw_data.csv | cody 'Clean this data by removing duplicates, handling missing values, and normalizing the numeric columns' > clean_data.csv
cat clean_data.csv | cody 'Analyze this cleaned data and generate insights about customer behavior' > analysis.txt
cat analysis.txt | emmy 'Create a business-friendly report based on these technical insights' > final_report.md
Note: For large datasets, consider preprocessing to extract relevant subsets before sending to CodyCodes, as there are token limits for inputs.