From 26da423a1bbb18413391c9cb804106ae7f7fe908 Mon Sep 17 00:00:00 2001 From: jed-arden Date: Fri, 11 Jul 2025 15:33:46 +0000 Subject: [PATCH 01/10] Update README with devpod.sh instructions and branch-based structure --- README.md | 83 ++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 57 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index 2f0a75b..fed7a93 100644 --- a/README.md +++ b/README.md @@ -10,29 +10,47 @@ Agentic engineering is the practice of building, deploying, and managing AI agen ### 📋 Prerequisites +**For DevPod.sh (Recommended):** +- [DevPod CLI](https://devpod.sh/docs/getting-started/install) +- Docker Desktop or Docker Engine + +**For Manual Setup:** - Docker or Podman installed - VS Code with Dev Containers extension - Git - Basic understanding of containerization -### ⚡ Quick Start +### ⚡ Quick Start with DevPod.sh (Recommended) + +Launch a ready-to-use workspace in seconds using [DevPod](https://devpod.sh/): + +**Basic Development Environment:** +```bash +devpod up https://github.com/jedarden/agentists-quickstart --branch basic-devpod +``` + +**Security-Focused Environment:** +```bash +devpod up https://github.com/jedarden/agentists-quickstart --branch security-devpod +``` + +### 🛠️ Alternative: Manual VS Code Setup -1. **Clone this repository** +1. **Clone a specific branch** ```bash - git clone https://github.com/jedarden/agentists-quickstart - cd agentists-quickstart + # For basic development + git clone -b basic-devpod https://github.com/jedarden/agentists-quickstart + + # For security-focused development + git clone -b security-devpod https://github.com/jedarden/agentists-quickstart ``` -2. **Choose a DevPod** - - Navigate to `devpods/examples/` - - Select either `basic-devpod` or `security-devpod` - -3. **Open in VS Code** - - Open the chosen devpod folder in VS Code +2. **Open in VS Code** + - Open the cloned folder in VS Code + - Install the Dev Containers extension if needed - Click "Reopen in Container" when prompted - - Wait for the environment to build -4. **Start Building** +3. **Start Building** - All tools and dependencies are pre-installed - Begin developing your agentic applications @@ -61,27 +79,40 @@ Agentic engineering is the practice of building, deploying, and managing AI agen ## 📁 Repository Structure +This repository uses a branch-based approach for different DevPod configurations: + +**Main Branches:** +- `main` - Documentation and project overview +- `devpods-documentation` - Comprehensive DevPods documentation + +**DevPod Branches:** +- `basic-devpod` - General-purpose development environment with Docker-in-Docker +- `security-devpod` - Security research environment with Node.js tools + +Each DevPod branch contains: ``` -agentists-quickstart/ -├── README.md # This file -├── devpods/ # Containerized development environments -│ ├── README.md # DevPods documentation -│ └── examples/ # Ready-to-use DevPod configurations -│ ├── basic-devpod/ # General-purpose development -│ └── security-devpod/ # Security-focused development -└── [future directories] # Additional resources coming soon +├── .devcontainer/ +│ └── devcontainer.json # DevContainer configuration +├── README.md # Branch-specific documentation +└── .gitignore # Standard gitignore ``` ## 🐳 DevPods -DevPods are our implementation of containerized development environments. They provide: +DevPods are our implementation of containerized development environments. Each DevPod is available as a separate branch that can be instantly launched using DevPod.sh. + +**Available DevPods:** -- Pre-configured development tools -- Consistent environments across all developers -- Isolation from local system -- Easy onboarding for new team members +| DevPod | Branch | Use Case | Launch Command | +|--------|--------|----------|----------------| +| Basic Development | `basic-devpod` | General development with Docker-in-Docker | `devpod up https://github.com/jedarden/agentists-quickstart --branch basic-devpod` | +| Security-Focused | `security-devpod` | Security research and Node.js development | `devpod up https://github.com/jedarden/agentists-quickstart --branch security-devpod` | -See the [DevPods documentation](devpods/README.md) for detailed information. +**Benefits:** +- 🚀 Instant workspace setup +- 🔒 Isolated environments +- 📦 Pre-configured tools +- 🤝 Consistent across teams ## ✅ Best Practices From ff076ab8861bd5300d208343b7326202357d4d59 Mon Sep 17 00:00:00 2001 From: jed-arden Date: Fri, 11 Jul 2025 20:00:21 +0000 Subject: [PATCH 02/10] Move Quick Start section to the top for immediate user engagement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Quick Start commands now appear right after the introduction - Reorganized sections for better flow: Quick Start → What is → Prerequisites → Alternative Setup - Removed redundant headings and improved section hierarchy --- README.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index fed7a93..3378e37 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,25 @@ Welcome to the Agentists Quick Start repository - your opinionated guide to getting started with agentic engineering. 🚀 +## ⚡ Quick Start + +Launch a ready-to-use workspace in seconds using [DevPod](https://devpod.sh/): + +**Basic Development Environment:** +```bash +devpod up https://github.com/jedarden/agentists-quickstart --branch basic-devpod +``` + +**Security-Focused Environment:** +```bash +devpod up https://github.com/jedarden/agentists-quickstart --branch security-devpod +``` + ## 🧠 What is Agentic Engineering? Agentic engineering is the practice of building, deploying, and managing AI agents that can autonomously perform tasks, make decisions, and interact with various systems. This repository provides best practices and ready-to-use configurations to accelerate your journey into this emerging field. -## 🚀 Getting Started - -### 📋 Prerequisites +## 📋 Prerequisites **For DevPod.sh (Recommended):** - [DevPod CLI](https://devpod.sh/docs/getting-started/install) @@ -20,21 +32,9 @@ Agentic engineering is the practice of building, deploying, and managing AI agen - Git - Basic understanding of containerization -### ⚡ Quick Start with DevPod.sh (Recommended) - -Launch a ready-to-use workspace in seconds using [DevPod](https://devpod.sh/): - -**Basic Development Environment:** -```bash -devpod up https://github.com/jedarden/agentists-quickstart --branch basic-devpod -``` - -**Security-Focused Environment:** -```bash -devpod up https://github.com/jedarden/agentists-quickstart --branch security-devpod -``` +## 🛠️ Alternative Setup Methods -### 🛠️ Alternative: Manual VS Code Setup +### Manual VS Code Setup 1. **Clone a specific branch** ```bash From a3a28f04ce4a609a64f3b3b4787601070485c481 Mon Sep 17 00:00:00 2001 From: Jed Date: Sat, 12 Jul 2025 12:27:09 +0000 Subject: [PATCH 03/10] Update README to reflect workspace/ branch naming convention MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update all devpod branch references from basic-devpod to workspace/basic - Update all devpod branch references from security-devpod to workspace/security - Update section header from "DevPod Branches" to "Workspace Branches" - Update all example commands to use new branch names 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3378e37..90baa81 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,12 @@ Launch a ready-to-use workspace in seconds using [DevPod](https://devpod.sh/): **Basic Development Environment:** ```bash -devpod up https://github.com/jedarden/agentists-quickstart --branch basic-devpod +devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/basic ``` **Security-Focused Environment:** ```bash -devpod up https://github.com/jedarden/agentists-quickstart --branch security-devpod +devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/security ``` ## 🧠 What is Agentic Engineering? @@ -39,10 +39,10 @@ Agentic engineering is the practice of building, deploying, and managing AI agen 1. **Clone a specific branch** ```bash # For basic development - git clone -b basic-devpod https://github.com/jedarden/agentists-quickstart + git clone -b workspace/basic https://github.com/jedarden/agentists-quickstart # For security-focused development - git clone -b security-devpod https://github.com/jedarden/agentists-quickstart + git clone -b workspace/security https://github.com/jedarden/agentists-quickstart ``` 2. **Open in VS Code** @@ -85,9 +85,9 @@ This repository uses a branch-based approach for different DevPod configurations - `main` - Documentation and project overview - `devpods-documentation` - Comprehensive DevPods documentation -**DevPod Branches:** -- `basic-devpod` - General-purpose development environment with Docker-in-Docker -- `security-devpod` - Security research environment with Node.js tools +**Workspace Branches:** +- `workspace/basic` - General-purpose development environment with Docker-in-Docker +- `workspace/security` - Security research environment with Node.js tools Each DevPod branch contains: ``` @@ -105,8 +105,8 @@ DevPods are our implementation of containerized development environments. Each D | DevPod | Branch | Use Case | Launch Command | |--------|--------|----------|----------------| -| Basic Development | `basic-devpod` | General development with Docker-in-Docker | `devpod up https://github.com/jedarden/agentists-quickstart --branch basic-devpod` | -| Security-Focused | `security-devpod` | Security research and Node.js development | `devpod up https://github.com/jedarden/agentists-quickstart --branch security-devpod` | +| Basic Development | `workspace/basic` | General development with Docker-in-Docker | `devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/basic` | +| Security-Focused | `workspace/security` | Security research and Node.js development | `devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/security` | **Benefits:** - 🚀 Instant workspace setup From b459ba43f427a9facb99f51c56b8acb75453d499 Mon Sep 17 00:00:00 2001 From: Martin Cleaver Date: Sun, 20 Jul 2025 16:26:35 -0400 Subject: [PATCH 04/10] Update README.md --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 90baa81..a2e0116 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,22 @@ Welcome to the Agentists Quick Start repository - your opinionated guide to gett Launch a ready-to-use workspace in seconds using [DevPod](https://devpod.sh/): +**Motivation** +* Share your set up across CodeSpaces and/or your HomeLab +This includes: +* Favored VS Code extensions +* Shared secrets (e.g. Claude API Key e.g. ANTHROPIC_API_KEY) + +**Install DevPod in a Code space** +* Clone this repo +* Create a codespace from it +* Install DevPod +``` + curl -L -o devpod "https://github.com/loft-sh/devpod/releases/latest/download/devpod-linux-amd64" && sudo install -c -m 0755 devpod /usr/local/bin && rm -f devpod +``` + + + **Basic Development Environment:** ```bash devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/basic @@ -152,4 +168,4 @@ For questions and support: --- -**Remember**: The future of software development is agentic. Start building with the right foundation! 🏆 \ No newline at end of file +**Remember**: The future of software development is agentic. Start building with the right foundation! 🏆 From 7d6d45dbb5f1a6a2c61c499cf8d86b22037ffec0 Mon Sep 17 00:00:00 2001 From: Martin Cleaver Date: Sun, 20 Jul 2025 16:36:34 -0400 Subject: [PATCH 05/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2e0116..3d3ceb0 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Launch a ready-to-use workspace in seconds using [DevPod](https://devpod.sh/): * Share your set up across CodeSpaces and/or your HomeLab This includes: * Favored VS Code extensions -* Shared secrets (e.g. Claude API Key e.g. ANTHROPIC_API_KEY) +* Shared secrets (e.g. Claude API Key e.g. ANTHROPIC_API_KEY) from an external provider such as 1password **Install DevPod in a Code space** * Clone this repo From 981390d4ef764bd10ff7a6e1ffd3226b06aaea7b Mon Sep 17 00:00:00 2001 From: Martin Cleaver Date: Sun, 20 Jul 2025 16:39:00 -0400 Subject: [PATCH 06/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d3ceb0..43ccc99 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Launch a ready-to-use workspace in seconds using [DevPod](https://devpod.sh/): * Share your set up across CodeSpaces and/or your HomeLab This includes: * Favored VS Code extensions -* Shared secrets (e.g. Claude API Key e.g. ANTHROPIC_API_KEY) from an external provider such as 1password +* Shared secrets (e.g. Claude API Key e.g. ANTHROPIC_API_KEY) from an external provider such as Github Codespaces Secrets or 1password **Install DevPod in a Code space** * Clone this repo From d04995db45507b6a69d8679035d931d76c56e7fe Mon Sep 17 00:00:00 2001 From: Martin Cleaver Date: Sun, 3 Aug 2025 16:33:46 -0400 Subject: [PATCH 07/10] Update README.md Fixed branch selection --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 43ccc99..af88714 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,12 @@ This includes: **Basic Development Environment:** ```bash -devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/basic +devpod up https://github.com/jedarden/agentists-quickstart@workspace/basic ``` **Security-Focused Environment:** ```bash -devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/security +devpod up https://github.com/jedarden/agentists-quickstart@workspace/security ``` ## 🧠 What is Agentic Engineering? From 2f8145c54531e1b8a4a61c44a1dda60ffe20fbd4 Mon Sep 17 00:00:00 2001 From: Martin Cleaver Date: Sun, 3 Aug 2025 17:28:55 -0400 Subject: [PATCH 08/10] Create .gitattributes Avoids in WSL Windows: > $'\r': command not found syntax error near unexpected token `$'{\r'' --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfdb8b7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.sh text eol=lf From 2f0d190f0e92c3660394fc564157cd7c941aa095 Mon Sep 17 00:00:00 2001 From: Kristof Goossens Date: Fri, 8 Aug 2025 20:37:25 +0200 Subject: [PATCH 09/10] Update devpod branch syntax --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 90baa81..c07cf81 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,12 @@ Launch a ready-to-use workspace in seconds using [DevPod](https://devpod.sh/): **Basic Development Environment:** ```bash -devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/basic +devpod up https://github.com/jedarden/agentists-quickstart@workspace/basic ``` **Security-Focused Environment:** ```bash -devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/security +devpod up https://github.com/jedarden/agentists-quickstart@workspace/security ``` ## 🧠 What is Agentic Engineering? @@ -105,8 +105,8 @@ DevPods are our implementation of containerized development environments. Each D | DevPod | Branch | Use Case | Launch Command | |--------|--------|----------|----------------| -| Basic Development | `workspace/basic` | General development with Docker-in-Docker | `devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/basic` | -| Security-Focused | `workspace/security` | Security research and Node.js development | `devpod up https://github.com/jedarden/agentists-quickstart --branch workspace/security` | +| Basic Development | `workspace/basic` | General development with Docker-in-Docker | `devpod up https://github.com/jedarden/agentists-quickstart@workspace/basic` | +| Security-Focused | `workspace/security` | Security research and Node.js development | `devpod up https://github.com/jedarden/agentists-quickstart@workspace/security` | **Benefits:** - 🚀 Instant workspace setup From da494a80998c23af08f0334aefc55ddd61d47935 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 27 Nov 2025 17:47:56 +0000 Subject: [PATCH 10/10] Remove claude-flow installation and initialization from start.sh - Removed claude-flow package installation check - Removed claude-flow initialization prompt section - Updated header comment to reflect changes - Removed claude-flow docs from resources section - Renumbered steps sequentially (1-5) --- start.sh | 197 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 197 insertions(+) create mode 100644 start.sh diff --git a/start.sh b/start.sh new file mode 100644 index 0000000..66e0183 --- /dev/null +++ b/start.sh @@ -0,0 +1,197 @@ +#!/bin/bash + +# ═══════════════════════════════════════════════════════════════════════════════ +# 🚀 Agentists QuickStart - Batteries Included Launcher +# ═══════════════════════════════════════════════════════════════════════════════ +# This script launches Claude Code in a tmux session +# with proper configuration and error handling. +# ═══════════════════════════════════════════════════════════════════════════════ + +set -e + +# Color codes for output +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +BLUE='\033[0;34m' +MAGENTA='\033[0;35m' +CYAN='\033[0;36m' +NC='\033[0m' # No Color +BOLD='\033[1m' + +# Phonetic alphabet for tmux sessions +PHONETIC_NAMES=("alpha" "bravo" "charlie" "delta" "echo" "foxtrot" "golf" "hotel" "india" "juliet" "kilo" "lima" "mike" "november" "oscar" "papa" "quebec" "romeo" "sierra" "tango" "uniform" "victor" "whiskey" "xray" "yankee" "zulu") + +# Function to print colored messages +print_message() { + local color=$1 + local message=$2 + echo -e "${color}${message}${NC}" +} + +# Function to print section headers +print_header() { + local header=$1 + echo "" + echo -e "${CYAN}╔══════════════════════════════════════════════════════════════════════╗${NC}" + echo -e "${CYAN}║${NC} ${BOLD}${header}${NC}" + echo -e "${CYAN}╚══════════════════════════════════════════════════════════════════════╝${NC}" + echo "" +} + +# Function to print error messages and exit +error_exit() { + local message=$1 + print_message "$RED" "❌ ERROR: $message" + echo "" + print_message "$YELLOW" "💡 Troubleshooting tips:" + echo " 1. Ensure all required tools are installed by running: .devcontainer/install-tools.sh" + echo " 2. Check the installation report: cat .devcontainer/installation-report.md" + echo " 3. Verify Node.js and npm are available: node --version && npm --version" + echo " 4. For tmux issues, try: sudo apt-get install tmux" + echo "" + exit 1 +} + +# Function to check if a command exists +command_exists() { + command -v "$1" >/dev/null 2>&1 +} + +# Function to find next available tmux session name +find_tmux_session() { + for name in "${PHONETIC_NAMES[@]}"; do + if ! tmux has-session -t "$name" 2>/dev/null; then + echo "$name" + return 0 + fi + done + # If all phonetic names are taken, use a timestamp + echo "session-$(date +%s)" + return 0 +} + +# ═══════════════════════════════════════════════════════════════════════════════ +# MAIN SCRIPT START +# ═══════════════════════════════════════════════════════════════════════════════ + +print_header "🚀 Agentists QuickStart - Batteries Included" + +# Step 1: Check prerequisites +print_message "$BLUE" "📋 Checking prerequisites..." + +# Check for Node.js +if ! command_exists node; then + error_exit "Node.js is not installed. Please install Node.js first." +fi + +# Check for npm +if ! command_exists npm; then + error_exit "npm is not installed. Please install npm first." +fi + +# Check for tmux +if ! command_exists tmux; then + print_message "$YELLOW" "⚠️ tmux is not installed. Attempting to install..." + + if command_exists apt-get; then + if sudo apt-get install -y tmux >/dev/null 2>&1; then + print_message "$GREEN" "✅ tmux installed successfully" + else + error_exit "Failed to install tmux. Please install it manually: sudo apt-get install tmux" + fi + else + error_exit "tmux is not installed and automatic installation is not available on this system." + fi +fi + +# Check for claude command (Claude Code) +if ! command_exists claude; then + print_message "$YELLOW" "⚠️ Claude Code is not installed. Attempting to install..." + + if npm install -g @anthropic-ai/claude-code 2>/dev/null || sudo npm install -g @anthropic-ai/claude-code 2>/dev/null; then + print_message "$GREEN" "✅ Claude Code installed successfully" + else + error_exit "Failed to install Claude Code. Please install it manually: npm install -g @anthropic-ai/claude-code" + fi +fi + +print_message "$GREEN" "✅ All prerequisites are installed" + +# Step 2: Check for .mcp.json configuration +print_header "📦 MCP Configuration Check" + +MCP_CONFIG_PATH="${WORKSPACE_FOLDER:-$(pwd)}/.mcp.json" +MCP_CONFIG_EXISTS=false + +if [ -f "$MCP_CONFIG_PATH" ]; then + print_message "$GREEN" "✅ Found .mcp.json configuration at: $MCP_CONFIG_PATH" + MCP_CONFIG_EXISTS=true +else + print_message "$YELLOW" "⚠️ No .mcp.json configuration found at: $MCP_CONFIG_PATH" + print_message "$BLUE" "💡 Claude Code will run without MCP configuration" +fi + +# Step 3: Create tmux session +print_header "🖥️ Tmux Session Management" + +# Find available session name +SESSION_NAME=$(find_tmux_session) +print_message "$BLUE" "🔍 Selected tmux session name: ${BOLD}$SESSION_NAME${NC}" + +# Check if session already exists (shouldn't happen due to find_tmux_session, but double-check) +if tmux has-session -t "$SESSION_NAME" 2>/dev/null; then + print_message "$YELLOW" "⚠️ Session '$SESSION_NAME' already exists. Attaching to it..." + tmux attach-session -t "$SESSION_NAME" + exit 0 +fi + +# Step 4: Launch Claude Code in tmux +print_header "🚀 Launching Claude Code" + +print_message "$BLUE" "📝 Creating tmux session: $SESSION_NAME" + +# Prepare the Claude Code command +if [ "$MCP_CONFIG_EXISTS" = true ]; then + CLAUDE_CMD="claude --dangerously-skip-permissions --mcp-config $MCP_CONFIG_PATH" + print_message "$GREEN" "✅ Launching Claude Code with MCP configuration" +else + CLAUDE_CMD="claude --dangerously-skip-permissions" + print_message "$YELLOW" "⚠️ Launching Claude Code without MCP configuration" +fi + +# Create tmux session and run Claude Code +if tmux new-session -d -s "$SESSION_NAME" "$CLAUDE_CMD" 2>/dev/null; then + print_message "$GREEN" "✅ Claude Code launched successfully in tmux session: $SESSION_NAME" + echo "" + print_header "📌 Session Information" + + echo -e "${GREEN}Session created successfully!${NC}" + echo "" + echo "📋 Tmux Commands Reference:" + echo " • Attach to session: ${CYAN}tmux attach -t $SESSION_NAME${NC}" + echo " • Detach from session: ${CYAN}Ctrl+b, then d${NC}" + echo " • List sessions: ${CYAN}tmux ls${NC}" + echo " • Kill session: ${CYAN}tmux kill-session -t $SESSION_NAME${NC}" + echo " • Switch windows: ${CYAN}Ctrl+b, then n (next) or p (previous)${NC}" + echo " • Create new window: ${CYAN}Ctrl+b, then c${NC}" + echo "" + + # Automatically attach to the session + print_message "$BLUE" "🔗 Attaching to session..." + tmux attach-session -t "$SESSION_NAME" +else + error_exit "Failed to create tmux session. Please check tmux installation and permissions." +fi + +# Step 5: Success message +echo "" +print_header "✅ Setup Complete!" + +print_message "$GREEN" "🎉 Your Batteries-Included development environment is ready!" +echo "" +echo "Resources:" +echo " • Claude Code Docs: https://docs.anthropic.com/en/docs/claude-code" +echo " • Report Issues: https://github.com/jedarden/agentists-quickstart/issues" +echo "" +print_message "$CYAN" "Happy coding! 🚀" \ No newline at end of file