-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathinstall.ps1
More file actions
50 lines (42 loc) · 1.64 KB
/
Copy pathinstall.ps1
File metadata and controls
50 lines (42 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# awesome-novel-skill - AI-assisted novel writing workflow system
# Copyright (C) 2026 modoojunko
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
param(
[Parameter(Mandatory=$true)]
[ValidateSet("claude-code", "hermes", "openclaw")]
[string]$Platform
)
$HOME_DIR = $env:USERPROFILE
switch ($Platform) {
"claude-code" {
$DEST_DIR = "$HOME_DIR\.claude\skills\awesome-novel"
}
"hermes" {
$DEST_DIR = "$HOME_DIR\.hermes\skills\awesome-novel"
}
"openclaw" {
$DEST_DIR = "$HOME_DIR\.openclaw\skills\awesome-novel"
}
}
$SCRIPT_DIR = Split-Path -Parent $MyInvocation.MyCommand.Path
Write-Host "安装到: $DEST_DIR"
# 全量覆盖
Remove-Item -Recurse -Force $DEST_DIR -ErrorAction SilentlyContinue
Copy-Item -Recurse "$SCRIPT_DIR" "$DEST_DIR"
# 清理不需要的文件
Remove-Item -Recurse -Force "$DEST_DIR\.git" -ErrorAction SilentlyContinue
Remove-Item -Recurse -Force "$DEST_DIR\.claude" -ErrorAction SilentlyContinue
Remove-Item -Recurse -Force "$DEST_DIR\docs" -ErrorAction SilentlyContinue
Write-Host "安装完成!"