-
Notifications
You must be signed in to change notification settings - Fork 322
Expand file tree
/
Copy pathinstall.ps1
More file actions
15 lines (13 loc) · 767 Bytes
/
Copy pathinstall.ps1
File metadata and controls
15 lines (13 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Manual installer (Windows PowerShell) for users who prefer standalone
# skills over the plugin. Plugin install (recommended): inside Claude Code run
# /plugin marketplace add Sahir619/fable-method
# /plugin install fable@fable-method
$ErrorActionPreference = "Stop"
$src = $PSScriptRoot
$dst = Join-Path $HOME ".claude\skills"
New-Item -ItemType Directory -Force -Path $dst | Out-Null
Copy-Item (Join-Path $src "skills\fable-method") $dst -Recurse -Force
Copy-Item (Join-Path $src "skills\fable-loop") $dst -Recurse -Force
Copy-Item (Join-Path $src "skills\fable-judge") $dst -Recurse -Force
Write-Host "Installed: fable-method, fable-loop, fable-judge -> $dst"
Write-Host "Try it: open Claude Code and type /fable-judge after any agent claims work is done."