pumuki 6.3.103 → 6.3.104
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
|
@@ -6,6 +6,14 @@ This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [6.3.104] - 2026-04-22
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- **Tracking canónico de RuralGo reconocido por el parser de repo-policy:** `appendTrackingActionableContext` ya inspecciona `docs/RURALGO_SEGUIMIENTO.md`, que es la ruta canónica real del consumer.
|
|
14
|
+
- **Filas `| 🚧 | TASK |` tratadas como entradas activas válidas:** el diagnóstico accionable cubre el formato de tabla usado por el hub de seguimiento de RuralGo además del backlog tabular de incidencias.
|
|
15
|
+
- **Cobertura de regresión para el hub canónico:** nuevas pruebas fijan parsing y priorización de `docs/RURALGO_SEGUIMIENTO.md` antes de otros archivos de tracking del consumer.
|
|
16
|
+
|
|
9
17
|
## [6.3.103] - 2026-04-22
|
|
10
18
|
|
|
11
19
|
### Fixed
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v6.3.
|
|
1
|
+
v6.3.104
|
|
@@ -6,6 +6,12 @@ This file keeps only the operational highlights and rollout notes that matter wh
|
|
|
6
6
|
|
|
7
7
|
## 2026-04 (CLI stability and macOS notifications)
|
|
8
8
|
|
|
9
|
+
### 2026-04-22 (v6.3.104)
|
|
10
|
+
|
|
11
|
+
- **RuralGo hub-aware diagnostics:** `TRACKING_CANONICAL_IN_PROGRESS_INVALID` pasa a enriquecer su mensaje usando `docs/RURALGO_SEGUIMIENTO.md` cuando ese hub es el board canónico del consumer.
|
|
12
|
+
- **Compatibilidad con tablas del hub:** el parser reconoce filas `| 🚧 | TASK_ID |` y las devuelve como entradas activas accionables.
|
|
13
|
+
- **Rollout recomendado:** publicar `pumuki@6.3.104`, repin inmediato en `RuralGo` y revalidar `status` / `doctor` / `pumuki-pre-write` con doble fila `🚧` temporal en el hub canónico.
|
|
14
|
+
|
|
9
15
|
### 2026-04-22 (v6.3.103)
|
|
10
16
|
|
|
11
17
|
- **Tracking canónico accionable:** `status`, `doctor` y el gate repo-policy enriquecen `TRACKING_CANONICAL_IN_PROGRESS_INVALID` con referencias a las entradas activas detectadas en el board del consumer.
|
|
@@ -15,6 +15,7 @@ const REPO_POLICY_CODES = new Set<string>([
|
|
|
15
15
|
|
|
16
16
|
const TRACKING_CANDIDATE_FILES = [
|
|
17
17
|
'docs/technical/08-validation/refactor/pumuki-integration-feedback.md',
|
|
18
|
+
'docs/RURALGO_SEGUIMIENTO.md',
|
|
18
19
|
'docs/pumuki/PUMUKI_BUGS_MEJORAS.md',
|
|
19
20
|
'docs/BUGS_Y_MEJORAS_PUMUKI.md',
|
|
20
21
|
'PUMUKI-RESET-MASTER-PLAN.md',
|
|
@@ -32,6 +33,14 @@ export const collectTrackingActiveEntriesFromMarkdown = (
|
|
|
32
33
|
const entries: TrackingActiveEntry[] = [];
|
|
33
34
|
const lines = markdown.split(/\r?\n/u);
|
|
34
35
|
for (const [index, line] of lines.entries()) {
|
|
36
|
+
const boardRowMatch = line.match(/^\|\s*🚧\s*\|\s*([A-Z0-9-]+)\s*\|/u);
|
|
37
|
+
if (boardRowMatch) {
|
|
38
|
+
entries.push({
|
|
39
|
+
taskId: boardRowMatch[1]!.trim(),
|
|
40
|
+
lineNumber: index + 1,
|
|
41
|
+
});
|
|
42
|
+
continue;
|
|
43
|
+
}
|
|
35
44
|
const tableMatch = line.match(
|
|
36
45
|
/^\|\s*\d+\s*\|\s*`([^`]+)`\s*\|.*\|\s*🚧(?:\s+reported\s+activo|\s+En construcción|\s+En construccion)?\s*\|/u
|
|
37
46
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.104",
|
|
4
4
|
"description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|