⚡ Quick Reference Resources
Your go-to resource for templates, checklists, and troubleshooting guides. Bookmark this page for quick access while working on your Web Dev II projects!
📚 Complete Learning Path
AI Agent Basics → Effective Prompts → Agent Memory → Advanced Context → Quick Reference
📋 Context Provision Checklists
Use these checklists to ensure you're providing complete context for different types of AI agent requests.
Basic Project Context ✅
- □ Your skill level (Web Dev II student)
- □ Project type (portfolio, creative, business)
- □ Technical constraints (HTML/CSS only)
- □ Accessibility requirements (WCAG AA)
- □ Current file structure or organization
Advanced Project Context ✅
- □ Reference to project-goals.md
- □ Reference to design-philosophy.md
- □ Current session goals from progress-log.md
- □ Existing code patterns to follow
- □ Specific files that need coordination
Poetry Project Context ✅
- □ Reference to poem-analysis.md
- □ Reference to visual-concept.md
- □ Creative goals and artistic vision
- □ Technical implementation requirements
- □ Balance between creativity and accessibility
🚀 Prompt Templates
Copy and customize these proven prompt patterns for better AI agent results.
Session Startup Template
Hi! I'm continuing work on my [PROJECT TYPE] from [LAST SESSION]. CONTEXT: - Please read my project-goals.md and progress-log.md files - I'm a Web Dev II student, constraints: HTML/CSS only, WCAG AA - My design philosophy: [BRIEF DESCRIPTION] CURRENT GOAL: Today I want to [SPECIFIC GOAL]. Last session I [ACCOMPLISHMENT]. My current challenge is [SPECIFIC PROBLEM]. REQUEST: Please help me [SPECIFIC REQUEST] while following my established patterns in [RELEVANT FILES].
Debugging Template
DEBUGGING CONTEXT: PROBLEM: My [SPECIFIC ELEMENT] is [SPECIFIC ISSUE]. Expected: [WHAT SHOULD HAPPEN]. Actually seeing: [WHAT'S HAPPENING]. CONTEXT: - Browser/device: [BROWSER/DEVICE] - Related files: [FILE NAMES] - Recent changes: [WHAT YOU CHANGED] - Error messages: [ANY ERRORS] REQUEST: Help me debug and fix this issue while maintaining my existing [DESIGN PATTERNS/CONSTRAINTS].
Creative-Technical Balance Template
CREATIVE-TECHNICAL PROJECT: ARTISTIC VISION: - Read my [CREATIVE ANALYSIS FILE] for artistic goals - The [CREATIVE ELEMENT] should reflect [SPECIFIC MOOD/THEME] - Visual inspiration: [DESCRIBE DESIRED FEELING] TECHNICAL REQUIREMENTS: - Constraints: HTML/CSS only, accessible, responsive - Must work with existing [FILES/COMPONENTS] - Follow patterns in my [STYLE GUIDE FILE] BALANCE GOAL: I need to [TECHNICAL IMPLEMENTATION] while maintaining [ARTISTIC ELEMENT]. Help me achieve both.
📁 File Organization Templates
Quick copy-paste templates for organizing your project documentation.
Basic Project Structure
my-project/ ├── project-goals.md ├── design-philosophy.md ├── progress-log.md ├── index.html ├── styles.css └── assets/ └── images/
Advanced Project Structure
my-portfolio/ ├── docs/ │ ├── project-goals.md │ ├── design-philosophy.md │ ├── progress-log.md │ ├── style-guide.md │ └── design-system.md ├── styles/ │ ├── base.css │ ├── layout.css │ ├── components.css │ └── utilities.css ├── pages/ │ ├── index.html │ ├── about.html │ └── portfolio.html └── assets/ ├── images/ └── fonts/
Poetry Project Structure
my-poetry-project/ ├── poem-analysis.md ├── visual-concept.md ├── design-philosophy.md ├── progress-log.md ├── index.html ├── poem.html ├── styles/ │ ├── typography.css │ ├── layout.css │ └── theme.css └── assets/ └── images/
Agent Configuration Files
Add these configuration files to automatically teach AI agents about your project constraints and standards.
Basic Configuration Setup
my-project/ ├── .github/ │ └── copilot-instructions.md # GitHub Copilot configuration ├── CLAUDE.md # Claude Code configuration ├── project-goals.md # Project documentation ├── design-philosophy.md # Design decisions └── index.html
Advanced Configuration Setup
my-portfolio/ ├── .github/ │ └── copilot-instructions.md # GitHub Copilot configuration ├── .claude/ # Claude settings folder ├── CLAUDE.md # Claude Code configuration ├── AGENTS.md # Advanced AI agent configuration ├── docs/ │ ├── project-goals.md │ └── design-philosophy.md └── index.html
🆘 Emergency Troubleshooting
When things go wrong with AI agent interactions, follow these recovery steps.
Agent Not Understanding Your Project
🚨 Symptoms
- Generic suggestions that don't fit your project
- Ignoring your stated constraints
- Not referencing your existing files
💊 Quick Fix
- Stop and restart with clear context
- Reference specific documentation files
- List your constraints explicitly
- Provide a concrete example from your existing code
Agent Suggests Wrong Technology
⚠️ Symptoms
- Recommends JavaScript when you need CSS-only
- Suggests frameworks or libraries
- Ignores "HTML/CSS only" constraint
💊 Quick Fix
"Stop. This is a Web Dev II course project. I can ONLY use HTML5 and CSS3. No JavaScript, no frameworks, no libraries. Please suggest a CSS-only solution for [specific need]."
Agent Breaks Your Existing Code
✅ Recovery Steps
- Identify what broke (specific functionality)
- Revert to last working version if needed
- Ask agent to review your existing patterns in [specific file]
- Request solution that preserves existing functionality
"The suggestion broke my [existing functionality]. Please review my current [file] and suggest a solution that preserves my existing [specific patterns] while adding [new feature]."
📊 Common Patterns Reference
Quick reference for the most useful prompt patterns by project type.
🏗️ Layout Requests
- "Create CSS Grid layout for [content] with [columns] on desktop, [columns] on tablet, [columns] on mobile"
- "Add responsive navigation with hamburger menu for mobile using CSS-only"
- "Implement flexbox card layout with hover effects and accessibility"
♿ Accessibility Requests
- "Review [element] for WCAG AA compliance and screen reader compatibility"
- "Add proper ARIA labels and focus indicators to [interactive element]"
- "Ensure keyboard navigation works for [component]"
🎨 Styling Requests
- "Apply my design-philosophy.md color scheme to [component]"
- "Create hover animations with [duration] transitions"
- "Implement typography hierarchy using [font system]"
🔧 Organization Requests
- "Reorganize CSS using [methodology] and logical sections"
- "Create style-guide.md documenting my [existing patterns]"
- "Optimize CSS for [performance goal] while maintaining [visual goals]"
📖 Memory File Quick Start
Example files for a Web Dev II project.
📋 project-goals.md
## Technical Constraints
- HTML5 and CSS3 only (no JavaScript)
- WCAG AA accessibility compliance
- Mobile-first responsive design
- Deploy to Netlify
## Success Criteria
- [ ] [Your specific goals]
- [ ] Professional visual design
- [ ] Fast loading (under 3 seconds)
- [ ] Accessible to screen readers
🎨 design-philosophy.md
## Color Palette
- Primary: [color] ([purpose])
- Secondary: [color] ([purpose])
- Accent: [color] ([purpose])
## Typography
- Headings: [font choice] ([reasoning])
- Body: [font choice] ([reasoning])
## User Experience Goals
- [specific goal and reasoning]
📝 progress-log.md
## Session [Date] - [Duration]
### Goals for Today
- [ ] [Goal 1]
- [ ] [Goal 2]
### What I Accomplished
- ✅ [Completed item]
### Next Session Priorities
1. [Priority item]
### Files Modified
- [file]: [what changed]
⚙️ Agent Configuration Templates
Copy-paste these configuration files to set up automatic AI agent behavior for your Web Dev II projects.
Essential Configuration Files (Copy These)
📄 .github/copilot-instructions.md
GitHub Copilot Agent Mode configuration
📄 CLAUDE.md
Claude Code repository configuration
📄 AGENTS.md
Advanced AI agent configuration (optional)
Quick Configuration Setup
Fast Setup for GitHub Copilot
- Create
.github
folder in your project root - Create
copilot-instructions.md
inside the.github
folder - Copy the template above and customize for your specific project
- Commit and push to GitHub
- Start getting better AI assistance immediately!
🎯 Pro Tip: Start Simple
You don't need all three files right away. Start with just
.github/copilot-instructions.md
for immediate improvement in your AI interactions.
Add the others as your projects become more complex.
Troubleshooting Configuration Issues
🚨 Agent Ignoring Configuration
- Check file location (.github folder)
- Verify file name spelling
- Commit and push changes to repository
- Restart AI agent session
⚠️ Configuration Not Working
- Try simpler language in instructions
- Be more specific about constraints
- Add concrete examples
- Test with basic requests first
🎯 Success Checklist
Use this checklist to verify you're getting the most out of AI agent collaboration.
Signs You're Using AI Agents Effectively ✅
- ✅ Agent responses reference your specific files and patterns
- ✅ Suggestions fit your project constraints without reminders
- ✅ Code maintains consistency with your existing style
- ✅ Agent builds on previous session work seamlessly
- ✅ Solutions enhance rather than replace your creative vision
- ✅ You spend more time creating and less time explaining context
🎓 You've Mastered AI Agent Collaboration When...
- 🎯 Your prompts include context automatically
- 🎯 You can troubleshoot context issues quickly
- 🎯 Your documentation enables sophisticated agent assistance
- 🎯 You balance creative vision with technical requirements
- 🎯 Your projects benefit from cumulative agent knowledge