Arduino Maker
When to Use
Process
Gather requirements. Ask the user clarifying questions about their specific context, goals, constraints, and experience level.
Analyze the situation. Review the information provided and identify key factors, challenges, and opportunities relevant to arduino maker.
Develop the framework. Create a structured approach tailored to the user's needs, incorporating best practices and domain-specific considerations.
Deliver actionable output. Present specific, implementable recommendations with clear rationale, timelines, and success criteria.
Address edge cases. Proactively identify potential issues, alternative approaches, and contingency plans.
Use this skill when:
- User needs guidance on arduino maker
- User asks about arduino maker best practices or techniques
- User wants a structured approach to arduino maker
Do NOT use this skill when:
- A more specialized skill exists for the specific subtopic
- The request is outside the scope of arduino maker
Questions to Ask First
Before recommending an approach, I need to understand your situation:
- What is your experience level with electronics? (Complete beginner / Some soldering / Experienced)
- Have you done any programming before? In what language?
- What kind of project are you hoping to build? (Home automation, robotics, wearables, art installations, data logging)
- What is your budget for getting started? ($30-50 / $50-100 / $100+)
- Do you have access to a soldering iron, multimeter, or other tools?
- Are you building for a specific purpose (school project, home use, gift) or learning generally?
- Do you need wireless connectivity (WiFi, Bluetooth)?
- Will your project need to run on battery power?
Board Selection Guide
Arduino Uno R3 / R4
- Best for: Beginners, prototyping, learning
- Processor: ATmega328P (R3) / Renesas RA4M1 (R4)
- Digital pins: 14 (6 PWM)
- Analog pins: 6
- Why choose it: Massive community support, most tutorials written for it, robust and hard to damage
- Cost: $25-28 (official), $8-12 (compatible clones)
Arduino Nano
- Best for: Breadboard projects, space-constrained builds
- Same processor as Uno but smaller form factor
- Why choose it: Plugs directly into breadboard, cheaper
- Cost: $20 (official), $3-5 (clones)
Arduino Mega 2560
- Best for: Complex projects needing many pins
- Digital pins: 54 (15 PWM)
- Analog pins: 16
- Why choose it: 3D printer controllers, LED matrices, projects with many sensors
- Cost: $40-45 (official)
ESP32 (Arduino-compatible)
- Best for: IoT projects needing WiFi/Bluetooth
- Why choose it: Built-in wireless, dual-core processor, very capable
- Cost: $5-15
Recommendation by Use Case
- Learning fundamentals: Arduino Uno R4
- IoT / Smart Home: ESP32
- Wearables: Arduino Nano 33 BLE or Adafruit Flora
- Robotics: Arduino Mega or Uno with motor shield
- Budget-conscious: Clone Nano boards in multi-packs
IDE Setup and Configuration
Step 1: Install Arduino IDE
- Download Arduino IDE 2.x from arduino.cc/en/software
- Install for your operating system
- On Windows, install USB drivers when prompted
- On Mac/Linux, drivers typically install automatically
Step 2: Configure Your Board
- Connect Arduino via USB cable
- Tools > Board > Select your board model
- Tools > Port > Select the COM port (Windows) or /dev/ device (Mac/Linux)
- If port doesn't appear, check cable (some USB cables are charge-only, no data)
Step 3: Test with Blink
- File > Examples > 01.Basics > Blink
- Click Upload (arrow button)
- Onboard LED should blink on/off every second
- If upload fails: check board selection, port, and cable
Step 4: Install Libraries
- Tools > Manage Libraries (or Sketch > Include Library)
- Search for needed library
- Click Install
- Essential starter libraries: Servo, LiquidCrystal, DHT sensor library, Adafruit NeoPixel
Basic Circuit Building Blocks
Circuit 1: External LED Control
Components: LED, 220-ohm resistor, breadboard, jumper wires
Pin 13 --> 220Ω resistor --> LED (long leg/anode) --> LED (short leg/cathode) --> GND
Code concepts learned: digitalWrite, pinMode, delay
Circuit 2: Button Input
Components: Pushbutton, 10K-ohm resistor, LED, breadboard
5V --> Button --> Pin 2 (with 10K pull-down resistor to GND)
Pin 13 --> 220Ω --> LED --> GND
Code concepts learned: digitalRead, INPUT_PULLUP, conditional logic
Circuit 3: Sensor Reading (Temperature)
Components: TMP36 or DHT11 sensor
DHT11: Pin 1 (VCC) --> 5V, Pin 2 (Data) --> Pin 7 (with 10K pull-up), Pin 4 (GND) --> GND
Code concepts learned: analogRead, Serial.println, sensor libraries, data conversion
Circuit 4: Motor Control
Components: DC motor, transistor (TIP120), diode (1N4001), resistor
Pin 9 --> 1K resistor --> TIP120 base
TIP120 collector --> Motor --> External power (+)
TIP120 emitter --> GND
Diode across motor (flyback protection)
Code concepts learned: PWM (analogWrite), transistor as switch, external power
Circuit 5: Servo Control
Components: Servo motor (SG90)
Servo red wire --> 5V
Servo brown wire --> GND
Servo orange wire --> Pin 9
Code concepts learned: Servo library, map() function, potentiometer input
Programming Fundamentals
Core Concepts
// Every Arduino sketch has two required functions:
void setup() {
// Runs once at startup
pinMode(13, OUTPUT); // Configure pin as output
Serial.begin(9600); // Start serial communication
}
void loop() {
// Runs repeatedly forever
digitalWrite(13, HIGH); // Turn LED on
delay(1000); // Wait 1 second
digitalWrite(13, LOW); // Turn LED off
delay(1000); // Wait 1 second
}
Variables and Data Types
int - Whole numbers (-32,768 to 32,767)
long - Large whole numbers
float - Decimal numbers (use sparingly, slow on Arduino)
bool - true/false
char - Single character
String - Text (capital S, uses more memory)
Control Structures
if / else if / else - Conditional execution
for loop - Repeat a known number of times
while loop - Repeat while condition is true
switch/case - Multiple condition branches
Common Functions
pinMode(pin, INPUT/OUTPUT) - Configure pin direction
digitalWrite(pin, HIGH/LOW) - Set pin on/off
digitalRead(pin) - Read pin state (0 or 1)
analogRead(pin) - Read analog value (0-1023)
analogWrite(pin, value) - PWM output (0-255)
map(value, fromLow, fromHigh, toLow, toHigh) - Scale a number range
millis() - Milliseconds since startup (use instead of delay for multitasking)
Avoiding delay() - Using millis()
unsigned long previousMillis = 0;
const long interval = 1000;
void loop() {
unsigned long currentMillis = millis();
if (currentMillis - previousMillis >= interval) {
previousMillis = currentMillis;
// Do your timed action here
}
// Other code runs without blocking
}
Progressive Project Ideas
Beginner Projects (Week 1-4)
- Traffic Light Simulator - Three LEDs cycling through green, yellow, red with proper timing
- Night Light - Photoresistor controls LED brightness automatically
- Temperature Display - DHT11 sensor reading shown on 16x2 LCD
- Melody Player - Piezo buzzer plays songs using tone() function
- Reaction Time Game - LED lights up, measure button press response time
Intermediate Projects (Month 2-3)
- Weather Station - DHT22 + BMP280 sensors, OLED display, data logging to SD card
- Plant Watering System - Soil moisture sensor triggers pump via relay
- Ultrasonic Parking Sensor - HC-SR04 distance sensor with LED bar graph and buzzer
- RFID Door Lock - RFID reader controls servo-operated lock mechanism
- LED Matrix Animations - 8x8 or WS2812B strip with patterns and effects
Advanced Projects (Month 4+)
- Home Automation Hub - ESP32 with MQTT, controls lights/fans, web dashboard
- Line-Following Robot - Motor driver, IR sensors, PID control algorithm
- CNC Plotter - Stepper motors, servo pen lift, G-code interpretation
- Weather Balloon Tracker - GPS module, LoRa radio, altitude/temp logging
- Retro Game Console - OLED display, joystick, multiple games in menu system
Component Sourcing
Recommended Starter Kits
- Elegoo Super Starter Kit (~$35) - Best value, includes Uno clone + 200+ components
- Arduino Official Starter Kit (~$80) - Higher quality, includes project book
- SunFounder Kit (~$40) - Good sensor variety
Where to Buy Components
- Amazon - Fast shipping, good for kits, higher markup on individual parts
- Adafruit - Premium quality, excellent documentation, USA-based
- SparkFun - Quality components, great tutorials
- DigiKey / Mouser - Professional suppliers, vast selection, best for specific parts
- AliExpress - Lowest prices, 2-4 week shipping from China, great for bulk
- LCSC - Chinese electronics, good prices, faster than AliExpress
Essential Tools
- Breadboard (830-point full size) - $3-5
- Jumper wire kit (M-M, M-F, F-F) - $5-8
- Multimeter (basic digital) - $15-25
- USB cable (correct type for your board) - $3-5
- Soldering iron (when ready) - Hakko FX-888D ($100) or Pinecil ($25) recommended
- Wire strippers - $8-12
Debugging Guide
Upload Errors
- "Port not found" - Check USB cable (try data cable), reinstall drivers
- "avrdude: stk500" - Wrong board selected, or board not responding (press reset during upload)
- "Sketch too large" - Optimize code, use PROGMEM for strings, choose board with more flash
Circuit Debugging
- Check power: Is 5V reaching where it should? Use multimeter
- Check ground: All components must share common ground
- Check polarity: LEDs, capacitors, and diodes are directional
- Check connections: Push wires firmly into breadboard
- Simplify: Remove components until basic circuit works, then add back one at a time
Code Debugging
- Use
Serial.println() to print variable values at key points
- Check variable types (int overflow at 32,767)
- Watch for floating pin reads (use INPUT_PULLUP or external resistors)
- Verify pin numbers match physical connections
- Check library compatibility with your board
Common Mistakes
- Using delay() when you need responsive input (use millis() instead)
- skipping to set pinMode in setup()
- Drawing too much current from Arduino pins (max 20mA per pin, 40mA absolute max)
- Powering motors directly from Arduino (use external power + transistor/driver)
- Not using flyback diodes with inductive loads (motors, relays, solenoids)
Safety Considerations
- Arduino operates at 5V DC which is safe to touch
- External power supplies may use dangerous voltages - never work with mains (120V/240V) power
- Capacitors can store charge even when power is disconnected
- Hot components (voltage regulators, motor drivers) can burn fingers
- Lithium batteries can catch fire if short-circuited or punctured
- Always disconnect power before modifying circuits
- Solder in ventilated areas with eye protection
Progression Path
- Phase 1: Complete starter kit tutorials, understand basic components
- Phase 2: Modify example projects, combine sensors and outputs
- Phase 3: Design original projects, learn to read datasheets
- Phase 4: Add wireless communication (WiFi, Bluetooth, LoRa)
- Phase 5: Design custom PCBs (KiCad), 3D print enclosures
- Phase 6: Contribute to open-source projects, teach others
Community Resources
- Arduino Forum (forum.arduino.cc) - Official community support
- r/arduino - Reddit community with project sharing
- Instructables - Step-by-step project tutorials
- Hackster.io - Project sharing platform
- YouTube channels: Paul McWhorter, DroneBot Workshop, GreatScott!
Output Format
Deliver the response as a structured document with clear headings and actionable content. Use tables for comparisons, numbered lists for sequential steps, and bullet points for options. Include specific examples where applicable.
[Arduino Maker deliverable]
1. Context and objectives
2. Analysis or framework
3. Specific recommendations with rationale
4. Action items with timeline
Example
Input: "Help me with arduino maker for a mid-size project."
Output: A complete arduino maker framework tailored to the specific context, with actionable steps, relevant considerations, and measurable outcomes.
Edge Cases
- Incomplete information: Ask clarifying questions before proceeding rather than making assumptions
- Conflicting requirements: Identify trade-offs explicitly and present options with pros and cons
- Scale mismatch: Adapt recommendations to match the user's context (individual vs. team vs. organization)
- Domain crossover: When the request overlaps with other skill domains, address what falls within scope and reference specialized skills for the rest
1---2name: arduino-maker3description: Guide to Arduino microcontroller projects from first blink to advanced builds, covering board selection, circuit design, programming fundamentals, and progressive project ideas. Use when the user asks about arduino maker or needs help with related topics. Do NOT use for unrelated domains or when a more specialized skill exists.4license: Apache-2.05---67# Arduino Maker89## When to Use101112## Process13141. **Gather requirements.** Ask the user clarifying questions about their specific context, goals, constraints, and experience level.15162. **Analyze the situation.** Review the information provided and identify key factors, challenges, and opportunities relevant to arduino maker.17183. **Develop the framework.** Create a structured approach tailored to the user's needs, incorporating best practices and domain-specific considerations.19204. **Deliver actionable output.** Present specific, implementable recommendations with clear rationale, timelines, and success criteria.21225. **Address edge cases.** Proactively identify potential issues, alternative approaches, and contingency plans.2324**Use this skill when:**25- User needs guidance on arduino maker26- User asks about arduino maker best practices or techniques27- User wants a structured approach to arduino maker2829**Do NOT use this skill when:**30- A more specialized skill exists for the specific subtopic31- The request is outside the scope of arduino maker3233## Questions to Ask First3435Before recommending an approach, I need to understand your situation:36371. What is your experience level with electronics? (Complete beginner / Some soldering / Experienced)382. Have you done any programming before? In what language?393. What kind of project are you hoping to build? (Home automation, robotics, wearables, art installations, data logging)404. What is your budget for getting started? ($30-50 / $50-100 / $100+)415. Do you have access to a soldering iron, multimeter, or other tools?426. Are you building for a specific purpose (school project, home use, gift) or learning generally?437. Do you need wireless connectivity (WiFi, Bluetooth)?448. Will your project need to run on battery power?4546## Board Selection Guide4748### Arduino Uno R3 / R449- **Best for**: Beginners, prototyping, learning50- **Processor**: ATmega328P (R3) / Renesas RA4M1 (R4)51- **Digital pins**: 14 (6 PWM)52- **Analog pins**: 653- **Why choose it**: Massive community support, most tutorials written for it, robust and hard to damage54- **Cost**: $25-28 (official), $8-12 (compatible clones)5556### Arduino Nano57- **Best for**: Breadboard projects, space-constrained builds58- **Same processor as Uno** but smaller form factor59- **Why choose it**: Plugs directly into breadboard, cheaper60- **Cost**: $20 (official), $3-5 (clones)6162### Arduino Mega 256063- **Best for**: Complex projects needing many pins64- **Digital pins**: 54 (15 PWM)65- **Analog pins**: 1666- **Why choose it**: 3D printer controllers, LED matrices, projects with many sensors67- **Cost**: $40-45 (official)6869### ESP32 (Arduino-compatible)70- **Best for**: IoT projects needing WiFi/Bluetooth71- **Why choose it**: Built-in wireless, dual-core processor, very capable72- **Cost**: $5-157374### Recommendation by Use Case75- **Learning fundamentals**: Arduino Uno R476- **IoT / Smart Home**: ESP3277- **Wearables**: Arduino Nano 33 BLE or Adafruit Flora78- **Robotics**: Arduino Mega or Uno with motor shield79- **Budget-conscious**: Clone Nano boards in multi-packs8081## IDE Setup and Configuration8283### Step 1: Install Arduino IDE841. Download Arduino IDE 2.x from arduino.cc/en/software852. Install for your operating system863. On Windows, install USB drivers when prompted874. On Mac/Linux, drivers typically install automatically8889### Step 2: Configure Your Board901. Connect Arduino via USB cable912. Tools > Board > Select your board model923. Tools > Port > Select the COM port (Windows) or /dev/ device (Mac/Linux)934. If port doesn't appear, check cable (some USB cables are charge-only, no data)9495### Step 3: Test with Blink961. File > Examples > 01.Basics > Blink972. Click Upload (arrow button)983. Onboard LED should blink on/off every second994. If upload fails: check board selection, port, and cable100101### Step 4: Install Libraries1021. Tools > Manage Libraries (or Sketch > Include Library)1032. Search for needed library1043. Click Install1054. Essential starter libraries: Servo, LiquidCrystal, DHT sensor library, Adafruit NeoPixel106107## Basic Circuit Building Blocks108109### Circuit 1: External LED Control110**Components**: LED, 220-ohm resistor, breadboard, jumper wires111```112Pin 13 --> 220Ω resistor --> LED (long leg/anode) --> LED (short leg/cathode) --> GND113```114**Code concepts learned**: digitalWrite, pinMode, delay115116### Circuit 2: Button Input117**Components**: Pushbutton, 10K-ohm resistor, LED, breadboard118```1195V --> Button --> Pin 2 (with 10K pull-down resistor to GND)120Pin 13 --> 220Ω --> LED --> GND121```122**Code concepts learned**: digitalRead, INPUT_PULLUP, conditional logic123124### Circuit 3: Sensor Reading (Temperature)125**Components**: TMP36 or DHT11 sensor126```127DHT11: Pin 1 (VCC) --> 5V, Pin 2 (Data) --> Pin 7 (with 10K pull-up), Pin 4 (GND) --> GND128```129**Code concepts learned**: analogRead, Serial.println, sensor libraries, data conversion130131### Circuit 4: Motor Control132**Components**: DC motor, transistor (TIP120), diode (1N4001), resistor133```134Pin 9 --> 1K resistor --> TIP120 base135TIP120 collector --> Motor --> External power (+)136TIP120 emitter --> GND137Diode across motor (flyback protection)138```139**Code concepts learned**: PWM (analogWrite), transistor as switch, external power140141### Circuit 5: Servo Control142**Components**: Servo motor (SG90)143```144Servo red wire --> 5V145Servo brown wire --> GND146Servo orange wire --> Pin 9147```148**Code concepts learned**: Servo library, map() function, potentiometer input149150## Programming Fundamentals151152### Core Concepts153```cpp154// Every Arduino sketch has two required functions:155156void setup() {157 // Runs once at startup158 pinMode(13, OUTPUT); // Configure pin as output159 Serial.begin(9600); // Start serial communication160}161162void loop() {163 // Runs repeatedly forever164 digitalWrite(13, HIGH); // Turn LED on165 delay(1000); // Wait 1 second166 digitalWrite(13, LOW); // Turn LED off167 delay(1000); // Wait 1 second168}169```170171### Variables and Data Types172- `int` - Whole numbers (-32,768 to 32,767)173- `long` - Large whole numbers174- `float` - Decimal numbers (use sparingly, slow on Arduino)175- `bool` - true/false176- `char` - Single character177- `String` - Text (capital S, uses more memory)178179### Control Structures180- `if / else if / else` - Conditional execution181- `for` loop - Repeat a known number of times182- `while` loop - Repeat while condition is true183- `switch/case` - Multiple condition branches184185### Common Functions186- `pinMode(pin, INPUT/OUTPUT)` - Configure pin direction187- `digitalWrite(pin, HIGH/LOW)` - Set pin on/off188- `digitalRead(pin)` - Read pin state (0 or 1)189- `analogRead(pin)` - Read analog value (0-1023)190- `analogWrite(pin, value)` - PWM output (0-255)191- `map(value, fromLow, fromHigh, toLow, toHigh)` - Scale a number range192- `millis()` - Milliseconds since startup (use instead of delay for multitasking)193194### Avoiding delay() - Using millis()195```cpp196unsigned long previousMillis = 0;197const long interval = 1000;198199void loop() {200 unsigned long currentMillis = millis();201 if (currentMillis - previousMillis >= interval) {202 previousMillis = currentMillis;203 // Do your timed action here204 }205 // Other code runs without blocking206}207```208209## Progressive Project Ideas210211### Beginner Projects (Week 1-4)2121. **Traffic Light Simulator** - Three LEDs cycling through green, yellow, red with proper timing2132. **Night Light** - Photoresistor controls LED brightness automatically2143. **Temperature Display** - DHT11 sensor reading shown on 16x2 LCD2154. **Melody Player** - Piezo buzzer plays songs using tone() function2165. **Reaction Time Game** - LED lights up, measure button press response time217218### Intermediate Projects (Month 2-3)2191. **Weather Station** - DHT22 + BMP280 sensors, OLED display, data logging to SD card2202. **Plant Watering System** - Soil moisture sensor triggers pump via relay2213. **Ultrasonic Parking Sensor** - HC-SR04 distance sensor with LED bar graph and buzzer2224. **RFID Door Lock** - RFID reader controls servo-operated lock mechanism2235. **LED Matrix Animations** - 8x8 or WS2812B strip with patterns and effects224225### Advanced Projects (Month 4+)2261. **Home Automation Hub** - ESP32 with MQTT, controls lights/fans, web dashboard2272. **Line-Following Robot** - Motor driver, IR sensors, PID control algorithm2283. **CNC Plotter** - Stepper motors, servo pen lift, G-code interpretation2294. **Weather Balloon Tracker** - GPS module, LoRa radio, altitude/temp logging2305. **Retro Game Console** - OLED display, joystick, multiple games in menu system231232## Component Sourcing233234### Recommended Starter Kits235- **Elegoo Super Starter Kit** (~$35) - Best value, includes Uno clone + 200+ components236- **Arduino Official Starter Kit** (~$80) - Higher quality, includes project book237- **SunFounder Kit** (~$40) - Good sensor variety238239### Where to Buy Components240- **Amazon** - Fast shipping, good for kits, higher markup on individual parts241- **Adafruit** - Premium quality, excellent documentation, USA-based242- **SparkFun** - Quality components, great tutorials243- **DigiKey / Mouser** - Professional suppliers, vast selection, best for specific parts244- **AliExpress** - Lowest prices, 2-4 week shipping from China, great for bulk245- **LCSC** - Chinese electronics, good prices, faster than AliExpress246247### Essential Tools248- **Breadboard** (830-point full size) - $3-5249- **Jumper wire kit** (M-M, M-F, F-F) - $5-8250- **Multimeter** (basic digital) - $15-25251- **USB cable** (correct type for your board) - $3-5252- **Soldering iron** (when ready) - Hakko FX-888D ($100) or Pinecil ($25) recommended253- **Wire strippers** - $8-12254255## Debugging Guide256257### Upload Errors258- "Port not found" - Check USB cable (try data cable), reinstall drivers259- "avrdude: stk500" - Wrong board selected, or board not responding (press reset during upload)260- "Sketch too large" - Optimize code, use PROGMEM for strings, choose board with more flash261262### Circuit Debugging2631. Check power: Is 5V reaching where it should? Use multimeter2642. Check ground: All components must share common ground2653. Check polarity: LEDs, capacitors, and diodes are directional2664. Check connections: Push wires firmly into breadboard2675. Simplify: Remove components until basic circuit works, then add back one at a time268269### Code Debugging2701. Use `Serial.println()` to print variable values at key points2712. Check variable types (int overflow at 32,767)2723. Watch for floating pin reads (use INPUT_PULLUP or external resistors)2734. Verify pin numbers match physical connections2745. Check library compatibility with your board275276### Common Mistakes277- Using delay() when you need responsive input (use millis() instead)278- skipping to set pinMode in setup()279- Drawing too much current from Arduino pins (max 20mA per pin, 40mA absolute max)280- Powering motors directly from Arduino (use external power + transistor/driver)281- Not using flyback diodes with inductive loads (motors, relays, solenoids)282283## Safety Considerations284285- Arduino operates at 5V DC which is safe to touch286- External power supplies may use dangerous voltages - never work with mains (120V/240V) power287- Capacitors can store charge even when power is disconnected288- Hot components (voltage regulators, motor drivers) can burn fingers289- Lithium batteries can catch fire if short-circuited or punctured290- Always disconnect power before modifying circuits291- Solder in ventilated areas with eye protection292293## Progression Path2942951. **Phase 1**: Complete starter kit tutorials, understand basic components2962. **Phase 2**: Modify example projects, combine sensors and outputs2973. **Phase 3**: Design original projects, learn to read datasheets2984. **Phase 4**: Add wireless communication (WiFi, Bluetooth, LoRa)2995. **Phase 5**: Design custom PCBs (KiCad), 3D print enclosures3006. **Phase 6**: Contribute to open-source projects, teach others301302## Community Resources303304- **Arduino Forum** (forum.arduino.cc) - Official community support305- **r/arduino** - Reddit community with project sharing306- **Instructables** - Step-by-step project tutorials307- **Hackster.io** - Project sharing platform308- **YouTube channels**: Paul McWhorter, DroneBot Workshop, GreatScott!309310311## Output Format312313Deliver the response as a structured document with clear headings and actionable content. Use tables for comparisons, numbered lists for sequential steps, and bullet points for options. Include specific examples where applicable.314315```316[Arduino Maker deliverable]3171. Context and objectives3182. Analysis or framework3193. Specific recommendations with rationale3204. Action items with timeline321```322323324## Example325326**Input:** "Help me with arduino maker for a mid-size project."327328**Output:** A complete arduino maker framework tailored to the specific context, with actionable steps, relevant considerations, and measurable outcomes.329330331## Edge Cases332333- **Incomplete information:** Ask clarifying questions before proceeding rather than making assumptions334- **Conflicting requirements:** Identify trade-offs explicitly and present options with pros and cons335- **Scale mismatch:** Adapt recommendations to match the user's context (individual vs. team vs. organization)336- **Domain crossover:** When the request overlaps with other skill domains, address what falls within scope and reference specialized skills for the rest