@fprad0/skill-master-mcp 1.0.0 → 1.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.
Files changed (38) hide show
  1. package/CHANGELOG.md +9 -3
  2. package/README.md +2 -2
  3. package/VERSION.md +4 -4
  4. package/bin/lib/client-config.mjs +11 -9
  5. package/bin/lib/menu-core.mjs +241 -70
  6. package/bin/skill-master-activation.mjs +3 -1
  7. package/bin/skill-master-menu.mjs +127 -17
  8. package/bin/skill-master-success-skills.mjs +52 -2
  9. package/docs/operations/assets/menu-frame-compact.html +78 -75
  10. package/docs/operations/assets/menu-frame-dna-hero.html +87 -0
  11. package/docs/operations/assets/menu-frame-fine-helix.html +89 -0
  12. package/docs/operations/assets/menu-frame-large.html +86 -83
  13. package/docs/operations/assets/menu-frame-running.html +82 -79
  14. package/docs/operations/assets/menu-frame-score-10-contact-sheet.html +184 -0
  15. package/docs/planning/mcp-1.0.0/00_RESUMO_EXECUTIVO_AUDITORIA_MENU.md +118 -0
  16. package/docs/planning/mcp-1.0.0/01_MATRIZ_TESTES_MENU_E_RESULTADOS.md +250 -0
  17. package/docs/planning/mcp-1.0.0/02_PLANO_CORRECAO_ATIVAR_SKILL_APRENDIDA.md +200 -0
  18. package/docs/planning/mcp-1.0.0/03_PLANO_COMPATIBILIDADE_WINDOWS_LINUX_MACOS.md +167 -0
  19. package/docs/planning/mcp-1.0.0/04_PLANO_UI_CYBERPUNK_PIXEL_ART_E_PERFORMANCE.md +165 -0
  20. package/docs/planning/mcp-1.0.0/05_PROMPT_TASK_EXECUCAO_CORRECOES.md +151 -0
  21. package/docs/planning/mcp-1.0.0/06_CHECKLIST_REGRESSAO_PRE_RELEASE.md +159 -0
  22. package/docs/planning/mcp-1.0.0/07_RELATORIO_APLICACAO_CORRECOES_MENU_SKILL_MASTER.md +136 -0
  23. package/docs/planning/mcp-1.0.0/08_AUDITORIA_CRITICA_MENU_NOTA_E_DNA_REFINADO.md +184 -0
  24. package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/00_PROMPT_TASK_MASTER_NOTA_10_10.md +103 -0
  25. package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/01_PROMPT_TASK_FINE_HELIX_DNA.md +116 -0
  26. package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/02_PROMPT_TASK_DNA_HERO_BOOT_AND_MOTION.md +109 -0
  27. package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/03_PROMPT_TASK_MENU_UX_HELP_ERROR_COPY.md +99 -0
  28. package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/04_PROMPT_TASK_EVIDENCE_RENDERER_1_0_0.md +97 -0
  29. package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/05_PROMPT_TASK_CROSS_PLATFORM_UTF8_MOJIBAKE.md +99 -0
  30. package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/06_PROMPT_TASK_VISUAL_REGRESSION_QA.md +105 -0
  31. package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/07_PROMPT_TASK_PRE_RELEASE_SCORE_GATE_10_10.md +104 -0
  32. package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/README_ORDEM_EXECUCAO_NOTA_10_10.md +77 -0
  33. package/manifests/channels/beta.json +7 -7
  34. package/manifests/channels/stable.json +8 -8
  35. package/package.json +16 -14
  36. package/scripts/render-menu-evidence.mjs +115 -49
  37. package/scripts/verify-menu-actions.mjs +13 -8
  38. package/scripts/verify-menu-visual.mjs +90 -0
