@saulwade/swl-ses 1.2.2 → 1.3.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.
@@ -698,11 +698,12 @@
698
698
  ]
699
699
  },
700
700
  "habilidades-swl-herramientas": {
701
- "descripcion": "Herramientas internas SWL: markitdown, revisar-impacto, NestJS",
701
+ "descripcion": "Herramientas internas SWL: markitdown, revisar-impacto, claudemd, NestJS",
702
702
  "tipo": "habilidades",
703
703
  "archivos": [
704
704
  "habilidades/swl-markitdown",
705
705
  "habilidades/swl-revisar-impacto",
706
+ "habilidades/swl-claudemd",
706
707
  "habilidades/nestjs-experto"
707
708
  ],
708
709
  "targets": [
@@ -801,7 +802,8 @@
801
802
  "comandos/swl/exportar-vault.md",
802
803
  "comandos/swl/ayuda.md",
803
804
  "comandos/swl/inbox.md",
804
- "comandos/swl/reflect-skills.md"
805
+ "comandos/swl/reflect-skills.md",
806
+ "comandos/swl/claudemd.md"
805
807
  ],
806
808
  "targets": [
807
809
  "claude",
@@ -956,6 +958,7 @@
956
958
  "hooks/captura-feedback-usuario.js",
957
959
  "hooks/inbox-aviso.js",
958
960
  "hooks/aiisms-detector.js",
961
+ "hooks/claudemd-bloat-detector.js",
959
962
  "hooks/sugerir-regenerar-inventario.js",
960
963
  "hooks/sugerir-contribuir.js",
961
964
  "hooks/_run-hook.sh",
@@ -1136,6 +1139,22 @@
1136
1139
  "gemini"
1137
1140
  ]
1138
1141
  },
