Holmes Stacks
Career · June 7, 2026

Build Projects and AI Workflows to Boost Your Tech Career

This video introduces AI Career Stack’s approach to building valuable skills, projects, and career systems for cloud, software, and DevOps engineers. You will learn how to develop real-world projects

What this guide covers

After this guide, you’ll be able to start building practical projects and AI-powered workflows that demonstrate your technical value beyond certifications. You’ll know how to deliver project demos quickly, write resume bullets that highlight your skills, and incorporate AI tools to boost your everyday engineering productivity.

When to use it

  • You’ve earned cloud or DevOps certifications but struggle to show hands-on skills in interviews.
  • You want to spin up a small project quickly to understand a new technology or cloud service.
  • You’re rewriting your resume to attract callbacks with stronger, results-focused bullet points.
  • You want to create AI workflows that automate repetitive tasks and improve your daily engineering output.

The move, step by step

  1. Pick a project scope: Select a clear, narrow problem you can complete in 2-3 days—e.g., “Deploy a serverless REST API with AWS Lambda + API Gateway to save user survey responses.”

  2. Set up your workspace: Use your preferred IDE and set up version control with Git. Initialize your project with samples from AWS, GitHub repositories, or quickstart templates.

  3. Develop and test incrementally: Build your project feature by feature, running and testing as you go. Use cloud logs (like CloudWatch) to catch runtime errors early.

  4. Document your project: Write a simple README focused on the problem solved, the architecture used, and how to demo it locally or hosted.

  5. Rewrite resume bullets: Convert responsibilities to achievements with numbers and context. E.g., “Built serverless REST API handling 500+ daily requests with 99.9% uptime using AWS Lambda.”

  6. Choose an AI productivity tool: Pick an AI assistant (like GitHub Copilot, ChatGPT with code plugins, or AWS CodeWhisperer) to automate code generation, debugging help, or documentation.

  7. Define an AI workflow: Create a repeatable AI-assisted task—such as generating CI/CD pipeline configs, writing unit tests, or analyzing log data—that saves you time regularly.

  8. Share and iterate: Push your project to GitHub, demo it to peers or recruiters, and use feedback to improve both your projects and AI workflows.

Example

Input: You want to build a simple serverless API returning current server time.

Command/code:

# Initialize a Node.js Lambda project
mkdir serverless-time-api && cd serverless-time-api
npm init -y
npm install aws-sdk

# index.js
echo "exports.handler = async () => {
  return {
    statusCode: 200,
    body: JSON.stringify({ time: new Date().toISOString() }),
  };
};" > index.js

# Deploy with AWS CLI (assumes role and lambda zip prepared)
aws lambda create-function --function-name timeApi \
  --runtime nodejs16.x --handler index.handler --zip-file fileb://function.zip \
  --role arn:aws:iam::123456789012:role/lambda-execution-role

Expected output on API call:

{
  "time": "2024-06-01T14:22:55.123Z"
}

Resume bullet:

  • Developed and deployed a serverless API using AWS Lambda to deliver real-time data with 100ms average response time.

Common mistakes

  • Mistake: Starting projects without a defined scope → Fix: Limit to a small MVP you can complete quickly.
  • Mistake: Writing vague resume bullets like “Worked with AWS” → Fix: Use metrics and outcomes, e.g., “Reduced API latency by 25%”.
  • Mistake: Relying solely on AI to write final code → Fix: Use AI to assist, review, and learn but verify every output yourself.
  • Mistake: Not tracking progress or tagging versions → Fix: Commit frequently and keep a changelog.
  • Mistake: Ignoring project documentation → Fix: Always add a README explaining setup, demo steps, and tech choices.

Next step

Choose a real-world problem relevant to your role or interests. Plan a minimum viable project you can finish in a weekend. Start coding your prototype and document each step. Then come back and try the next move from the video.

Your one action today

Pick the smallest version of this guide and try it in your tool of choice in the next 20 minutes.

Free download
Get the AI Career Starter Kit — 25 ChatGPT prompts + a 12-month plan
Click to get it →
Go deeper
AI Career Stack Starter Kit — $39
75 prompts + resume system + cloud roadmap + Notion template

Get the next AI/career guide in your inbox

One short, practical guide on AI tools, cloud, and the modern career stack. No fluff.

Related guides