pumuki 6.3.23 → 6.3.25
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/README.md +18 -0
- package/VERSION +1 -1
- package/core/rules/presets/heuristics/typescript.test.ts +11 -2
- package/docs/EXECUTION_BOARD.md +420 -0
- package/docs/README.md +4 -3
- package/docs/REFRACTOR_PROGRESS.md +197 -1
- package/docs/RELEASE_NOTES.md +13 -0
- package/docs/USAGE.md +15 -1
- package/docs/validation/README.md +6 -0
- package/integrations/lifecycle/cli.ts +316 -0
- package/integrations/lifecycle/consumerPackage.ts +15 -3
- package/integrations/lifecycle/index.ts +28 -0
- package/integrations/lifecycle/loopSessionContract.ts +142 -0
- package/integrations/lifecycle/loopSessionStore.ts +167 -0
- package/integrations/lifecycle/remove.ts +14 -1
- package/package.json +1 -1
- package/scripts/check-refactor-progress-single-active.sh +1 -1
- package/scripts/package-install-smoke-fixtures-content-lib.ts +3 -3
- package/assets/Hook_01.png +0 -0
- package/assets/Hook_02.png +0 -0
- package/assets/ai-start.png +0 -0
- package/assets/ai_gate.png +0 -0
- package/assets/ast_intelligence_01.png +0 -0
- package/assets/ast_intelligence_02.png +0 -0
- package/assets/ast_intelligence_03.png +0 -0
- package/assets/ast_intelligence_04.png +0 -0
- package/assets/ast_intelligence_05.png +0 -0
- package/assets/pre-flight-check.png +0 -0
package/README.md
CHANGED
|
@@ -46,6 +46,13 @@ npx --yes pumuki sdd session --open --change=<change-id>
|
|
|
46
46
|
npx --yes pumuki sdd validate --stage=PRE_COMMIT
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
+
Optional loop runner session (local, deterministic):
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npx --yes pumuki loop run --objective="stabilize gate before commit" --max-attempts=3 --json
|
|
53
|
+
npx --yes pumuki loop list --json
|
|
54
|
+
```
|
|
55
|
+
|
|
49
56
|
Run local gates:
|
|
50
57
|
|
|
51
58
|
```bash
|
|
@@ -180,6 +187,17 @@ npx --yes pumuki sdd session --close
|
|
|
180
187
|
npx --yes pumuki sdd validate --stage=PRE_COMMIT
|
|
181
188
|
```
|
|
182
189
|
|
|
190
|
+
### Loop Runner (Consumer)
|
|
191
|
+
|
|
192
|
+
```bash
|
|
193
|
+
npx --yes pumuki loop run --objective="stabilize gate before commit" --max-attempts=3 --json
|
|
194
|
+
npx --yes pumuki loop status --session=<session-id> --json
|
|
195
|
+
npx --yes pumuki loop stop --session=<session-id> --json
|
|
196
|
+
npx --yes pumuki loop resume --session=<session-id> --json
|
|
197
|
+
npx --yes pumuki loop list --json
|
|
198
|
+
npx --yes pumuki loop export --session=<session-id> --output-json=.audit-reports/loop-session.json
|
|
199
|
+
```
|
|
200
|
+
|
|
183
201
|
### Stage Gates (Consumer)
|
|
184
202
|
|
|
185
203
|
```bash
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v6.3.
|
|
1
|
+
v6.3.24
|
|
@@ -3,7 +3,7 @@ import test from 'node:test';
|
|
|
3
3
|
import { typescriptRules } from './typescript';
|
|
4
4
|
|
|
5
5
|
test('typescriptRules define reglas heurísticas locked para plataforma generic', () => {
|
|
6
|
-
assert.equal(typescriptRules.length,
|
|
6
|
+
assert.equal(typescriptRules.length, 19);
|
|
7
7
|
|
|
8
8
|
const ids = typescriptRules.map((rule) => rule.id);
|
|
9
9
|
assert.deepEqual(ids, [
|
|
@@ -25,6 +25,7 @@ test('typescriptRules define reglas heurísticas locked para plataforma generic'
|
|
|
25
25
|
'heuristics.ts.solid.lsp.override-not-implemented.ast',
|
|
26
26
|
'heuristics.ts.solid.dip.framework-import.ast',
|
|
27
27
|
'heuristics.ts.solid.dip.concrete-instantiation.ast',
|
|
28
|
+
'heuristics.ts.god-class-large-class.ast',
|
|
28
29
|
]);
|
|
29
30
|
|
|
30
31
|
const byId = new Map(typescriptRules.map((rule) => [rule.id, rule]));
|
|
@@ -44,10 +45,18 @@ test('typescriptRules define reglas heurísticas locked para plataforma generic'
|
|
|
44
45
|
byId.get('heuristics.ts.solid.dip.concrete-instantiation.ast')?.then.code,
|
|
45
46
|
'HEURISTICS_SOLID_DIP_CONCRETE_INSTANTIATION_AST'
|
|
46
47
|
);
|
|
48
|
+
assert.equal(
|
|
49
|
+
byId.get('heuristics.ts.god-class-large-class.ast')?.then.code,
|
|
50
|
+
'HEURISTICS_GOD_CLASS_LARGE_CLASS_AST'
|
|
51
|
+
);
|
|
47
52
|
|
|
48
53
|
for (const rule of typescriptRules) {
|
|
49
54
|
assert.equal(rule.platform, 'generic');
|
|
50
|
-
|
|
55
|
+
if (rule.id === 'heuristics.ts.god-class-large-class.ast') {
|
|
56
|
+
assert.equal(rule.severity, 'ERROR');
|
|
57
|
+
} else {
|
|
58
|
+
assert.equal(rule.severity, 'WARN');
|
|
59
|
+
}
|
|
51
60
|
assert.equal(rule.locked, true);
|
|
52
61
|
assert.equal(rule.when.kind, 'Heuristic');
|
|
53
62
|
assert.equal(rule.then.kind, 'Finding');
|
|
@@ -0,0 +1,420 @@
|
|
|
1
|
+
# Execution Board (Simple)
|
|
2
|
+
|
|
3
|
+
Único MD activo para seguimiento operativo diario.
|
|
4
|
+
|
|
5
|
+
## Leyenda
|
|
6
|
+
- ✅ Hecho
|
|
7
|
+
- 🚧 En construccion (maximo 1)
|
|
8
|
+
- ⏳ Pendiente
|
|
9
|
+
- ⛔ Bloqueado
|
|
10
|
+
|
|
11
|
+
## Estado Actual
|
|
12
|
+
- Objetivo: validación completa de funcionalidades + reglas AST en repo mock y repo real externo.
|
|
13
|
+
- Fuente de checklist: inventario automático desde `package.json`, `integrations/lifecycle/cli.ts`, `core/rules/presets/**` e `integrations/config/skillsCompilerTemplates.ts`.
|
|
14
|
+
- Política: una sola tarea en construcción.
|
|
15
|
+
|
|
16
|
+
## Evidencia Mock (actual)
|
|
17
|
+
- Repo: `/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer`
|
|
18
|
+
- Baseline sin SDD previo: ✅ (`openspec/`, `.ai_evidence.json`, `.pumuki/`, `pumuki.rules.ts`, `skills.lock.json`, `skills.sources.json` ausentes antes de instalar)
|
|
19
|
+
- Baseline limpio + reinstall desde cero: ✅ (sin hooks previos, sin artefactos previos, install nuevo)
|
|
20
|
+
- Matriz mock E2E: ✅ `clean=0/0/0`, `violations=1/1/1`, `mixed=1/1/1`
|
|
21
|
+
- Lifecycle remove (managed OpenSpec): ✅ fix aplicado + test dedicado en verde (`integrations/lifecycle/__tests__/remove.test.ts`)
|
|
22
|
+
- Evidencia principal: `/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer/artifacts/pumuki-matrix-summary.json`
|
|
23
|
+
- Nota: `P6.T8` sigue en construcción hasta completar repo real externo + relleno completo checklist.
|
|
24
|
+
|
|
25
|
+
## Fase P6 (Seguimiento)
|
|
26
|
+
- ✅ `P6.T1` Matriz explícita de verificación total definida.
|
|
27
|
+
- ✅ `P6.T2` Validación funcional en repo real interno (`ast-intelligence-hooks`) ejecutada.
|
|
28
|
+
- ✅ `P6.T3` Validación funcional en repo mock (smoke minimal + block) ejecutada.
|
|
29
|
+
- ✅ `P6.T4` Auditoría de reglas ejecutada en suites internas.
|
|
30
|
+
- ✅ `P6.T5` Seguimiento simplificado en MD único (`docs/EXECUTION_BOARD.md`).
|
|
31
|
+
- ✅ `P6.T6` Higiene enterprise aplicada (basura y huérfanos purgados).
|
|
32
|
+
- ✅ `P6.T7` Checklist exhaustiva unificada creada (funcionalidades + reglas AST sin omisiones).
|
|
33
|
+
- 🚧 `P6.T8` Ejecutar checklist completa en repo mock + repo real externo y rellenar evidencia item por item.
|
|
34
|
+
- ⏳ `P6.T9` Consolidar cierre final y veredicto enterprise del bloque P6.
|
|
35
|
+
|
|
36
|
+
## Checklist A — Funcionalidades (sin omisiones)
|
|
37
|
+
Totales: bins=10, lifecycle_commands=20, npm_scripts=98, exports=8, total_items=136.
|
|
38
|
+
|
|
39
|
+
### A.1 Binaries (`package.json#bin`)
|
|
40
|
+
- [ ] `bin:ast-hooks` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
41
|
+
- [x] `bin:pumuki` | mock: ✅ | real: ⏳ | evidencia: mock:/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer/artifacts/pumuki-matrix-summary.json (run_id=pumuki-matrix-20260228T110809Z-85568)
|
|
42
|
+
- [ ] `bin:pumuki-ast-hooks` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
43
|
+
- [x] `bin:pumuki-ci` | mock: ✅ | real: ⏳ | evidencia: mock:/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer/artifacts/pumuki-matrix-summary.json (run_id=pumuki-matrix-20260228T110809Z-85568)
|
|
44
|
+
- [ ] `bin:pumuki-framework` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
45
|
+
- [ ] `bin:pumuki-mcp-enterprise` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
46
|
+
- [ ] `bin:pumuki-mcp-evidence` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
47
|
+
- [x] `bin:pumuki-pre-commit` | mock: ✅ | real: ⏳ | evidencia: mock:/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer/artifacts/pumuki-matrix-summary.json (run_id=pumuki-matrix-20260228T110809Z-85568)
|
|
48
|
+
- [x] `bin:pumuki-pre-push` | mock: ✅ | real: ⏳ | evidencia: mock:/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer/artifacts/pumuki-matrix-summary.json (run_id=pumuki-matrix-20260228T110809Z-85568)
|
|
49
|
+
- [ ] `bin:pumuki-pre-write` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
50
|
+
|
|
51
|
+
### A.2 Comandos Lifecycle (`integrations/lifecycle/cli.ts#HELP_TEXT`)
|
|
52
|
+
- [x] `cmd:pumuki install` | mock: ✅ | real: ⏳ | evidencia: mock:/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer/artifacts/pumuki-matrix-summary.json (run_id=pumuki-matrix-20260228T110809Z-85568)
|
|
53
|
+
- [x] `cmd:pumuki uninstall [--purge-artifacts]` | mock: ✅ | real: ⏳ | evidencia: mock:/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer/artifacts/pumuki-matrix-summary.json (run_id=pumuki-matrix-20260228T110809Z-85568)
|
|
54
|
+
- [x] `cmd:pumuki remove` | mock: ✅ | real: ⏳ | evidencia: mock:/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer/artifacts/pumuki-matrix-summary.json (run_id=pumuki-matrix-20260228T110809Z-85568)
|
|
55
|
+
- [ ] `cmd:pumuki update [--latest|--spec=<package-spec>]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
56
|
+
- [x] `cmd:pumuki doctor` | mock: ✅ | real: ⏳ | evidencia: mock:/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer/artifacts/pumuki-matrix-summary.json (run_id=pumuki-matrix-20260228T110809Z-85568)
|
|
57
|
+
- [x] `cmd:pumuki status` | mock: ✅ | real: ⏳ | evidencia: mock:/Users/juancarlosmerlosalbarracin/Developer/Projects/pumuki-mock-consumer/artifacts/pumuki-matrix-summary.json (run_id=pumuki-matrix-20260228T110809Z-85568)
|
|
58
|
+
- [ ] `cmd:pumuki loop run --objective=<text> [--max-attempts=<n>] [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
59
|
+
- [ ] `cmd:pumuki loop status --session=<session-id> [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
60
|
+
- [ ] `cmd:pumuki loop stop --session=<session-id> [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
61
|
+
- [ ] `cmd:pumuki loop resume --session=<session-id> [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
62
|
+
- [ ] `cmd:pumuki loop list [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
63
|
+
- [ ] `cmd:pumuki loop export --session=<session-id> [--output-json=<path>] [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
64
|
+
- [ ] `cmd:pumuki adapter install --agent=<name> [--dry-run] [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
65
|
+
- [ ] `cmd:pumuki analytics hotspots report [--top=<n>] [--since-days=<n>] [--json] [--output-json=<path>] [--output-markdown=<path>]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
66
|
+
- [ ] `cmd:pumuki analytics hotspots diagnose [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
67
|
+
- [ ] `cmd:pumuki sdd status [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
68
|
+
- [ ] `cmd:pumuki sdd validate [--stage=PRE_WRITE|PRE_COMMIT|PRE_PUSH|CI] [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
69
|
+
- [ ] `cmd:pumuki sdd session --open --change=<change-id> [--ttl-minutes=<n>] [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
70
|
+
- [ ] `cmd:pumuki sdd session --refresh [--ttl-minutes=<n>] [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
71
|
+
- [ ] `cmd:pumuki sdd session --close [--json]` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
72
|
+
|
|
73
|
+
### A.3 Scripts (`package.json#scripts`)
|
|
74
|
+
- [ ] `script:adapter:install` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
75
|
+
- [ ] `script:ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
76
|
+
- [ ] `script:ast:audit` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
77
|
+
- [ ] `script:ast:check-version` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
78
|
+
- [ ] `script:ast:gitflow` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
79
|
+
- [ ] `script:ast:guard:logs` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
80
|
+
- [ ] `script:ast:guard:restart` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
81
|
+
- [ ] `script:ast:guard:start` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
82
|
+
- [ ] `script:ast:guard:status` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
83
|
+
- [ ] `script:ast:guard:stop` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
84
|
+
- [ ] `script:ast:refresh` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
85
|
+
- [ ] `script:ast:release` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
86
|
+
- [ ] `script:audit` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
87
|
+
- [ ] `script:audit-library` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
88
|
+
- [ ] `script:build:ts` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
89
|
+
- [ ] `script:check-version` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
90
|
+
- [ ] `script:framework:menu` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
91
|
+
- [ ] `script:gitflow` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
92
|
+
- [ ] `script:gitflow:reset` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
93
|
+
- [ ] `script:gitflow:status` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
94
|
+
- [ ] `script:gitflow:workflow` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
95
|
+
- [ ] `script:install-hooks` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
96
|
+
- [ ] `script:lint` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
97
|
+
- [ ] `script:maintenance:library` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
98
|
+
- [ ] `script:mcp:enterprise` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
99
|
+
- [ ] `script:mcp:evidence` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
100
|
+
- [ ] `script:pumuki:doctor` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
101
|
+
- [ ] `script:pumuki:install` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
102
|
+
- [ ] `script:pumuki:remove` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
103
|
+
- [ ] `script:pumuki:sdd:pre-write` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
104
|
+
- [ ] `script:pumuki:status` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
105
|
+
- [ ] `script:pumuki:uninstall` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
106
|
+
- [ ] `script:pumuki:update` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
107
|
+
- [ ] `script:skills:compile` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
108
|
+
- [ ] `script:skills:import:custom` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
109
|
+
- [ ] `script:skills:lock:check` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
110
|
+
- [ ] `script:test` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
111
|
+
- [ ] `script:test:deterministic` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
112
|
+
- [ ] `script:test:evidence` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
113
|
+
- [ ] `script:test:heuristics` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
114
|
+
- [ ] `script:test:mcp` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
115
|
+
- [ ] `script:test:operational-memory` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
116
|
+
- [ ] `script:test:saas-ingestion` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
117
|
+
- [ ] `script:test:stage-gates` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
118
|
+
- [ ] `script:typecheck` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
119
|
+
- [ ] `script:validate:adapter-hooks-local` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
120
|
+
- [ ] `script:validation:adapter-readiness` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
121
|
+
- [ ] `script:validation:adapter-real-session-report` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
122
|
+
- [ ] `script:validation:adapter-session-status` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
123
|
+
- [ ] `script:validation:architecture-guardrails` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
124
|
+
- [ ] `script:validation:c020-benchmark` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
125
|
+
- [ ] `script:validation:clean-artifacts` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
126
|
+
- [ ] `script:validation:consumer-ci-artifacts` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
127
|
+
- [ ] `script:validation:consumer-ci-auth-check` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
128
|
+
- [ ] `script:validation:consumer-startup-triage` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
129
|
+
- [ ] `script:validation:consumer-startup-unblock-status` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
130
|
+
- [ ] `script:validation:consumer-support-bundle` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
131
|
+
- [ ] `script:validation:consumer-support-ticket-draft` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
132
|
+
- [ ] `script:validation:consumer-workflow-lint` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
133
|
+
- [ ] `script:validation:lifecycle-smoke` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
134
|
+
- [ ] `script:validation:mock-consumer-ab-report` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
135
|
+
- [ ] `script:validation:package-manifest` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
136
|
+
- [ ] `script:validation:package-smoke` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
137
|
+
- [ ] `script:validation:package-smoke:minimal` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
138
|
+
- [ ] `script:validation:phase5-blockers-readiness` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
139
|
+
- [ ] `script:validation:phase5-escalation:close-submission` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
140
|
+
- [ ] `script:validation:phase5-escalation:mark-submitted` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
141
|
+
- [ ] `script:validation:phase5-escalation:payload` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
142
|
+
- [ ] `script:validation:phase5-escalation:prepare` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
143
|
+
- [ ] `script:validation:phase5-escalation:ready-to-submit` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
144
|
+
- [ ] `script:validation:phase5-execution-closure` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
145
|
+
- [ ] `script:validation:phase5-execution-closure-status` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
146
|
+
- [ ] `script:validation:phase5-external-handoff` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
147
|
+
- [ ] `script:validation:phase5-latest:ready-check` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
148
|
+
- [ ] `script:validation:phase5-latest:refresh` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
149
|
+
- [ ] `script:validation:phase5-latest:sync-docs` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
150
|
+
- [ ] `script:validation:phase5-post-support:refresh` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
151
|
+
- [ ] `script:validation:phase8:autopilot` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
152
|
+
- [ ] `script:validation:phase8:close-ready` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
153
|
+
- [ ] `script:validation:phase8:doctor` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
154
|
+
- [ ] `script:validation:phase8:loop-guard` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
155
|
+
- [ ] `script:validation:phase8:loop-guard-coverage` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
156
|
+
- [ ] `script:validation:phase8:mark-followup-posted-now` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
157
|
+
- [ ] `script:validation:phase8:mark-followup-replied-now` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
158
|
+
- [ ] `script:validation:phase8:mark-followup-state` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
159
|
+
- [ ] `script:validation:phase8:next-step` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
160
|
+
- [ ] `script:validation:phase8:ready-handoff` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
161
|
+
- [ ] `script:validation:phase8:resume-after-billing` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
162
|
+
- [ ] `script:validation:phase8:status-pack` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
163
|
+
- [ ] `script:validation:phase8:tick` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
164
|
+
- [ ] `script:validation:progress-single-active` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
165
|
+
- [ ] `script:verify:adapter-hooks-runtime` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
166
|
+
- [ ] `script:violations` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
167
|
+
- [ ] `script:violations:demo` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
168
|
+
- [ ] `script:violations:list` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
169
|
+
- [ ] `script:violations:show` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
170
|
+
- [ ] `script:violations:summary` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
171
|
+
- [ ] `script:violations:top` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
172
|
+
|
|
173
|
+
### A.4 Exports (`package.json#exports`)
|
|
174
|
+
- [ ] `export:.` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
175
|
+
- [ ] `export:./core/gate/evaluateGate` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
176
|
+
- [ ] `export:./core/gate/evaluateRules` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
177
|
+
- [ ] `export:./integrations/git` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
178
|
+
- [ ] `export:./integrations/lifecycle` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
179
|
+
- [ ] `export:./integrations/mcp` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
180
|
+
- [ ] `export:./integrations/sdd` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
181
|
+
- [ ] `export:./package.json` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
182
|
+
|
|
183
|
+
## Checklist B — Reglas AST (sin omisiones)
|
|
184
|
+
Total reglas AST inventariadas: 235.
|
|
185
|
+
|
|
186
|
+
- [ ] `rule:android.no-global-scope` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
187
|
+
- [ ] `rule:android.no-run-blocking` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
188
|
+
- [ ] `rule:android.no-thread-sleep` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
189
|
+
- [ ] `rule:backend.avoid-explicit-any` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
190
|
+
- [ ] `rule:backend.no-console-log` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
191
|
+
- [ ] `rule:backend.no-empty-catch` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
192
|
+
- [ ] `rule:common.error.empty_catch` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
193
|
+
- [ ] `rule:common.network.missing_error_handling` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
194
|
+
- [ ] `rule:common.types.record_unknown_requires_type` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
195
|
+
- [ ] `rule:common.types.undefined_in_base_type` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
196
|
+
- [ ] `rule:common.types.unknown_without_guard` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
197
|
+
- [ ] `rule:domain-change-without-tests` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
198
|
+
- [ ] `rule:frontend.avoid-single-letter-variables` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
199
|
+
- [ ] `rule:frontend.no-console-log` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
200
|
+
- [ ] `rule:frontend.no-debugger` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
201
|
+
- [ ] `rule:heuristics.android.globalscope.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
202
|
+
- [ ] `rule:heuristics.android.run-blocking.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
203
|
+
- [ ] `rule:heuristics.android.thread-sleep.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
204
|
+
- [ ] `rule:heuristics.ios.anyview.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
205
|
+
- [ ] `rule:heuristics.ios.callback-style.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
206
|
+
- [ ] `rule:heuristics.ios.dispatchgroup.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
207
|
+
- [ ] `rule:heuristics.ios.dispatchqueue.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
208
|
+
- [ ] `rule:heuristics.ios.dispatchsemaphore.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
209
|
+
- [ ] `rule:heuristics.ios.force-cast.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
210
|
+
- [ ] `rule:heuristics.ios.force-try.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
211
|
+
- [ ] `rule:heuristics.ios.force-unwrap.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
212
|
+
- [ ] `rule:heuristics.ios.navigation-view.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
213
|
+
- [ ] `rule:heuristics.ios.observable-object.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
214
|
+
- [ ] `rule:heuristics.ios.on-tap-gesture.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
215
|
+
- [ ] `rule:heuristics.ios.operation-queue.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
216
|
+
- [ ] `rule:heuristics.ios.string-format.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
217
|
+
- [ ] `rule:heuristics.ios.task-detached.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
218
|
+
- [ ] `rule:heuristics.ios.uiscreen-main-bounds.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
219
|
+
- [ ] `rule:heuristics.ios.unchecked-sendable.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
220
|
+
- [ ] `rule:heuristics.ts.buffer-alloc-unsafe-slow.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
221
|
+
- [ ] `rule:heuristics.ts.buffer-alloc-unsafe.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
222
|
+
- [ ] `rule:heuristics.ts.child-process-exec-file-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
223
|
+
- [ ] `rule:heuristics.ts.child-process-exec-file-untrusted-args.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
224
|
+
- [ ] `rule:heuristics.ts.child-process-exec-file.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
225
|
+
- [ ] `rule:heuristics.ts.child-process-exec-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
226
|
+
- [ ] `rule:heuristics.ts.child-process-exec.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
227
|
+
- [ ] `rule:heuristics.ts.child-process-fork.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
228
|
+
- [ ] `rule:heuristics.ts.child-process-import.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
229
|
+
- [ ] `rule:heuristics.ts.child-process-shell-true.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
230
|
+
- [ ] `rule:heuristics.ts.child-process-spawn-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
231
|
+
- [ ] `rule:heuristics.ts.child-process-spawn.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
232
|
+
- [ ] `rule:heuristics.ts.console-error.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
233
|
+
- [ ] `rule:heuristics.ts.console-log.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
234
|
+
- [ ] `rule:heuristics.ts.debugger.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
235
|
+
- [ ] `rule:heuristics.ts.delete-operator.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
236
|
+
- [ ] `rule:heuristics.ts.document-write.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
237
|
+
- [ ] `rule:heuristics.ts.dynamic-shell-invocation.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
238
|
+
- [ ] `rule:heuristics.ts.empty-catch.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
239
|
+
- [ ] `rule:heuristics.ts.eval.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
240
|
+
- [ ] `rule:heuristics.ts.explicit-any.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
241
|
+
- [ ] `rule:heuristics.ts.fs-access-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
242
|
+
- [ ] `rule:heuristics.ts.fs-access-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
243
|
+
- [ ] `rule:heuristics.ts.fs-append-file-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
244
|
+
- [ ] `rule:heuristics.ts.fs-append-file-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
245
|
+
- [ ] `rule:heuristics.ts.fs-chmod-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
246
|
+
- [ ] `rule:heuristics.ts.fs-chmod-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
247
|
+
- [ ] `rule:heuristics.ts.fs-chown-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
248
|
+
- [ ] `rule:heuristics.ts.fs-chown-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
249
|
+
- [ ] `rule:heuristics.ts.fs-close-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
250
|
+
- [ ] `rule:heuristics.ts.fs-close-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
251
|
+
- [ ] `rule:heuristics.ts.fs-copy-file-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
252
|
+
- [ ] `rule:heuristics.ts.fs-copy-file-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
253
|
+
- [ ] `rule:heuristics.ts.fs-cp-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
254
|
+
- [ ] `rule:heuristics.ts.fs-cp-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
255
|
+
- [ ] `rule:heuristics.ts.fs-exists-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
256
|
+
- [ ] `rule:heuristics.ts.fs-exists-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
257
|
+
- [ ] `rule:heuristics.ts.fs-fchmod-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
258
|
+
- [ ] `rule:heuristics.ts.fs-fchmod-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
259
|
+
- [ ] `rule:heuristics.ts.fs-fchown-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
260
|
+
- [ ] `rule:heuristics.ts.fs-fchown-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
261
|
+
- [ ] `rule:heuristics.ts.fs-fdatasync-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
262
|
+
- [ ] `rule:heuristics.ts.fs-fdatasync-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
263
|
+
- [ ] `rule:heuristics.ts.fs-fstat-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
264
|
+
- [ ] `rule:heuristics.ts.fs-fstat-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
265
|
+
- [ ] `rule:heuristics.ts.fs-fsync-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
266
|
+
- [ ] `rule:heuristics.ts.fs-fsync-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
267
|
+
- [ ] `rule:heuristics.ts.fs-ftruncate-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
268
|
+
- [ ] `rule:heuristics.ts.fs-ftruncate-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
269
|
+
- [ ] `rule:heuristics.ts.fs-futimes-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
270
|
+
- [ ] `rule:heuristics.ts.fs-futimes-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
271
|
+
- [ ] `rule:heuristics.ts.fs-lchmod-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
272
|
+
- [ ] `rule:heuristics.ts.fs-lchown-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
273
|
+
- [ ] `rule:heuristics.ts.fs-link-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
274
|
+
- [ ] `rule:heuristics.ts.fs-link-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
275
|
+
- [ ] `rule:heuristics.ts.fs-lstat-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
276
|
+
- [ ] `rule:heuristics.ts.fs-lstat-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
277
|
+
- [ ] `rule:heuristics.ts.fs-lutimes-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
278
|
+
- [ ] `rule:heuristics.ts.fs-lutimes-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
279
|
+
- [ ] `rule:heuristics.ts.fs-mkdir-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
280
|
+
- [ ] `rule:heuristics.ts.fs-mkdir-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
281
|
+
- [ ] `rule:heuristics.ts.fs-mkdtemp-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
282
|
+
- [ ] `rule:heuristics.ts.fs-mkdtemp-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
283
|
+
- [ ] `rule:heuristics.ts.fs-open-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
284
|
+
- [ ] `rule:heuristics.ts.fs-open-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
285
|
+
- [ ] `rule:heuristics.ts.fs-opendir-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
286
|
+
- [ ] `rule:heuristics.ts.fs-opendir-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
287
|
+
- [ ] `rule:heuristics.ts.fs-promises-access.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
288
|
+
- [ ] `rule:heuristics.ts.fs-promises-append-file.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
289
|
+
- [ ] `rule:heuristics.ts.fs-promises-chmod.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
290
|
+
- [ ] `rule:heuristics.ts.fs-promises-chown.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
291
|
+
- [ ] `rule:heuristics.ts.fs-promises-copy-file.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
292
|
+
- [ ] `rule:heuristics.ts.fs-promises-cp.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
293
|
+
- [ ] `rule:heuristics.ts.fs-promises-link.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
294
|
+
- [ ] `rule:heuristics.ts.fs-promises-lstat.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
295
|
+
- [ ] `rule:heuristics.ts.fs-promises-mkdir.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
296
|
+
- [ ] `rule:heuristics.ts.fs-promises-mkdtemp.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
297
|
+
- [ ] `rule:heuristics.ts.fs-promises-open.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
298
|
+
- [ ] `rule:heuristics.ts.fs-promises-opendir.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
299
|
+
- [ ] `rule:heuristics.ts.fs-promises-read-file.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
300
|
+
- [ ] `rule:heuristics.ts.fs-promises-readdir.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
301
|
+
- [ ] `rule:heuristics.ts.fs-promises-readlink.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
302
|
+
- [ ] `rule:heuristics.ts.fs-promises-realpath.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
303
|
+
- [ ] `rule:heuristics.ts.fs-promises-rename.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
304
|
+
- [ ] `rule:heuristics.ts.fs-promises-rm.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
305
|
+
- [ ] `rule:heuristics.ts.fs-promises-stat.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
306
|
+
- [ ] `rule:heuristics.ts.fs-promises-symlink.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
307
|
+
- [ ] `rule:heuristics.ts.fs-promises-unlink.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
308
|
+
- [ ] `rule:heuristics.ts.fs-promises-utimes.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
309
|
+
- [ ] `rule:heuristics.ts.fs-promises-write-file.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
310
|
+
- [ ] `rule:heuristics.ts.fs-read-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
311
|
+
- [ ] `rule:heuristics.ts.fs-read-file-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
312
|
+
- [ ] `rule:heuristics.ts.fs-read-file-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
313
|
+
- [ ] `rule:heuristics.ts.fs-read-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
314
|
+
- [ ] `rule:heuristics.ts.fs-readdir-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
315
|
+
- [ ] `rule:heuristics.ts.fs-readdir-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
316
|
+
- [ ] `rule:heuristics.ts.fs-readlink-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
317
|
+
- [ ] `rule:heuristics.ts.fs-readlink-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
318
|
+
- [ ] `rule:heuristics.ts.fs-readv-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
319
|
+
- [ ] `rule:heuristics.ts.fs-readv-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
320
|
+
- [ ] `rule:heuristics.ts.fs-realpath-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
321
|
+
- [ ] `rule:heuristics.ts.fs-realpath-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
322
|
+
- [ ] `rule:heuristics.ts.fs-rename-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
323
|
+
- [ ] `rule:heuristics.ts.fs-rename-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
324
|
+
- [ ] `rule:heuristics.ts.fs-rm-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
325
|
+
- [ ] `rule:heuristics.ts.fs-rm-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
326
|
+
- [ ] `rule:heuristics.ts.fs-rmdir-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
327
|
+
- [ ] `rule:heuristics.ts.fs-rmdir-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
328
|
+
- [ ] `rule:heuristics.ts.fs-stat-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
329
|
+
- [ ] `rule:heuristics.ts.fs-stat-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
330
|
+
- [ ] `rule:heuristics.ts.fs-statfs-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
331
|
+
- [ ] `rule:heuristics.ts.fs-statfs-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
332
|
+
- [ ] `rule:heuristics.ts.fs-symlink-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
333
|
+
- [ ] `rule:heuristics.ts.fs-symlink-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
334
|
+
- [ ] `rule:heuristics.ts.fs-truncate-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
335
|
+
- [ ] `rule:heuristics.ts.fs-truncate-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
336
|
+
- [ ] `rule:heuristics.ts.fs-unlink-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
337
|
+
- [ ] `rule:heuristics.ts.fs-unlink-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
338
|
+
- [ ] `rule:heuristics.ts.fs-unwatch-file-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
339
|
+
- [ ] `rule:heuristics.ts.fs-utimes-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
340
|
+
- [ ] `rule:heuristics.ts.fs-utimes-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
341
|
+
- [ ] `rule:heuristics.ts.fs-watch-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
342
|
+
- [ ] `rule:heuristics.ts.fs-watch-file-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
343
|
+
- [ ] `rule:heuristics.ts.fs-write-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
344
|
+
- [ ] `rule:heuristics.ts.fs-write-file-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
345
|
+
- [ ] `rule:heuristics.ts.fs-write-file-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
346
|
+
- [ ] `rule:heuristics.ts.fs-write-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
347
|
+
- [ ] `rule:heuristics.ts.fs-writev-callback.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
348
|
+
- [ ] `rule:heuristics.ts.fs-writev-sync.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
349
|
+
- [ ] `rule:heuristics.ts.function-constructor.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
350
|
+
- [ ] `rule:heuristics.ts.god-class-large-class.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
351
|
+
- [ ] `rule:heuristics.ts.hardcoded-secret-token.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
352
|
+
- [ ] `rule:heuristics.ts.inner-html.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
353
|
+
- [ ] `rule:heuristics.ts.insecure-token-date-now.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
354
|
+
- [ ] `rule:heuristics.ts.insecure-token-math-random.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
355
|
+
- [ ] `rule:heuristics.ts.insert-adjacent-html.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
356
|
+
- [ ] `rule:heuristics.ts.jwt-decode-without-verify.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
357
|
+
- [ ] `rule:heuristics.ts.jwt-sign-no-expiration.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
358
|
+
- [ ] `rule:heuristics.ts.jwt-verify-ignore-expiration.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
359
|
+
- [ ] `rule:heuristics.ts.new-promise-async.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
360
|
+
- [ ] `rule:heuristics.ts.process-env-mutation.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
361
|
+
- [ ] `rule:heuristics.ts.process-exit.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
362
|
+
- [ ] `rule:heuristics.ts.set-interval-string.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
363
|
+
- [ ] `rule:heuristics.ts.set-timeout-string.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
364
|
+
- [ ] `rule:heuristics.ts.solid.dip.concrete-instantiation.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
365
|
+
- [ ] `rule:heuristics.ts.solid.dip.framework-import.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
366
|
+
- [ ] `rule:heuristics.ts.solid.isp.interface-command-query-mix.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
367
|
+
- [ ] `rule:heuristics.ts.solid.lsp.override-not-implemented.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
368
|
+
- [ ] `rule:heuristics.ts.solid.ocp.discriminator-switch.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
369
|
+
- [ ] `rule:heuristics.ts.solid.srp.class-command-query-mix.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
370
|
+
- [ ] `rule:heuristics.ts.tls-env-override.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
371
|
+
- [ ] `rule:heuristics.ts.tls-reject-unauthorized-false.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
372
|
+
- [ ] `rule:heuristics.ts.vm-dynamic-code-execution.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
373
|
+
- [ ] `rule:heuristics.ts.weak-crypto-hash.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
374
|
+
- [ ] `rule:heuristics.ts.weak-token-randomuuid.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
375
|
+
- [ ] `rule:heuristics.ts.with-statement.ast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
376
|
+
- [ ] `rule:ios.no-alamofire` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
377
|
+
- [ ] `rule:ios.no-anyview` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
378
|
+
- [ ] `rule:ios.no-completion-handlers-outside-bridges` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
379
|
+
- [ ] `rule:ios.no-force-unwrap` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
380
|
+
- [ ] `rule:ios.no-gcd` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
381
|
+
- [ ] `rule:ios.no-jsonserialization` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
382
|
+
- [ ] `rule:ios.no-print` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
383
|
+
- [ ] `rule:ios.no_anyview` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
384
|
+
- [ ] `rule:ios.no_completion_handlers` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
385
|
+
- [ ] `rule:ios.no_dispatchqueue` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
386
|
+
- [ ] `rule:ios.no_print` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
387
|
+
- [ ] `rule:ios.tdd.domain-changes-require-tests` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
388
|
+
- [ ] `rule:skills.android.no-globalscope` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
389
|
+
- [ ] `rule:skills.android.no-runblocking` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
390
|
+
- [ ] `rule:skills.android.no-thread-sleep` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
391
|
+
- [ ] `rule:skills.backend.avoid-explicit-any` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
392
|
+
- [ ] `rule:skills.backend.enforce-clean-architecture` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
393
|
+
- [ ] `rule:skills.backend.no-console-log` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
394
|
+
- [ ] `rule:skills.backend.no-empty-catch` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
395
|
+
- [ ] `rule:skills.backend.no-god-classes` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
396
|
+
- [ ] `rule:skills.backend.no-solid-violations` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
397
|
+
- [ ] `rule:skills.frontend.avoid-explicit-any` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
398
|
+
- [ ] `rule:skills.frontend.enforce-clean-architecture` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
399
|
+
- [ ] `rule:skills.frontend.no-console-log` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
400
|
+
- [ ] `rule:skills.frontend.no-empty-catch` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
401
|
+
- [ ] `rule:skills.frontend.no-god-classes` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
402
|
+
- [ ] `rule:skills.frontend.no-solid-violations` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
403
|
+
- [ ] `rule:skills.ios.no-anyview` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
404
|
+
- [ ] `rule:skills.ios.no-callback-style-outside-bridges` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
405
|
+
- [ ] `rule:skills.ios.no-dispatchgroup` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
406
|
+
- [ ] `rule:skills.ios.no-dispatchqueue` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
407
|
+
- [ ] `rule:skills.ios.no-dispatchsemaphore` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
408
|
+
- [ ] `rule:skills.ios.no-force-cast` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
409
|
+
- [ ] `rule:skills.ios.no-force-try` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
410
|
+
- [ ] `rule:skills.ios.no-force-unwrap` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
411
|
+
- [ ] `rule:skills.ios.no-navigation-view` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
412
|
+
- [ ] `rule:skills.ios.no-observable-object` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
413
|
+
- [ ] `rule:skills.ios.no-on-tap-gesture` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
414
|
+
- [ ] `rule:skills.ios.no-operation-queue` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
415
|
+
- [ ] `rule:skills.ios.no-string-format` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
416
|
+
- [ ] `rule:skills.ios.no-task-detached` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
417
|
+
- [ ] `rule:skills.ios.no-uiscreen-main-bounds` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
418
|
+
- [ ] `rule:skills.ios.no-unchecked-sendable` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
419
|
+
- [ ] `rule:workflow.bdd.insufficient_features` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
|
420
|
+
- [ ] `rule:workflow.bdd.missing_feature_files` | mock: ⏳ | real: ⏳ | evidencia: ⏳
|
package/docs/README.md
CHANGED
|
@@ -4,14 +4,15 @@ Canonical index for active Pumuki documentation.
|
|
|
4
4
|
|
|
5
5
|
## Ciclo Activo (Seguimiento Temporal)
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- Cierre más reciente: `
|
|
9
|
-
- Alcance actual:
|
|
7
|
+
- Seguimiento diario (único y simplificado): `docs/EXECUTION_BOARD.md`.
|
|
8
|
+
- Cierre más reciente previo: `P5` (auditoría exhaustiva C025 consolidada) en `docs/REFRACTOR_PROGRESS.md`.
|
|
9
|
+
- Alcance actual: validar funcionamiento real de capacidades públicas y auditoría completa de reglas en repo real y/o mock.
|
|
10
10
|
- Ultimo cierre oficial previo: ciclo `022` consolidado en `docs/validation/c022-phase-acceptance-contract.md`.
|
|
11
11
|
- Politica: una sola tarea en construccion (`🚧`) en todo momento.
|
|
12
12
|
|
|
13
13
|
## Product and Architecture
|
|
14
14
|
|
|
15
|
+
- `docs/EXECUTION_BOARD.md`: tablero activo de seguimiento (simple).
|
|
15
16
|
- `docs/ARCHITECTURE.md`: normative architecture contract.
|
|
16
17
|
- `docs/HOW_IT_WORKS.md`: facts-to-gate execution flow.
|
|
17
18
|
- `docs/API_REFERENCE.md`: public APIs, binaries, and command surfaces.
|