Skip to content

Demo code for using Prompt Chaining to analyse a existing codebase

Notifications You must be signed in to change notification settings

pengbin2015/AI-SDLC-prompt-chaining

Repository files navigation

Clone this repository using VS Code's Integrated Terminal (Windows, macOS, Linux)

This guide shows how to clone the repository inside VS Code using the built-in terminal.

Repository URL:

Prerequisites

Steps

  1. Open a terminal in VS Code
  • Menu: Terminal > New Terminal
  • Shortcut: Ctrl+ (Windows/Linux) or Cmd+ (macOS)
  1. Choose the shell for your OS
  • Windows: PowerShell (default in VS Code)
  • macOS/Linux: bash or zsh
  1. Navigate to the parent folder where you want the project
  • Windows (PowerShell):
New-Item -Type Directory -Path "$HOME\Projects" -Force | Out-Null
Set-Location "$HOME\Projects"
  • macOS/Linux (bash/zsh):
mkdir -p ~/Projects
cd ~/Projects
  1. Clone the repository (pick HTTPS or SSH)
  • Windows (PowerShell):
# HTTPS
git clone https://github.com/pengbin2015/AI-SDLC-prompt-chaining.git
# SSH
git clone git@github.com:pengbin2015/AI-SDLC-prompt-chaining.git
  • macOS/Linux (bash/zsh):
# HTTPS
git clone https://github.com/pengbin2015/AI-SDLC-prompt-chaining.git
# SSH
git clone git@github.com:pengbin2015/AI-SDLC-prompt-chaining.git
  1. Enter the project and verify the remote
  • Windows (PowerShell):
Set-Location "AI-SDLC-prompt-chaining"
git remote -v
  • macOS/Linux (bash/zsh):
cd AI-SDLC-prompt-chaining
git remote -v

About

Demo code for using Prompt Chaining to analyse a existing codebase

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published