chore(home): mirror from kalinamall (4507ee0) with papatramp URLs

This commit is contained in:
2026-07-14 20:53:40 +10:00
commit fb0d4597b5
29 changed files with 2552 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#Requires -Version 5.1
<#
.SYNOPSIS
Обёртка над Invoke-MachineBootstrap.ps1 (совместимость).
#>
[CmdletBinding()]
param(
[string]$RulesDest = '',
[switch]$SkipClone,
[switch]$SkipProfile,
[switch]$WhatIf
)
$root = $PSScriptRoot
if (-not $RulesDest) {
$RulesDest = Join-Path $HOME 'CursorRules'
}
& (Join-Path $root 'scripts\Invoke-MachineBootstrap.ps1') @{
Root = $root
RulesDest = $RulesDest
SkipClone = $SkipClone.IsPresent
SkipProfile = $SkipProfile.IsPresent
WhatIf = $WhatIf.IsPresent
}
Write-Host ''
Write-Host '[+] Bootstrap complete. In a project run: init-cursor' -ForegroundColor Green