@neikyun/ciel 6.0.0 → 6.0.1
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/dist/cli/opencode.js +1 -1
- package/package.json +8 -3
package/dist/cli/opencode.js
CHANGED
|
@@ -121,7 +121,7 @@ function generateOpencodeConfig(configPath) {
|
|
|
121
121
|
},
|
|
122
122
|
agent: {
|
|
123
123
|
ciel: {
|
|
124
|
-
description: "Ciel
|
|
124
|
+
description: "Ciel v6 — Primary orchestrator. Full pipeline. Dispatch subagents. Depth: Trivial/Standard/Critical.",
|
|
125
125
|
mode: "primary",
|
|
126
126
|
prompt: "{file:./.opencode/agents/ciel.md}",
|
|
127
127
|
temperature: 0.2,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neikyun/ciel",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
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",
|
|
@@ -21,8 +21,13 @@
|
|
|
21
21
|
"postinstall": "node scripts/postinstall.cjs",
|
|
22
22
|
"prepublishOnly": "npm run build && npm test"
|
|
23
23
|
},
|
|
24
|
-
"
|
|
25
|
-
"@opencode-ai/plugin": "1.14.20"
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"@opencode-ai/plugin": "^1.14.20"
|
|
26
|
+
},
|
|
27
|
+
"peerDependenciesMeta": {
|
|
28
|
+
"@opencode-ai/plugin": {
|
|
29
|
+
"optional": true
|
|
30
|
+
}
|
|
26
31
|
},
|
|
27
32
|
"devDependencies": {
|
|
28
33
|
"@types/node": "^25.6.0",
|