mars-agents 0.6.4

Agent package manager for .agents/ directories
Documentation
1
2
3
4
5
6
7
8
9
10
$ErrorActionPreference = "Stop"
$root = Split-Path -Parent (Split-Path -Parent $MyInvocation.MyCommand.Path)
if (-not (Test-Path "$root\.githooks")) {
    Write-Error ".githooks\ directory not found."
    exit 1
}
git -C $root config --local core.hooksPath .githooks
Write-Host "Git hooks activated: core.hooksPath = .githooks"
Write-Host "Active hook: pre-push (full preflight + tag policy)"
Write-Host "Optional hook: pre-commit (fast fmt check) lives at .githooks/optional/pre-commit and is not active by default"