@neikyun/ciel 5.2.13 → 5.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/ciel.js +0 -5
- package/package.json +1 -1
- package/scripts/postinstall.cjs +0 -6
package/bin/ciel.js
CHANGED
|
@@ -94,11 +94,6 @@ function installClaude() {
|
|
|
94
94
|
total += copyDir(join(ASSETS, ".claude/hooks"), join(targetDir, ".claude/hooks"));
|
|
95
95
|
total += copyDir(join(ASSETS, "commands"), join(targetDir, ".claude/commands"));
|
|
96
96
|
total += copyDir(join(ASSETS, "skills"), join(targetDir, ".claude/skills"));
|
|
97
|
-
const cielCmd = join(ASSETS, "platforms/opencode/.opencode/commands/ciel.md");
|
|
98
|
-
if (existsSync(cielCmd)) {
|
|
99
|
-
copyFileSync(cielCmd, join(targetDir, ".claude/commands/ciel.md"));
|
|
100
|
-
total++;
|
|
101
|
-
}
|
|
102
97
|
if (existsSync(join(ASSETS, ".claude/settings.json"))) {
|
|
103
98
|
copyFileSync(join(ASSETS, ".claude/settings.json"), join(targetDir, ".claude/settings.json"));
|
|
104
99
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neikyun/ciel",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.14",
|
|
4
4
|
"description": "Ciel — Deep-reasoning pipeline for LLM-assisted development. OpenCode plugin + multi-platform CLI (OpenCode, Claude Code, more).",
|
|
5
5
|
"main": "./dist/plugin/index.js",
|
|
6
6
|
"types": "./dist/plugin/index.d.ts",
|
package/scripts/postinstall.cjs
CHANGED
|
@@ -99,12 +99,6 @@ function installClaude(targetDir, assets) {
|
|
|
99
99
|
count += copyDir(join(assets, ".claude/hooks"), join(targetDir, ".claude/hooks"));
|
|
100
100
|
count += copyDir(join(assets, "commands"), join(targetDir, ".claude/commands"));
|
|
101
101
|
count += copyDir(join(assets, "skills"), join(targetDir, ".claude/skills"));
|
|
102
|
-
// Copier ciel.md (commande principale) depuis les assets génériques OU OpenCode
|
|
103
|
-
const cielCmd = join(assets, "platforms/opencode/.opencode/commands/ciel.md");
|
|
104
|
-
if (existsSync(cielCmd)) {
|
|
105
|
-
copyFileSync(cielCmd, join(targetDir, ".claude/commands/ciel.md"));
|
|
106
|
-
count++;
|
|
107
|
-
}
|
|
108
102
|
const settings = join(assets, ".claude/settings.json");
|
|
109
103
|
if (existsSync(settings)) { copyFileSync(settings, join(targetDir, ".claude/settings.json")); count++; }
|
|
110
104
|
const claudeMd = join(assets, "CLAUDE.md");
|