mirror of
https://github.com/github/spec-kit.git
synced 2026-07-03 20:36:23 +08:00
* fix(powershell): strip BOM from templates and ensure No-BOM output * fix: address review feedback on encoding and naming for all ps scripts * fix: address copilot feedback (encoding detection and variable naming) * fix: remove duplicate comments in setup-plan.ps1 * test: verify spec.md is written without UTF-8 BOM * test: also verify BOM-free output under Windows PowerShell 5.1 * fix * fix: resolve merge conflict with main, add TestDescriptionQuoting * fix: resolve TestDescriptionQuoting string quoting conflict with main * test: restore PowerShell prefix-stripping parity test in TestGetFeaturePathsSinglePrefix * fix: remove trailing whitespace from module docstring blank lines * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * test: seed ps_git_repo with BOM-prefixed template to exercise WriteAllText fix * fix: remove duplicate ps_git_repo fixture, restore ext_ps_git_repo * fix: remove unrelated TestDescriptionQuoting and restore original test_ps_specify_feature_prefixed_resolves_by_prefix --------- Co-authored-by: Nimraakram22 <nimra.akram123451@gmail.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
66 lines
2.1 KiB
PowerShell
66 lines
2.1 KiB
PowerShell
#!/usr/bin/env pwsh
|
|
# Setup implementation plan for a feature
|
|
|
|
[CmdletBinding()]
|
|
param(
|
|
[switch]$Json,
|
|
[switch]$Help
|
|
)
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
# Show help if requested
|
|
if ($Help) {
|
|
Write-Output "Usage: ./setup-plan.ps1 [-Json] [-Help]"
|
|
Write-Output " -Json Output results in JSON format"
|
|
Write-Output " -Help Show this help message"
|
|
exit 0
|
|
}
|
|
|
|
# Load common functions
|
|
. "$PSScriptRoot/common.ps1"
|
|
|
|
# Get all paths and variables from common functions
|
|
$paths = Get-FeaturePathsEnv
|
|
|
|
# If feature.json pins an existing feature directory, branch naming is not required.
|
|
if (-not (Test-FeatureJsonMatchesFeatureDir -RepoRoot $paths.REPO_ROOT -ActiveFeatureDir $paths.FEATURE_DIR)) {
|
|
if (-not (Test-FeatureBranch -Branch $paths.CURRENT_BRANCH -HasGit $paths.HAS_GIT)) {
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
# Ensure the feature directory exists
|
|
New-Item -ItemType Directory -Path $paths.FEATURE_DIR -Force | Out-Null
|
|
|
|
# Copy plan template if it exists, otherwise note it or create empty file
|
|
$template = Resolve-Template -TemplateName 'plan-template' -RepoRoot $paths.REPO_ROOT
|
|
if ($template -and (Test-Path $template)) {
|
|
# Read the template content and write it to the implementation plan file with UTF-8 encoding without BOM
|
|
$content = [System.IO.File]::ReadAllText($template)
|
|
$utf8NoBom = New-Object System.Text.UTF8Encoding($false)
|
|
[System.IO.File]::WriteAllText($paths.IMPL_PLAN, $content, $utf8NoBom)
|
|
} else {
|
|
Write-Warning "Plan template not found"
|
|
# Create a basic plan file if template doesn't exist
|
|
New-Item -ItemType File -Path $paths.IMPL_PLAN -Force | Out-Null
|
|
}
|
|
|
|
# Output results
|
|
if ($Json) {
|
|
$result = [PSCustomObject]@{
|
|
FEATURE_SPEC = $paths.FEATURE_SPEC
|
|
IMPL_PLAN = $paths.IMPL_PLAN
|
|
SPECS_DIR = $paths.FEATURE_DIR
|
|
BRANCH = $paths.CURRENT_BRANCH
|
|
HAS_GIT = $paths.HAS_GIT
|
|
}
|
|
$result | ConvertTo-Json -Compress
|
|
} else {
|
|
Write-Output "FEATURE_SPEC: $($paths.FEATURE_SPEC)"
|
|
Write-Output "IMPL_PLAN: $($paths.IMPL_PLAN)"
|
|
Write-Output "SPECS_DIR: $($paths.FEATURE_DIR)"
|
|
Write-Output "BRANCH: $($paths.CURRENT_BRANCH)"
|
|
Write-Output "HAS_GIT: $($paths.HAS_GIT)"
|
|
}
|