@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.
- package/CHANGELOG.md +9 -3
- package/README.md +2 -2
- package/VERSION.md +4 -4
- package/bin/lib/client-config.mjs +11 -9
- package/bin/lib/menu-core.mjs +241 -70
- package/bin/skill-master-activation.mjs +3 -1
- package/bin/skill-master-menu.mjs +127 -17
- package/bin/skill-master-success-skills.mjs +52 -2
- package/docs/operations/assets/menu-frame-compact.html +78 -75
- package/docs/operations/assets/menu-frame-dna-hero.html +87 -0
- package/docs/operations/assets/menu-frame-fine-helix.html +89 -0
- package/docs/operations/assets/menu-frame-large.html +86 -83
- package/docs/operations/assets/menu-frame-running.html +82 -79
- package/docs/operations/assets/menu-frame-score-10-contact-sheet.html +184 -0
- package/docs/planning/mcp-1.0.0/00_RESUMO_EXECUTIVO_AUDITORIA_MENU.md +118 -0
- package/docs/planning/mcp-1.0.0/01_MATRIZ_TESTES_MENU_E_RESULTADOS.md +250 -0
- package/docs/planning/mcp-1.0.0/02_PLANO_CORRECAO_ATIVAR_SKILL_APRENDIDA.md +200 -0
- package/docs/planning/mcp-1.0.0/03_PLANO_COMPATIBILIDADE_WINDOWS_LINUX_MACOS.md +167 -0
- package/docs/planning/mcp-1.0.0/04_PLANO_UI_CYBERPUNK_PIXEL_ART_E_PERFORMANCE.md +165 -0
- package/docs/planning/mcp-1.0.0/05_PROMPT_TASK_EXECUCAO_CORRECOES.md +151 -0
- package/docs/planning/mcp-1.0.0/06_CHECKLIST_REGRESSAO_PRE_RELEASE.md +159 -0
- package/docs/planning/mcp-1.0.0/07_RELATORIO_APLICACAO_CORRECOES_MENU_SKILL_MASTER.md +136 -0
- package/docs/planning/mcp-1.0.0/08_AUDITORIA_CRITICA_MENU_NOTA_E_DNA_REFINADO.md +184 -0
- package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/00_PROMPT_TASK_MASTER_NOTA_10_10.md +103 -0
- package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/01_PROMPT_TASK_FINE_HELIX_DNA.md +116 -0
- package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/02_PROMPT_TASK_DNA_HERO_BOOT_AND_MOTION.md +109 -0
- package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/03_PROMPT_TASK_MENU_UX_HELP_ERROR_COPY.md +99 -0
- package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/04_PROMPT_TASK_EVIDENCE_RENDERER_1_0_0.md +97 -0
- package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/05_PROMPT_TASK_CROSS_PLATFORM_UTF8_MOJIBAKE.md +99 -0
- package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/06_PROMPT_TASK_VISUAL_REGRESSION_QA.md +105 -0
- package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/07_PROMPT_TASK_PRE_RELEASE_SCORE_GATE_10_10.md +104 -0
- package/docs/planning/mcp-1.0.0/prompt-tasks-nota-10-10/README_ORDEM_EXECUCAO_NOTA_10_10.md +77 -0
- package/manifests/channels/beta.json +7 -7
- package/manifests/channels/stable.json +8 -8
- package/package.json +16 -14
- package/scripts/render-menu-evidence.mjs +115 -49
- package/scripts/verify-menu-actions.mjs +13 -8
- package/scripts/verify-menu-visual.mjs +90 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `skill_master` will be tracked here.
|
|
4
4
|
|
|
5
|
-
## [Unreleased]
|
|
6
|
-
|
|
7
|
-
## [1.0.
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
## [1.0.1] - 2026-06-30
|
|
8
|
+
|
|
9
|
+
- Promote the workstation merge into the release line so the menu refinements, fine helix DNA and non-TTY learned-skill activation ship together.
|
|
10
|
+
- Align release metadata, visual evidence and manifest versions to the new npm target `1.0.1`.
|
|
11
|
+
- Keep the safety gates and cross-platform behavior intact while preparing the package for publication.
|
|
12
|
+
|
|
13
|
+
## [1.0.0] - 2026-06-30
|
|
8
14
|
|
|
9
15
|
- Promote all bundled and newly created skills to the global Skill Master installation path on this machine, keeping the same installable bundle available for other computers after publication.
|
|
10
16
|
- Add token-economy planning and handoff skills plus router triggers so long prompts can be compressed, budgeted, and transferred more cleanly.
|
package/README.md
CHANGED
|
@@ -113,7 +113,7 @@ Fluxo atual:
|
|
|
113
113
|
- instalacao publica simples por `npm install -g @fprad0/skill-master-mcp`
|
|
114
114
|
- execucao sem install global por `npx -y @fprad0/skill-master-mcp@latest`
|
|
115
115
|
- validacao rapida da versao publicada por `npm view @fprad0/skill-master-mcp version --registry=https://registry.npmjs.org`
|
|
116
|
-
- esta linha de release publica o HUD Reborn `v1.0.
|
|
116
|
+
- esta linha de release publica o HUD Reborn `v1.0.1`, com DNA cyberpunk pixel art mais artistico e registro MCP multi-cliente com Node absoluto
|
|
117
117
|
|
|
118
118
|
Comandos globais principais:
|
|
119
119
|
|
|
@@ -177,7 +177,7 @@ No estado atual do pacote, esse bundle global tambem inclui cobertura para front
|
|
|
177
177
|
|
|
178
178
|
O bundle tambem inclui uma camada `senior master` de otimizacao e hardening por linguagem em `docs/skill-candidates/v0.0.12`, cobrindo TypeScript, Python, JavaScript, Go, SQL, JSON, Ruby, React, HTML, CSS e C#. Essas skills orientam escrita, organizacao, reducao de complexidade, performance, seguranca, testes e validacao real antes de declarar uma mudanca pronta.
|
|
179
179
|
|
|
180
|
-
O pacote `v1.0.
|
|
180
|
+
O pacote `v1.0.1` preserva esse bundle granular e adiciona a passada visual Reborn do menu, com HUD operacional mais estavel, estados de execucao mais claros e um `DNA-CORE` mais artistico em cyberpunk pixel art.
|
|
181
181
|
|
|
182
182
|
Para instalar o mesmo bundle como skills locais de um projeto, rode o comando dentro da pasta do projeto:
|
|
183
183
|
|
package/VERSION.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Versão
|
|
2
2
|
|
|
3
|
-
Versão funcional planejada: `1.0.
|
|
4
|
-
|
|
5
|
-
Versão técnica para empacotamento semântico: `1.0.
|
|
3
|
+
Versão funcional planejada: `1.0.1`
|
|
4
|
+
|
|
5
|
+
Versão técnica para empacotamento semântico: `1.0.1`
|
|
6
6
|
|
|
7
7
|
## Observação
|
|
8
8
|
|
|
9
|
-
O nome `1.0.
|
|
9
|
+
O nome `1.0.1` será usado na comunicação e nos documentos. Para ferramentas que exigem SemVer, como npm e alguns fluxos de release, usar `1.0.1`.
|
|
@@ -33,15 +33,17 @@ export function defaultClientConfigPaths({
|
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
export function buildSkillMasterServerConfig({
|
|
37
|
-
rootDir,
|
|
38
|
-
nodeExecPath = process.execPath,
|
|
39
|
-
env = DEFAULT_SERVER_ENV,
|
|
40
|
-
} = {}) {
|
|
41
|
-
const packageRoot = rootDir ?? path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..', '..');
|
|
42
|
-
const serverEntry =
|
|
43
|
-
|
|
44
|
-
|
|
36
|
+
export function buildSkillMasterServerConfig({
|
|
37
|
+
rootDir,
|
|
38
|
+
nodeExecPath = process.execPath,
|
|
39
|
+
env = DEFAULT_SERVER_ENV,
|
|
40
|
+
} = {}) {
|
|
41
|
+
const packageRoot = rootDir ?? path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..', '..');
|
|
42
|
+
const serverEntry = packageRoot.startsWith('/')
|
|
43
|
+
? path.posix.join(packageRoot, 'bin', 'skill-master.mjs')
|
|
44
|
+
: path.join(packageRoot, 'bin', 'skill-master.mjs');
|
|
45
|
+
|
|
46
|
+
return {
|
|
45
47
|
command: nodeExecPath,
|
|
46
48
|
args: [serverEntry],
|
|
47
49
|
env: { ...env },
|