Creates a new User Story work item in Azure DevOps with predefined settings, automatic iteration detection, intelligent assignee resolution, and proper Markdown formatting.
MCP Server: Azure DevOps MCP
Primary Tools:
Creates a new User Story work item in Azure DevOps with predefined settings, automatic iteration detection, intelligent assignee resolution, and proper Markdown formatting.
MCP Server: Azure DevOps MCP
Primary Tools:
| { | |
| "builtAt": 1750721394628, | |
| "assets": [ | |
| { | |
| "name": "index.cjs", | |
| "size": 127951 | |
| }, | |
| { | |
| "name": "index.cjs.map", | |
| "size": 434431 |
| $ErrorActionPreference = "Stop" | |
| $tempDir = Join-Path ([System.IO.Path]::GetTempPath()) ([System.IO.Path]::GetRandomFileName()) | |
| $null = New-Item -ItemType Directory -Path $tempDir -Force -ErrorAction SilentlyContinue | |
| try { | |
| $metadata = Invoke-RestMethod "https://api.github.com/repos/git-for-windows/git/releases/latest" | |
| $downloadUrl = $metadata.assets.browser_download_url -match "Git-.+-64-bit.exe" | |
| Write-Verbose "download package from '$downloadURL'" -Verbose |
| $ErrorActionPreference = "Stop" | |
| $tempDir = Join-Path ([System.IO.Path]::GetTempPath()) ([System.IO.Path]::GetRandomFileName()) | |
| $null = New-Item -ItemType Directory -Path $tempDir -Force -ErrorAction SilentlyContinue | |
| try { | |
| $originalValue = [Net.ServicePointManager]::SecurityProtocol | |
| [Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12 | |
| $metadata = Invoke-RestMethod https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/metadata.json | |
| $release = $metadata.LTSReleaseTag[0] -replace '^v' |
| alias sublime=subl | |
| alias shellrc="subl ~/.zshrc" | |
| alias workspace="cd /Users/alexgwolff/Workspace" | |
| export POSH_THEME='~/.oh-my-posh-theme.json' | |
| export PATH="/opt/homebrew/opt/openjdk@11/bin:$PATH" | |
| export BASH_SILENCE_DEPRECATION_WARNING=1 | |
| export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true | |
| export NVM_DIR="$HOME/.nvm" |
Using resident keys If your security key supports FIDO2 resident keys*, like the YubiKey 5 Series, YubiKey 5 FIPS Series, or the Security Key NFC by Yubico, you can enable this when creating your SSH key:
$ ssh-keygen -t ecdsa-sk -O resident
This works the same as before, except a resident key is easier to import to a new computer because it can be loaded directly from the security key. To use the SSH key on a new computer, make sure you have ssh-agent running and simply run:
$ ssh-add -K
This will load a “key handle” into the SSH agent and make the key available for use on the new computer. This works great for short visits, but it won’t last forever – you’ll need to run ssh-add again if you reboot the computer, for example. To import the key permanently, instead run:
| sudo chown -R root:staff /path/to/dir |
| git rm --cached <file-name> or git rm -r --cached <folder-name> |
| [Channel] | |
| _Default | |
| [VL] | |
| 0 |
| New-Item -Path .\projects -ItemType SymbolicLink -Value D:\projects\ |