@@ -1,84 +1,87 @@
1
- <!doctype html>
2
- <html lang="pt-BR">
3
- <head>
4
- <meta charset="utf-8" />
5
- <title>Menu Frame 120x32</title>
6
- <style>
7
- :root {
8
- color-scheme: dark;
9
- --bg: #060606;
10
- --panel: #0d0d0d;
11
- --grid: rgba(255,255,255,0.06);
12
- --line: rgba(255,255,255,0.25);
13
- --text: #f3f3f3;
14
- --muted: #8f949c;
15
- }
16
- * { box-sizing: border-box; }
17
- body {
18
- margin: 0;
19
- min-height: 100vh;
20
- background:
21
- linear-gradient(var(--grid) 1px, transparent 1px),
22
- linear-gradient(90deg, var(--grid) 1px, transparent 1px),
23
- radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 35%),
24
- var(--bg);
25
- background-size: 48px 48px, 48px 48px, auto, auto;
26
- color: var(--text);
27
- font-family: "Courier New", monospace;
28
- padding: 32px;
29
- }
30
- .frame {
31
- max-width: max-content;
32
- background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
33
- border: 1px solid var(--line);
34
- box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 24px 64px rgba(0,0,0,0.45);
35
- padding: 20px 24px;
36
- white-space: pre;
37
- line-height: 1.1;
38
- font-size: 13px;
39
- border-radius: 8px;
40
- }
41
- .title {
42
- margin: 0 0 16px;
43
- color: var(--muted);
44
- letter-spacing: 0.12em;
45
- text-transform: uppercase;
46
- font-size: 12px;
47
- }
48
- </style>
49
- </head>
50
- <body>
51
- <p class="title">Menu Frame 120x32</p>
52
- <pre class="frame">┏╾────────── OVERVIEW▰▱▱──▰───────────────────────────────────────────────────────────────────────────────────────────╼┓
53
- ▌ ▱SKILL MASTER MENU ▐
54
- version 0.0.12 | channel 00.06 | readiness ready ▐
55
- GLOBAL SKILLS 25/25 ▐
56
- ▌ bundle 66 | drafts 3 | study 8 ▐
57
- [FOCUS] diagnostico / doctor ▐
58
- signal ▃▂▂▄▅▇██▇▅▄▄ health ██▇▆▄▃▃▃▄▄▄▄ ▐
59
- ▌ ▱moral-core 10 | frontend-ui 22 | backend-data 19 | ops-clients 12 | knowledge 2 ▐
60
- ┗╾────────────────────▰▰▰─▱─▱─▱─▱─────────────────────────────────────────────────────────────────────────────────────╼┛
61
-
62
- ┌╴────────── ACTIONS▱╍╍──▱────────────────────────────────────────────────────────╶┐ ┏╾──── DNA-CORE▰────────────────╼┓
63
- │ ╍ACTION MATRIX │ ▌ ▱DNA CYBER HELIX / diagnostico ▐
64
- │ up/down move enter run q exit │ ▌ dense helix / low flicker ▐
65
- window 2/23 | visible 8 │ ▌ ⠁ ⢱⣿⣿⣿⠟⠁ ⠁⠁ ⠻⣿⣿⣿⣷ ⠁ ▐
66
- · Status local │ ▌ ⢿⣿⣿⣿⣷⣦⣤⣤⣤⣤⣤⣤⣤⣤⣾⣿⣿⡿ ▐
67
- &gt; Doctor do menu e clientes MCP ◢ │ ▌ ⠄ ⠄⠙⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠋ ⠄ ▐
68
- · Rodar gate completo [off] │ ▌ ⠙⠻⣿⣿⣿⣿⣿⣿⣿⣿⣯⣄⡀ ▐
69
- · Rodar build [off] │ ▌ ⢀⣴⣿⣿⣿⣿⠿⠻⢿⣿⣿⣿⣿⣿⣿⣦⡀ ▐
70
- · Validar pacote no npm publico │ ⢱⣿⣿⣿⠟⠉⠉⠉⠉⠉⠉⠙⠻⢿⣿⣿⣿⣿ ⠁ ▐
71
- · Atualizar pacote global via npm │ ▌ ⢸⣿⣿⣿⣷⣦⣀⣀⣀⣁⣀⣀⣀⣠⣾⣿⣿⡿ ▐
72
- · Configurar registry privado GitHub Packages │ ▌ ▱ ⠄ ⠄⠙⢿⣿⣿⣿⣿⣿⣶⣤⣤⣴⣾⣿⣿⠿⠋ ⠄ ▐
73
- ╍· Modo de ativacao atual │ ┗╾─────▰────────────────────────╼┛
74
- └╴──────────────▱▱▱─╍─╍─╍─╍───────────────────────────────────────────────────────╶┘ ┌╴──── TELEMETRY▱───────────────╶┐
75
- ╭╼══════════ DETAILS▰▱▱══▰════════════════════════════════════════════════════════╾╮ ╍SYSTEM WINDOWS │
76
- ▱DETAIL FOCUS ▐ │ [AREA] diagnostico │
77
- Doctor do menu e clientes MCP ▐ │ [LEAD] frontend-ui 22 │
78
- [AREA] diagnostico | action 2/23 ▐ │ bundle 66 ████████████████ │
79
- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- ▐ │ global 25/25 ██████████████ │
80
- desc: Valida pacote, binarios, skills globais e registros em Codex, Claude ▐ [LINK] cx+ cl+ gm+ ag+ │
81
- ▱exec: /usr/bin/node /tmp/skill-master/bin/skill-master-doctor.mjs ▐ │ ╍skills ▁▂▄▅▇▇▇▆▅▄▄▅ │
82
- ╰╼══════════════▰▰▰═▱═▱═▱═▱═══════════════════════════════════════════════════════╾╯ └╴─────▱────────────────────────╶┘</pre>
83
- </body>
1
+ <!doctype html>
2
+ <html lang="pt-BR">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title>Menu Frame 120x32</title>
6
+ <style>
7
+ :root {
8
+ color-scheme: dark;
9
+ --bg: #050708;
10
+ --panel: #0b1113;
11
+ --grid: rgba(112, 230, 229, 0.08);
12
+ --line: rgba(112, 230, 229, 0.34);
13
+ --text: #ecffff;
14
+ --muted: #9aa8ad;
15
+ --cyan: #70e6e5;
16
+ --amber: #e5c27a;
17
+ }
18
+ * { box-sizing: border-box; }
19
+ body {
20
+ margin: 0;
21
+ min-height: 100vh;
22
+ background:
23
+ linear-gradient(var(--grid) 1px, transparent 1px),
24
+ linear-gradient(90deg, var(--grid) 1px, transparent 1px),
25
+ radial-gradient(circle at 70% 10%, rgba(112,230,229,0.13), transparent 36%),
26
+ radial-gradient(circle at 20% 80%, rgba(229,194,122,0.09), transparent 30%),
27
+ var(--bg);
28
+ background-size: 42px 42px, 42px 42px, auto, auto, auto;
29
+ color: var(--text);
30
+ font-family: "Courier New", monospace;
31
+ padding: 32px;
32
+ }
33
+ .frame {
34
+ max-width: max-content;
35
+ background: linear-gradient(180deg, rgba(112,230,229,0.05), rgba(255,255,255,0.01));
36
+ border: 1px solid var(--line);
37
+ box-shadow: 0 0 0 1px rgba(112,230,229,0.08), 0 24px 64px rgba(0,0,0,0.48);
38
+ padding: 20px 24px;
39
+ white-space: pre;
40
+ line-height: 1.1;
41
+ font-size: 13px;
42
+ border-radius: 10px;
43
+ }
44
+ .title {
45
+ margin: 0 0 16px;
46
+ color: var(--muted);
47
+ letter-spacing: 0.12em;
48
+ text-transform: uppercase;
49
+ font-size: 12px;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body>
54
+ <p class="title">Menu Frame 120x32</p>
55
+ <pre class="frame">+----------- OVERVIEW#..--#--------------------------------------------------------------------------------------------+
56
+ | .SKILL MASTER MENU |
57
+ | version 1.0.1 | channel 1.0.1 | readiness ready |
58
+ | GLOBAL SKILLS 25/25 |
59
+ | bundle 69 | drafts 3 | study 8 |
60
+ | [FOCUS] diagnostico / doctor |
61
+ | signal :::-=####=-- health ###=-:::---- |
62
+ | .moral-core 10 | frontend-ui 22 | backend-data 19 | ops-clients 12 | knowledge 2 |
63
+ +---------------------###-.-.-.-.--------------------------------------------------------------------------------------+
64
+
65
+ +----------- ACTIONS#..--#---------------------------------------------------+ +------ DNA-CORE#..--------------------+
66
+ | .ACTION MATRIX | | .DNA CYBER HELIX / diagnostico |
67
+ | up/down move enter run q exit | | luminous fine helix / low flicker |
68
+ | window 2/23 | visible 8 | | * * ***************** * |
69
+ | - Status local | | **************** |
70
+ | &gt; Doctor do menu e clientes MCP &gt; | | * * ************** * * |
71
+ | - Rodar gate completo | | ******** |
72
+ | - Rodar build | | ************** |
73
+ | - Validar pacote no npm publico | | * * *** * * **** * |
74
+ | - Atualizar pacote global via npm | | ****** * **** |
75
+ | - Configurar registry privado GitHub Packages | | . * * ************ * * |
76
+ | .- Modo de ativacao atual | +-------###----------------------------+
77
+ +--------------###-.-.-.-.---------------------------------------------------+ +------ TELEMETRY#..-------------------+
78
+ +-========== DETAILS#..==#==================================================-+ | .SYSTEM WINDOWS |
79
+ | .DETAIL FOCUS | | [AREA] diagnostico |
80
+ | Doctor do menu e clientes MCP | | [LEAD] frontend-ui 22 |
81
+ | [AREA] diagnostico | action 2/23 | | bundle 69 ################ |
82
+ | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | | global 25/25 ################ |
83
+ | desc: Valida pacote, binarios, skills globais e registros em Codex, Claud | | [LINK] cx+ cl+ gm+ ag+ |
84
+ | .detail: Seguro para outros notebooks. | | .skills .:-=###==--= |
85
+ +-=============###=.=.=.=.==================================================-+ +-------###----------------------------+</pre>
86
+ </body>
84
87
  </html>
@@ -1,80 +1,83 @@
1
- <!doctype html>
2
- <html lang="pt-BR">
3
- <head>
4
- <meta charset="utf-8" />
5
- <title>Menu Running State</title>
6
- <style>
7
- :root {
8
- color-scheme: dark;
9
- --bg: #060606;
10
- --panel: #0d0d0d;
11
- --grid: rgba(255,255,255,0.06);
12
- --line: rgba(255,255,255,0.25);
13
- --text: #f3f3f3;
14
- --muted: #8f949c;
15
- }
16
- * { box-sizing: border-box; }
17
- body {
18
- margin: 0;
19
- min-height: 100vh;
20
- background:
21
- linear-gradient(var(--grid) 1px, transparent 1px),
22
- linear-gradient(90deg, var(--grid) 1px, transparent 1px),
23
- radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 35%),
24
- var(--bg);
25
- background-size: 48px 48px, 48px 48px, auto, auto;
26
- color: var(--text);
27
- font-family: "Courier New", monospace;
28
- padding: 32px;
29
- }
30
- .frame {
31
- max-width: max-content;
32
- background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
33
- border: 1px solid var(--line);
34
- box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 24px 64px rgba(0,0,0,0.45);
35
- padding: 20px 24px;
36
- white-space: pre;
37
- line-height: 1.1;
38
- font-size: 13px;
39
- border-radius: 8px;
40
- }
41
- .title {
42
- margin: 0 0 16px;
43
- color: var(--muted);
44
- letter-spacing: 0.12em;
45
- text-transform: uppercase;
46
- font-size: 12px;
47
- }
48
- </style>
49
- </head>
50
- <body>
51
- <p class="title">Menu Running State</p>
52
- <pre class="frame">╔╼══════════ RUNNING▰════▰════════════════════════════════════════════════════════════════════════════════════════════╾╗
53
- ▌▌▱SKILL_MASTER WORKFLOW ONLINE ▐▐
54
- ▌▌ area diagnostico | launching Doctor do menu e clientes MCP ▐▐
55
- ▌▌▰pulse ▂▂▄▆▇█▇▆▅▄▄▄▅▅▅▄▂▁ ▐▐
56
- ▌▌ &lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/▐▐
57
- ▌▌ . | . + . . + . . + . . +. . + . .+ . . +▐▐
58
- ▌▌▰ + + + + + + + ▐▐
59
- ▌▌ - - |- -+ - - - - - - - - - - - +- - - - - -+ - - - - - - - - - - - +- - - - - -+ -▐▐
60
- ▌▌ + + + + + + + ▐▐
61
- ▌▌▰. | + . .+ . . + . . + . . + . . + . . + . ▐▐
62
- ▌▌ + + + + + + + ▐▐
63
- ▌▌ |+ + + + + + + ▐▐
64
- ▌▌▰ + + + + + + + ▐▐
65
- ▌▌ ▐▐
66
- ▌▌ Valida pacote, binarios, skills globais e registros em Codex, Claude Desktop, Claude Code, Gemini e Antigravity. ▐▐
67
- ▌▌▰resultado esperado: Mostra um relatorio GO/NO-GO com proximos comandos recomendados. ▐▐
68
- ▌▌ exec: /usr/bin/node /tmp/skill-master/bin/skill-master-doctor.mjs ▐▐
69
- ▌▌ ▐▐
70
- ▌▌▰handoff: HUD -&gt; stream real do comando ▐▐
71
- ▌▌ ▐▐
72
- ▌▌ ▐▐
73
- ▌▌▰ ▐▐
74
- ▌▌ ▐▐
75
- ▌▌ ▐▐
76
- ▌▌▰ ▐▐
77
- ▌▌▱ ▐▐
78
- ╚╼════════════════════▰▰▰═════════════════════════════════════════════════════════════════════════════════════════════╾╝</pre>
79
- </body>
1
+ <!doctype html>
2
+ <html lang="pt-BR">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title>Menu Running State</title>
6
+ <style>
7
+ :root {
8
+ color-scheme: dark;
9
+ --bg: #050708;
10
+ --panel: #0b1113;
11
+ --grid: rgba(112, 230, 229, 0.08);
12
+ --line: rgba(112, 230, 229, 0.34);
13
+ --text: #ecffff;
14
+ --muted: #9aa8ad;
15
+ --cyan: #70e6e5;
16
+ --amber: #e5c27a;
17
+ }
18
+ * { box-sizing: border-box; }
19
+ body {
20
+ margin: 0;
21
+ min-height: 100vh;
22
+ background:
23
+ linear-gradient(var(--grid) 1px, transparent 1px),
24
+ linear-gradient(90deg, var(--grid) 1px, transparent 1px),
25
+ radial-gradient(circle at 70% 10%, rgba(112,230,229,0.13), transparent 36%),
26
+ radial-gradient(circle at 20% 80%, rgba(229,194,122,0.09), transparent 30%),
27
+ var(--bg);
28
+ background-size: 42px 42px, 42px 42px, auto, auto, auto;
29
+ color: var(--text);
30
+ font-family: "Courier New", monospace;
31
+ padding: 32px;
32
+ }
33
+ .frame {
34
+ max-width: max-content;
35
+ background: linear-gradient(180deg, rgba(112,230,229,0.05), rgba(255,255,255,0.01));
36
+ border: 1px solid var(--line);
37
+ box-shadow: 0 0 0 1px rgba(112,230,229,0.08), 0 24px 64px rgba(0,0,0,0.48);
38
+ padding: 20px 24px;
39
+ white-space: pre;
40
+ line-height: 1.1;
41
+ font-size: 13px;
42
+ border-radius: 10px;
43
+ }
44
+ .title {
45
+ margin: 0 0 16px;
46
+ color: var(--muted);
47
+ letter-spacing: 0.12em;
48
+ text-transform: uppercase;
49
+ font-size: 12px;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body>
54
+ <p class="title">Menu Running State</p>
55
+ <pre class="frame">+-========== RUNNING#====#============================================================================================-+
56
+ ||.SKILL_MASTER WORKFLOW ONLINE ||
57
+ || area diagnostico | launching Doctor do menu e clientes MCP ||
58
+ ||#pulse ::-=###==---===-:. ||
59
+ || &lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/||
60
+ || . | . + . . + . . + . . +. . + . .+ . . +||
61
+ ||# + + + + + + + ||
62
+ || - - |- -+ - - - - - - - - - - - +- - - - - -+ - - - - - - - - - - - +- - - - - -+ -||
63
+ || + + + + + + + ||
64
+ ||#. | + . .+ . . + . . + . . + . . + . . + . ||
65
+ || + + + + + + + ||
66
+ || |+ + + + + + + ||
67
+ ||# + + + + + + + ||
68
+ || ||
69
+ || Valida pacote, binarios, skills globais e registros em Codex, Claude Desktop, Claude Code, Gemini e Antigravity. ||
70
+ ||#resultado esperado: Mostra um relatorio GO/NO-GO com proximos comandos recomendados. ||
71
+ || exec: C:\Program Files\nodejs\node.exe ||
72
+ || C:\Users\CDT\Documents\F.Prado\skill-master-mcp-release-publish\bin\skill-master-doctor.mjs ||
73
+ ||# ||
74
+ || handoff: HUD -&gt; stream real do comando ||
75
+ || ||
76
+ ||# ||
77
+ || ||
78
+ || ||
79
+ ||# ||
80
+ ||. ||
81
+ +-====================###=============================================================================================-+</pre>
82
+ </body>
80
83
  </html>
@@ -0,0 +1,184 @@
1
+ <!doctype html>
2
+ <html lang="pt-BR">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title>Skill Master Menu Evidence Contact Sheet</title>
6
+ <style>
7
+ :root { color-scheme: dark; --bg: #050708; --line: rgba(112,230,229,0.3); --text: #ecffff; --muted: #9aa8ad; }
8
+ body { margin: 0; background: var(--bg); color: var(--text); font-family: "Courier New", monospace; padding: 24px; }
9
+ h1 { font-size: 16px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
10
+ .grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); align-items: start; }
11
+ .card { border: 1px solid var(--line); border-radius: 10px; padding: 14px; background: rgba(112,230,229,.035); overflow: auto; }
12
+ h2 { font-size: 12px; color: var(--muted); margin: 0 0 10px; text-transform: uppercase; letter-spacing: .1em; }
13
+ pre { margin: 0; white-space: pre; line-height: 1.08; font-size: 10px; }
14
+ </style>
15
+ </head>
16
+ <body>
17
+ <h1>Skill Master Menu Evidence - 1.0.1</h1>
18
+ <main class="grid">
19
+ <section class="card">
20
+ <h2>Menu Frame 120x32</h2>
21
+ <pre>+----------- OVERVIEW#..--#--------------------------------------------------------------------------------------------+
22
+ | .SKILL MASTER MENU |
23
+ | version 1.0.1 | channel 1.0.1 | readiness ready |
24
+ | GLOBAL SKILLS 25/25 |
25
+ | bundle 69 | drafts 3 | study 8 |
26
+ | [FOCUS] diagnostico / doctor |
27
+ | signal :::-=####=-- health ###=-:::---- |
28
+ | .moral-core 10 | frontend-ui 22 | backend-data 19 | ops-clients 12 | knowledge 2 |
29
+ +---------------------###-.-.-.-.--------------------------------------------------------------------------------------+
30
+
31
+ +----------- ACTIONS#..--#---------------------------------------------------+ +------ DNA-CORE#..--------------------+
32
+ | .ACTION MATRIX | | .DNA CYBER HELIX / diagnostico |
33
+ | up/down move enter run q exit | | luminous fine helix / low flicker |
34
+ | window 2/23 | visible 8 | | * * ***************** * |
35
+ | - Status local | | **************** |
36
+ | &gt; Doctor do menu e clientes MCP &gt; | | * * ************** * * |
37
+ | - Rodar gate completo | | ******** |
38
+ | - Rodar build | | ************** |
39
+ | - Validar pacote no npm publico | | * * *** * * **** * |
40
+ | - Atualizar pacote global via npm | | ****** * **** |
41
+ | - Configurar registry privado GitHub Packages | | . * * ************ * * |
42
+ | .- Modo de ativacao atual | +-------###----------------------------+
43
+ +--------------###-.-.-.-.---------------------------------------------------+ +------ TELEMETRY#..-------------------+
44
+ +-========== DETAILS#..==#==================================================-+ | .SYSTEM WINDOWS |
45
+ | .DETAIL FOCUS | | [AREA] diagnostico |
46
+ | Doctor do menu e clientes MCP | | [LEAD] frontend-ui 22 |
47
+ | [AREA] diagnostico | action 2/23 | | bundle 69 ################ |
48
+ | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | | global 25/25 ################ |
49
+ | desc: Valida pacote, binarios, skills globais e registros em Codex, Claud | | [LINK] cx+ cl+ gm+ ag+ |
50
+ | .detail: Seguro para outros notebooks. | | .skills .:-=###==--= |
51
+ +-=============###=.=.=.=.==================================================-+ +-------###----------------------------+</pre>
52
+ </section>
53
+
54
+ <section class="card">
55
+ <h2>Menu Frame 96x24</h2>
56
+ <pre>+----------- OVERVIEW#..--#--------------------------------------------------------------------+
57
+ | .SKILL MASTER MENU |
58
+ | version 1.0.1 | channel 1.0.1 | readiness ready |
59
+ | GLOBAL SKILLS 25/25 |
60
+ | bundle 69 | drafts 3 | study 8 |
61
+ | .signal :::-=### health ###=-::: |
62
+ +-----------------###-.-.-.-.------------------------------------------------------------------+
63
+
64
+ +---------- ACTIONS#..--#----------------------------------------+ +---- DNA-CORE#------------+
65
+ | .ACTION MATRIX | | .DNA CYBER HELIX / ativa |
66
+ | up/down move enter run q exit | | fine strand / focus |
67
+ | window 21/23 | visible 4 | | * ************ * |
68
+ | - Manter skill candidata para estudo | | *********** |
69
+ | - Rejeitar skill candidata | | * * ********* * |
70
+ | .&gt; Ativar skill aprendida no workspace | | . ******** |
71
+ +------------###-.-.-.-.-----------------------------------------+ +-----#--------------------+
72
+ +-========= DETAILS#..==#=======================================-+ +---- TELEMETRY#-----------+
73
+ | .DETAIL FOCUS | | .SYSTEM WINDOWS |
74
+ | Ativar skill aprendida no workspace | | [AREA] ativacao-skill |
75
+ | [AREA] ativacao-skill | action 21/23 | | [LEAD] frontend-ui 22 |
76
+ | [WRITES-LOCAL] [RISK:MEDIUM] [CONFIRM] [TTY] | | bundle 69 ########## |
77
+ | .=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | | .global 25/25 ######## |
78
+ +-===========###=.=.=.=.========================================-+ +-----#--------------------+</pre>
79
+ </section>
80
+
81
+ <section class="card">
82
+ <h2>Menu Running State</h2>
83
+ <pre>+-========== RUNNING#====#============================================================================================-+
84
+ ||.SKILL_MASTER WORKFLOW ONLINE ||
85
+ || area diagnostico | launching Doctor do menu e clientes MCP ||
86
+ ||#pulse ::-=###==---===-:. ||
87
+ || &lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/||
88
+ || . | . + . . + . . + . . +. . + . .+ . . +||
89
+ ||# + + + + + + + ||
90
+ || - - |- -+ - - - - - - - - - - - +- - - - - -+ - - - - - - - - - - - +- - - - - -+ -||
91
+ || + + + + + + + ||
92
+ ||#. | + . .+ . . + . . + . . + . . + . . + . ||
93
+ || + + + + + + + ||
94
+ || |+ + + + + + + ||
95
+ ||# + + + + + + + ||
96
+ || ||
97
+ || Valida pacote, binarios, skills globais e registros em Codex, Claude Desktop, Claude Code, Gemini e Antigravity. ||
98
+ ||#resultado esperado: Mostra um relatorio GO/NO-GO com proximos comandos recomendados. ||
99
+ || exec: C:\Program Files\nodejs\node.exe ||
100
+ || C:\Users\CDT\Documents\F.Prado\skill-master-mcp-release-publish\bin\skill-master-doctor.mjs ||
101
+ ||# ||
102
+ || handoff: HUD -&gt; stream real do comando ||
103
+ || ||
104
+ ||# ||
105
+ || ||
106
+ || ||
107
+ ||# ||
108
+ ||. ||
109
+ +-====================###=============================================================================================-+</pre>
110
+ </section>
111
+
112
+ <section class="card">
113
+ <h2>DNA Hero Boot</h2>
114
+ <pre>+----------- DNA-HERO#----#--------------------------------------------------------------------------------------------+
115
+ | .SKILL_MASTER DNA ONLINE |
116
+ | boot hero / intelligence configuration / terminal-safe animation |
117
+ | package @fprad0/skill-master-mcp | version 1.0.1 | channel 1.0.1 |
118
+ | DNA signal ===-:..:-=###==-=====::..:-== |
119
+ | DNA CYBER HELIX / geral |
120
+ | luminous fine helix / low flicker |
121
+ | * * * * * * **************** * * * * * |
122
+ | ****************** |
123
+ | * * * * * * ****** * ***** * * * * * |
124
+ | ************ |
125
+ | ************ |
126
+ | * * * * * * ***************** * * * * * |
127
+ | *** * *** |
128
+ | * * * * * * ********* **** * * * * * |
129
+ | ******** |
130
+ | ***** ******** |
131
+ | * * * * * * ***************** * * * * * |
132
+ | **** *** |
133
+ | [HELIX] frames 5/48 | global 25/25 |
134
+ | &lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/&gt;-&lt;=/===/ |
135
+ | ONLINE | global 25/25 | bundle 69 |
136
+ | |
137
+ | |
138
+ | |
139
+ | |
140
+ | |
141
+ | |
142
+ | |
143
+ | . |
144
+ +---------------------###----------------------------------------------------------------------------------------------+</pre>
145
+ </section>
146
+
147
+ <section class="card">
148
+ <h2>Fine Helix Focus</h2>
149
+ <pre>+----------- OVERVIEW#----#--------------------------------------------------------------------------------------------+
150
+ | .SKILL MASTER MENU |
151
+ | version 1.0.1 | channel 1.0.1 | readiness ready |
152
+ | GLOBAL SKILLS 25/25 |
153
+ | bundle 69 | drafts 3 | study 8 |
154
+ | [FOCUS] roteamento / promptRecommendation |
155
+ | signal :-=####=-::- health #=-::::-=-:: |
156
+ | .moral-core 10 | frontend-ui 22 | backend-data 19 | ops-clients 12 | knowledge 2 |
157
+ +---------------------###----------------------------------------------------------------------------------------------+
158
+
159
+ +----------- ACTIONS#----#---------------------------------------------------+ +------ DNA-CORE#----------------------+
160
+ | .ACTION MATRIX | | .DNA CYBER HELIX / roteamento |
161
+ | up/down move enter run q exit | | luminous fine helix / low flicker |
162
+ | window 15/23 | visible 9 | | * * ************** * * |
163
+ | - Instalar skills globais do Skill Master | | ********** |
164
+ | - Instalar skills no projeto atual | | * * * *********** * * |
165
+ | - Ativar MCP global neste computador | | *************** |
166
+ | - Registrar clientes MCP | | **** *** |
167
+ | &gt; Ver recomendacao para um prompt &gt; | | * * ************** * * |
168
+ | - Notificacoes de skills aprendidas | | ******** |
169
+ | - Skills para estudar | | * * ************** * * |
170
+ | - Gerar pacote de aprovacao humana | | **** ***** |
171
+ | .- Manter skill candidata para estudo | | . ***************** |
172
+ +--------------###-----------------------------------------------------------+ +-------###----------------------------+
173
+ +-========== DETAILS#====#==================================================-+ +------ TELEMETRY#---------------------+
174
+ | .DETAIL FOCUS | | .SYSTEM WINDOWS |
175
+ | Ver recomendacao para um prompt | | [AREA] roteamento |
176
+ | [AREA] roteamento | action 15/23 | | [LEAD] frontend-ui 22 |
177
+ | [READ-ONLY] [RISK:LOW] [TTY] | | bundle 69 ################ |
178
+ | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | | global 25/25 ################ |
179
+ | desc: Abre um fluxo interativo para avaliar um prompt pelo router local. | | [LINK] cx+ cl+ gm+ ag+ |
180
+ | .detail: Ajuda a decidir se skill-master, skill_master ou skill-master-mcp | | .skills -=###==--=== |
181
+ +-=============###==========================================================-+ +-------###----------------------------+</pre>
182
+ </section></main>
183
+ </body>
184
+ </html>