don-cheli-sdd 1.30.0 → 1.31.0

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/CHANGELOG.md CHANGED
@@ -4,6 +4,18 @@ Todos los cambios notables en Don Cheli SDD Framework.
4
4
 
5
5
  Formato basado en [Conventional Commits](https://www.conventionalcommits.org/).
6
6
 
7
+ ## [1.31.0](https://github.com/doncheli/don-cheli-sdd/compare/v1.30.1...v1.31.0) (2026-04-08)
8
+
9
+ ### Nuevas Funcionalidades
10
+
11
+ * 28 slash commands para OpenCode — paridad con /dc:* de Claude Code ([dd85490](https://github.com/doncheli/don-cheli-sdd/commit/dd8549010fcde5748fe7e538471355f32ee51469))
12
+
13
+ ## [1.30.1](https://github.com/doncheli/don-cheli-sdd/compare/v1.30.0...v1.30.1) (2026-04-08)
14
+
15
+ ### Correcciones
16
+
17
+ * integración completa OpenCode — 13 problemas corregidos ([060cc01](https://github.com/doncheli/don-cheli-sdd/commit/060cc0140680bf7487675a117d216b57bbc41cd5))
18
+
7
19
  ## [1.30.0](https://github.com/doncheli/don-cheli-sdd/compare/v1.29.0...v1.30.0) (2026-04-08)
8
20
 
9
21
  ### Nuevas Funcionalidades
package/README.es.md CHANGED
@@ -12,7 +12,7 @@
12
12
  </p>
13
13
  <p align="center">
14
14
  <a href="#-instalación"><img src="https://img.shields.io/badge/instalación-2_minutos-brightgreen" alt="Install"></a>
15
- <img src="https://img.shields.io/badge/versión-1.30.0-blue" alt="Version">
15
+ <img src="https://img.shields.io/badge/versión-1.31.0-blue" alt="Version">
16
16
  <img src="https://img.shields.io/badge/licencia-Apache%202.0-green" alt="License">
17
17
  <img src="https://img.shields.io/badge/idiomas-ES%20|%20EN%20|%20PT-red" alt="Languages">
18
18
  <img src="https://img.shields.io/badge/comandos-93+-purple" alt="Commands">
package/README.md CHANGED
@@ -12,7 +12,7 @@
12
12
  </p>
13
13
  <p align="center">
14
14
  <a href="#-installation"><img src="https://img.shields.io/badge/install-2_minutes-brightgreen" alt="Install"></a>
15
- <img src="https://img.shields.io/badge/version-1.30.0-blue" alt="Version">
15
+ <img src="https://img.shields.io/badge/version-1.31.0-blue" alt="Version">
16
16
  <img src="https://img.shields.io/badge/license-Apache%202.0-green" alt="License">
17
17
  <img src="https://img.shields.io/badge/languages-ES%20|%20EN%20|%20PT-red" alt="Languages">
18
18
  <img src="https://img.shields.io/badge/commands-93+-purple" alt="Commands">
package/README.pt.md CHANGED
@@ -12,7 +12,7 @@
12
12
  </p>
13
13
  <p align="center">
14
14
  <a href="#-instalação"><img src="https://img.shields.io/badge/instalação-2_minutos-brightgreen" alt="Install"></a>
15
- <img src="https://img.shields.io/badge/versão-1.30.0-blue" alt="Version">
15
+ <img src="https://img.shields.io/badge/versão-1.31.0-blue" alt="Version">
16
16
  <img src="https://img.shields.io/badge/licença-Apache%202.0-green" alt="License">
17
17
  <img src="https://img.shields.io/badge/idiomas-ES%20|%20EN%20|%20PT-red" alt="Languages">
18
18
  <img src="https://img.shields.io/badge/comandos-93+-purple" alt="Commands">
package/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.31.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "don-cheli-sdd",
3
- "version": "1.30.0",
3
+ "version": "1.31.0",
4
4
  "description": "Don Cheli SDD Framework — 93+ commands, 51 skills, 15 reasoning models, Autonomous Mode, TDD Iron Law, OWASP audit, PRD Generator, Crash Recovery. Works with Claude Code, Gemini, Cursor, Codex, Warp, Amp, OpenCode. ES/EN/PT.",
5
5
  "main": "bin/don-cheli.js",
6
6
  "scripts": {
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.31.0
@@ -287,8 +287,13 @@ _gen_opencode() {
287
287
  cp "$home/opencode.json" "$project_root/" 2>/dev/null || true
288
288
  fi
289
289
  if [ -d "$home/.opencode" ]; then
290
- mkdir -p "$project_root/.opencode/agents" 2>/dev/null || true
291
- cp -r "$home/.opencode/"* "$project_root/.opencode/" 2>/dev/null || true
290
+ # Copy agents, commands and skills to project root
291
+ for subdir in agents commands skills; do
292
+ if [ -d "$home/.opencode/$subdir" ]; then
293
+ mkdir -p "$project_root/.opencode/$subdir" 2>/dev/null || true
294
+ cp -r "$home/.opencode/$subdir/"* "$project_root/.opencode/$subdir/" 2>/dev/null || true
295
+ fi
296
+ done
292
297
  fi
293
298
 
294
299
  local opencode_config="$HOME/.config/opencode/config.json"
@@ -318,7 +323,7 @@ OPENCODECONFIG
318
323
  # Use jq if available for robust JSON editing
319
324
  if command -v jq &>/dev/null; then
320
325
  # Add external_directory permission
321
- jq '(.permission.external_directory // {}) |= if has("/root/.claude/**") then . else . + {"/root/.claude/**": "allow"} end' "$opencode_config" > "${opencode_config}.tmp" && mv "${opencode_config}.tmp" "$opencode_config"
326
+ jq '(.permission.external_directory // {}) |= if has("${HOME}/.claude/**") then . else . + {"${HOME}/.claude/**": "allow"} end' "$opencode_config" > "${opencode_config}.tmp" && mv "${opencode_config}.tmp" "$opencode_config"
322
327
 
323
328
  # Add skills path
324
329
  jq ".skills.paths += [\"${skills_path}\"] | .skills.paths = (.skills.paths | unique)" "$opencode_config" > "${opencode_config}.tmp" && mv "${opencode_config}.tmp" "$opencode_config"
@@ -331,7 +336,7 @@ OPENCODECONFIG
331
336
  sed -i "s/\"paths\": \[\]/\"paths\": [\"${skills_path}\"]/" "$opencode_config" 2>/dev/null || true
332
337
  fi
333
338
 
334
- if ! grep -q '"/root/.claude' "$opencode_config" 2>/dev/null; then
339
+ if ! grep -q '"${HOME}/.claude' "$opencode_config" 2>/dev/null; then
335
340
  # Simple append to external_directory (might create invalid JSON)
336
341
  sed -i 's/"external_directory": {}/"external_directory": { "\/root\/.claude\/**": "allow" }/' "$opencode_config" 2>/dev/null || true
337
342
  fi
@@ -363,10 +368,14 @@ _gen_qwen() {
363
368
  cp "$home/AGENTS.md" "$project_root/" 2>/dev/null || true
364
369
  fi
365
370
 
366
- # Also copy OpenCode agent (Qwen can use opencode format)
371
+ # Also copy OpenCode agent, commands and skills (Qwen can use opencode format)
367
372
  if [ -d "$home/.opencode" ]; then
368
- mkdir -p "$project_root/.opencode/agents" 2>/dev/null || true
369
- cp -r "$home/.opencode/"* "$project_root/.opencode/" 2>/dev/null || true
373
+ for subdir in agents commands skills; do
374
+ if [ -d "$home/.opencode/$subdir" ]; then
375
+ mkdir -p "$project_root/.opencode/$subdir" 2>/dev/null || true
376
+ cp -r "$home/.opencode/$subdir/"* "$project_root/.opencode/$subdir/" 2>/dev/null || true
377
+ fi
378
+ done
370
379
  fi
371
380
  if [ -f "$home/opencode.json" ]; then
372
381
  cp "$home/opencode.json" "$project_root/" 2>/dev/null || true
@@ -4,7 +4,7 @@
4
4
 
5
5
  set -euo pipefail
6
6
 
7
- VERSION="1.30.0"
7
+ VERSION="1.31.0"
8
8
  REPO_URL="https://github.com/doncheli/don-cheli-sdd"
9
9
  CLEANUP_TMPDIR=""
10
10
 
@@ -258,7 +258,7 @@ _gen_continue() {
258
258
  cat > "$project_root/.continue/config/don-cheli.json" 2>/dev/null << 'CONTEOF' || true
259
259
  {
260
260
  "name": "don-cheli-sdd",
261
- "version": "1.30.0",
261
+ "version": "1.31.0",
262
262
  "description": "Don Cheli SDD Framework",
263
263
  "rules": [
264
264
  "All production code requires tests (TDD: RED → GREEN → REFACTOR)",
@@ -287,8 +287,13 @@ _gen_opencode() {
287
287
  cp "$home/opencode.json" "$project_root/" 2>/dev/null || true
288
288
  fi
289
289
  if [ -d "$home/.opencode" ]; then
290
- mkdir -p "$project_root/.opencode/agents" 2>/dev/null || true
291
- cp -r "$home/.opencode/"* "$project_root/.opencode/" 2>/dev/null || true
290
+ # Copy agents, commands and skills to project root
291
+ for subdir in agents commands skills; do
292
+ if [ -d "$home/.opencode/$subdir" ]; then
293
+ mkdir -p "$project_root/.opencode/$subdir" 2>/dev/null || true
294
+ cp -r "$home/.opencode/$subdir/"* "$project_root/.opencode/$subdir/" 2>/dev/null || true
295
+ fi
296
+ done
292
297
  fi
293
298
 
294
299
  local opencode_config="$HOME/.config/opencode/config.json"
@@ -318,7 +323,7 @@ OPENCODECONFIG
318
323
  # Use jq if available for robust JSON editing
319
324
  if command -v jq &>/dev/null; then
320
325
  # Add external_directory permission
321
- jq '(.permission.external_directory // {}) |= if has("/root/.claude/**") then . else . + {"/root/.claude/**": "allow"} end' "$opencode_config" > "${opencode_config}.tmp" && mv "${opencode_config}.tmp" "$opencode_config"
326
+ jq '(.permission.external_directory // {}) |= if has("${HOME}/.claude/**") then . else . + {"${HOME}/.claude/**": "allow"} end' "$opencode_config" > "${opencode_config}.tmp" && mv "${opencode_config}.tmp" "$opencode_config"
322
327
 
323
328
  # Add skills path
324
329
  jq ".skills.paths += [\"${skills_path}\"] | .skills.paths = (.skills.paths | unique)" "$opencode_config" > "${opencode_config}.tmp" && mv "${opencode_config}.tmp" "$opencode_config"
@@ -331,7 +336,7 @@ OPENCODECONFIG
331
336
  sed -i "s/\"paths\": \[\]/\"paths\": [\"${skills_path}\"]/" "$opencode_config" 2>/dev/null || true
332
337
  fi
333
338
 
334
- if ! grep -q '"/root/.claude' "$opencode_config" 2>/dev/null; then
339
+ if ! grep -q '"${HOME}/.claude' "$opencode_config" 2>/dev/null; then
335
340
  # Simple append to external_directory (might create invalid JSON)
336
341
  sed -i 's/"external_directory": {}/"external_directory": { "\/root\/.claude\/**": "allow" }/' "$opencode_config" 2>/dev/null || true
337
342
  fi
@@ -363,10 +368,14 @@ _gen_qwen() {
363
368
  cp "$home/AGENTS.md" "$project_root/" 2>/dev/null || true
364
369
  fi
365
370
 
366
- # Also copy OpenCode agent (Qwen can use opencode format)
371
+ # Also copy OpenCode agent, commands and skills (Qwen can use opencode format)
367
372
  if [ -d "$home/.opencode" ]; then
368
- mkdir -p "$project_root/.opencode/agents" 2>/dev/null || true
369
- cp -r "$home/.opencode/"* "$project_root/.opencode/" 2>/dev/null || true
373
+ for subdir in agents commands skills; do
374
+ if [ -d "$home/.opencode/$subdir" ]; then
375
+ mkdir -p "$project_root/.opencode/$subdir" 2>/dev/null || true
376
+ cp -r "$home/.opencode/$subdir/"* "$project_root/.opencode/$subdir/" 2>/dev/null || true
377
+ fi
378
+ done
370
379
  fi
371
380
  if [ -f "$home/opencode.json" ]; then
372
381
  cp "$home/opencode.json" "$project_root/" 2>/dev/null || true
@@ -4,7 +4,7 @@
4
4
 
5
5
  set -euo pipefail
6
6
 
7
- VERSION="1.30.0"
7
+ VERSION="1.31.0"
8
8
  REPO_URL="https://github.com/doncheli/don-cheli-sdd"
9
9
  CLEANUP_TMPDIR=""
10
10