Project Summary DevPace is a VS Code extension that helps developers maintain a healthy work pace by providing scheduled breaks with personalized AI-generated encouragement messages and targeted movement routines. Using Claude AI, it generates custom encouragement in different styles and provides tailored exercise suggestions while playing calming meditation music to help developers take mindful breaks and maintain physical wellness while coding.
Authors
- Adriana Mendoza Leigh - Email - GitHub
- Rachel Teeter - Email - GitHub
- Rebecca Keith - Email - GitHub
- Node.js and npm installed
- Visual Studio Code (version 1.96.0 or higher)
- Anthropic API key with credit
- Clone the repository:
git clone [email protected]:rteeter/devPace.git
cd devPace
- Install dependencies:
npm install
- Compile the extension:
npm run compile
- Get your Anthropic API Key:
- Visit Anthropic Console
- Sign up or log in
- Go to 'API Keys' section
- Click 'Create Key'
- Copy your new API key
- Go to 'Billing section'
- Click 'Add funds'
- Enter the amount of credits you want to purchase
- Add the API key to VS Code when prompted by the extension upon launching.
Update or delete the API key later if needed:
- Open VS Code
- Press
Ctrl+Shift+P
(Windows/Linux) orCmd+Shift+P
(Mac) - Type "Preferences: Open User Settings (JSON)"
- Add this to your settings.json:
{
"devPace.anthropicApiKey": "your-api-key-here"
}
- Run the extension:
- Press F5 in VS Code to start debugging
- A new VS Code window will open with the extension loaded
- The extension will prompt you to set your preferences
- Configure your preferences:
- Enter your name for personalized messages
- Set work duration (minutes between breaks)
- Set break duration
- Choose your preferred encouragement style:
- Motivational Coach
- Friendly Colleague
- Zen Master
- Cheerleader
- Inspiring Leader
- Supportive Friend
- Click Save
- During breaks:
- Read your personalized encouragement message
- Listen to calming meditation music (can be controlled with audio player)
- Select an area for your movement routine:
- Neck
- Upper back
- Lower back
- Wrists
- Mix of exercises
- Follow the AI-generated exercise suggestions
- Use the built-in timer to track your break
- Return to work when the break completes
- Available Commands:
devPace.updateSettings
: Open settings paneldevPace.pausePopUps
: Pause break notificationsdevPace.startPopUps
: Resume break notificationsdevPace.popUp
: Manually trigger a break
- AI-generated encouragement messages
- Customizable work/break durations
- Targeted movement routines
- Built-in meditation music player
- Interactive break timer
- Dynamic ambient background
- VS Code Extension API - Extension development framework
- Claude API - AI text generation
- TypeScript - Programming language
- Node.js - Runtime environment
- Axios - HTTP client
- Meditation Music - Royalty-free audio for break periods
devpace/
├── src/
│ ├── extension.ts
│ └── dashboard.ts
├── images/
│ └── dalle-computer.png
├── audio/
│ └── med-audio.mp3
├── package.json
└── README.md
- Break timer continues even if VS Code is inactive
- Audio may not autoplay due to browser restrictions
- Fork the repository
- Create your feature branch
- Commit your changes
- Push to the branch
- Create a Pull Request
- VS Code Extension documentation and samples
- Anthropic's Claude API documentation
- ChatGPT for hard-coded exercise suggestions (default suggestions when no Anthropic API key is provided)
- Royalty-free meditation music providers
This project is licensed under the MIT License - see the LICENSE file for details.