Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
21
This file provides instructions for AI coding agents working in this repository.
Sign in to like and favorite skills
This file provides instructions for AI coding agents working in this repository.
A collection of Windows utility scripts for personal productivity and system management:
Target Platform: Windows 10/11 only
This is a scripts collection, not a compiled application. No build system or test framework.
.\ForceConnectWifi\ForceConnectWiFi.ps1 -networkName "MyNetwork_5G" .\ForceConnectWifi\ForceConnectWiFi.ps1 -networkName "MyNetwork" -Verbose
function Get-Example { <# .SYNOPSIS Brief description of what the function does. .PARAMETER Name Description of the parameter. .EXAMPLE Get-Example -Name "test" .OUTPUTS Return type description #> [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [string]$Name ) # Implementation }
<# .SYNOPSIS Brief description of the script. .PARAMETER paramName Description of parameters. .EXAMPLE .\Script.ps1 -paramName "value" .NOTES File Name : Script.ps1 Prerequisite : PowerShell 5.1 or later #> [CmdletBinding()] param( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [string]$paramName )
[Parameter(Mandatory = $true, Position = 0, HelpMessage = "Description")] [ValidateNotNullOrEmpty()] [ValidateRange(1, 100)] [ValidateSet("Option1", "Option2")] [string]$ParameterName
try { $result = Some-Operation } catch { Write-Error "Failed to perform operation: $_" return $false }
Verb-Noun format (e.g., Connect-Network, Test-NetworkConnection)$camelCase for local variables$PascalCase for parametersWrite-Host for user-facing outputWrite-Verbose for debug/detailed informationWrite-Error for error messages#NoEnv ; Recommended for performance SendMode Input ; Faster, more reliable SetWorkingDir %A_ScriptDir% ; --- Description of hotkey block --- $*HotkeyKey:: ; Action KeyWait, HotkeyKey return
This project uses Conventional Commits style.
<type>(<scope>): <description> [optional body]
autohotkey, profile, git-config)feat - New feature or scriptfix - Bug fixdocs - Documentation only changesrefactor - Code restructuring without behavior changechore - Maintenance tasks, dependencies, configsgit add -p to stage hunks when a file contains multiple logical changesREADME.md with features, requirements, installation, usage, troubleshootingREADME.md