1142
+ "claudemd-auditor": {
1143
+ "descripcion": "Auditor de calidad de CLAUDE.md según best practices Anthropic (ADR-0016). Detecta inflación (líneas excesivas, bullets gigantes, secciones canónicas ausentes, sin @references, placeholders). Usado por el comando /swl:claudemd y por el hook claudemd-bloat-detector. Zero-deps. Soporta --json y --strict. Umbrales configurables: SWL_CLAUDEMD_MAX_LINES (default 200), SWL_CLAUDEMD_MAX_BULLET_CHARS (default 1000).",
1144
+ "tipo": "scripts",
1145
+ "archivos": [
1146
+ "scripts/auditar-claudemd.js",
1147
+ "docs/variables-entorno.md"
1148
+ ],
1149
+ "targets": [
1150
+ "claude",
1151
+ "openclaude",
1152
+ "copilot",
1153
+ "opencode",
1154
+ "codex",
1155
+ "gemini"
1156
+ ]
1157
+ },
1139
1158
  "mcp-server-swl": {
1140
1159
  "descripcion": "MCP server stub experimental que expone memoria SWL (aprendizajes, sesiones, instintos) a clientes MCP externos (Cursor, Gemini CLI, OpenCode, Cline, Claude Desktop). Modo stdio. 3 endpoints: swl_memory_search, swl_aprendizajes_recientes, swl_instintos_activos. SIN auth, SIN rate limiting, SIN HTTP transport, SIN tests integración. NO USAR EN PRODUCCIÓN. Trigger para hardening: uso real ≥2 runtimes diferentes consistentemente por ≥1 mes. El binario `swl-mcp-server` se instala automáticamente vía npm install -g (declarado en package.json bin). NO se propaga al runtime SWL — vive en el paquete npm como herramienta opt-in. Ver scripts/mcp-server/README.md para 11 limitaciones explícitas y diseño futuro.",
1141
1160
  "tipo": "scripts",
package/package.json CHANGED
@@ -1,87 +1,87 @@
1
- {
2
- "name": "@saulwade/swl-ses",
3
- "version": "1.2.2",
4
- "description": "Sistema de ingenieria de software auto-evolutivo multi-runtime polyglot con 59 agentes, 154 habilidades, 42 comandos, 64 reglas y 40 hooks. Soporta 11 lenguajes y 5 runtimes: Claude Code, Copilot, OpenCode, Codex y Gemini CLI. 100% en espanol (Mexico). Incluye gateway bidireccional con relay Telegram a Claude Code.",
5
- "bin": {
6
- "swl-ses": "bin/swl-ses.js",
7
- "swl-telegram-bot": "bin/swl-telegram-bot.js",
8
- "swl-mcp-server": "bin/swl-mcp-server.js"
9
- },
10
- "files": [
11
- "bin",
12
- "scripts",
13
- "manifiestos",
14
- "agentes",
15
- "habilidades",
16
- "comandos",
17
- "reglas",
18
- "hooks",
19
- "plantillas",
20
- "contextos",
21
- "instintos",
22
- "schemas",
23
- "_userland",
24
- "plugin.json",
25
- "CLAUDE.md"
26
- ],
27
- "scripts": {
28
- "postinstall": "echo '\n swl-software-engineering-system instalado.\n Ejecuta: npx swl-ses init\n'",
29
- "test": "node --test tests/lib/*.test.js tests/scripts/*.test.js tests/scripts/lib/*.test.js tests/hooks/*.test.js",
30
- "test:validate": "node scripts/validar.js",
31
- "test:manifest": "node scripts/validar-manifest.js",
32
- "test:smoke": "node scripts/smoke-test.js",
33
- "test:aislamiento": "node scripts/validar-tests-aislamiento.js",
34
- "test:all": "npm test && node scripts/validar.js && node scripts/validar-manifest.js",
35
- "test:userland": "node scripts/validar-userland-vacio.js",
36
- "test:release": "npm run test:all && npm run test:userland && npm run test:smoke",
37
- "doctor": "node scripts/doctor.js",
38
- "prepack": "node scripts/limpiar-artefactos-python.js && node scripts/validar-userland-vacio.js",
39
- "prepublishOnly": "npm run test:release",
40
- "publish:all": "node scripts/publicar.js",
41
- "publish:github": "node scripts/publicar.js --solo-github",
42
- "publish:npmjs": "node scripts/publicar.js --solo-npmjs",
43
- "publish:dry": "node scripts/publicar.js --dry-run",
44
- "generate:docs": "node scripts/generar-inventario.js",
45
- "gen-checklists": "node scripts/generar-checklists-consolidados.js",
46
- "gen-checklists:check": "node scripts/generar-checklists-consolidados.js --check",
47
- "field-report": "node scripts/field-report.js",
48
- "configure:branch-protection": "node scripts/configurar-branch-protection.js"
49
- },
50
- "engines": {
51
- "node": ">=22.0.0"
52
- },
53
- "keywords": [
54
- "claude-code",
55
- "github-copilot",
56
- "gemini-cli",
57
- "opencode",
58
- "codex-cli",
59
- "agentes",
60
- "skills",
61
- "multi-runtime",
62
- "spec-driven",
63
- "orquestacion",
64
- "ingenieria-software"
65
- ],
66
- "author": "Saul Wade Leon",
67
- "license": "MIT",
68
- "repository": {
69
- "type": "git",
70
- "url": "git+https://github.com/saul-wade/swl-ses.git"
71
- },
72
- "homepage": "https://github.com/saul-wade/swl-ses#readme",
73
- "bugs": {
74
- "url": "https://github.com/saul-wade/swl-ses/issues"
75
- },
76
- "publishConfig": {
77
- "registry": "https://registry.npmjs.org/",
78
- "access": "public"
79
- },
80
- "dependencies": {
81
- "docx": "^9.6.1"
82
- },
83
- "overrides": {
84
- "pako": "^2.1.0",
85
- "readable-stream": "^4.7.0"
86
- }
87
- }
1
+ {
2
+ "name": "@saulwade/swl-ses",
3
+ "version": "1.3.0",
4
+ "description": "Sistema de ingenieria de software auto-evolutivo multi-runtime polyglot con 59 agentes, 154 habilidades, 42 comandos, 64 reglas y 40 hooks. Soporta 11 lenguajes y 5 runtimes: Claude Code, Copilot, OpenCode, Codex y Gemini CLI. 100% en espanol (Mexico). Incluye gateway bidireccional con relay Telegram a Claude Code.",
5
+ "bin": {
6
+ "swl-ses": "bin/swl-ses.js",
7
+ "swl-telegram-bot": "bin/swl-telegram-bot.js",
8
+ "swl-mcp-server": "bin/swl-mcp-server.js"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "scripts",
13
+ "manifiestos",
14
+ "agentes",
15
+ "habilidades",
16
+ "comandos",
17
+ "reglas",
18
+ "hooks",
19
+ "plantillas",
20
+ "contextos",
21
+ "instintos",
22
+ "schemas",
23
+ "_userland",
24
+ "plugin.json",
25
+ "CLAUDE.md"
26
+ ],
27
+ "scripts": {
28
+ "postinstall": "echo '\n swl-software-engineering-system instalado.\n Ejecuta: npx swl-ses init\n'",
29
+ "test": "node --test tests/lib/*.test.js tests/scripts/*.test.js tests/scripts/lib/*.test.js tests/hooks/*.test.js",
30
+ "test:validate": "node scripts/validar.js",
31
+ "test:manifest": "node scripts/validar-manifest.js",
32
+ "test:smoke": "node scripts/smoke-test.js",
33
+ "test:aislamiento": "node scripts/validar-tests-aislamiento.js",
34
+ "test:all": "npm test && node scripts/validar.js && node scripts/validar-manifest.js",
35
+ "test:userland": "node scripts/validar-userland-vacio.js",
36
+ "test:release": "npm run test:all && npm run test:userland && npm run test:smoke",
37
+ "doctor": "node scripts/doctor.js",
38
+ "prepack": "node scripts/limpiar-artefactos-python.js && node scripts/validar-userland-vacio.js",
39
+ "prepublishOnly": "npm run test:release",
40
+ "publish:all": "node scripts/publicar.js",
41
+ "publish:github": "node scripts/publicar.js --solo-github",
42
+ "publish:npmjs": "node scripts/publicar.js --solo-npmjs",
43
+ "publish:dry": "node scripts/publicar.js --dry-run",
44
+ "generate:docs": "node scripts/generar-inventario.js",
45
+ "gen-checklists": "node scripts/generar-checklists-consolidados.js",
46
+ "gen-checklists:check": "node scripts/generar-checklists-consolidados.js --check",
47
+ "field-report": "node scripts/field-report.js",
48
+ "configure:branch-protection": "node scripts/configurar-branch-protection.js"
49
+ },
50
+ "engines": {
51
+ "node": ">=22.0.0"
52
+ },
53
+ "keywords": [
54
+ "claude-code",
55
+ "github-copilot",
56
+ "gemini-cli",
57
+ "opencode",
58
+ "codex-cli",
59
+ "agentes",
60
+ "skills",
61
+ "multi-runtime",
62
+ "spec-driven",
63
+ "orquestacion",
64
+ "ingenieria-software"
65
+ ],
66
+ "author": "Saul Wade Leon",
67
+ "license": "MIT",
68
+ "repository": {
69
+ "type": "git",
70
+ "url": "git+https://github.com/saul-wade/swl-ses.git"
71
+ },
72
+ "homepage": "https://github.com/saul-wade/swl-ses#readme",
73
+ "bugs": {
74
+ "url": "https://github.com/saul-wade/swl-ses/issues"
75
+ },
76
+ "publishConfig": {
77
+ "registry": "https://registry.npmjs.org/",
78
+ "access": "public"
79
+ },
80
+ "dependencies": {
81
+ "docx": "^9.6.1"
82
+ },
83
+ "overrides": {
84
+ "pako": "^2.1.0",
85
+ "readable-stream": "^4.7.0"
86
+ }
87
+ }