bps-kit 1.0.15 → 1.0.16
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
|
@@ -5,6 +5,10 @@ Todas as mudanças notáveis neste projeto serão documentadas neste arqui
|
|
|
5
5
|
O formato é baseado no [Keep a Changelog](https://keepachangelog.com/pt-BR/1.0.0/),
|
|
6
6
|
e este projeto adere ao [Versionamento Semântico](https://semver.org/lang/pt-BR/).
|
|
7
7
|
|
|
8
|
+
## [1.0.16] - 2026-03-08
|
|
9
|
+
### Corrigido
|
|
10
|
+
- Sincronização dos Paths Estáticos: O template global do projeto (`GEMINI.md`) possuía vestígios do path absoluto de leitura desvinculadas às regras autônomas implementadas para instâncias individuais. Isto estava impedindo o construtor regex do backend (`convert_to_vscode.js`) de ler e traduzir os caminhos originais em caminhos ocultados apropriados para lidar com o GitHub Copilot Agent.
|
|
11
|
+
|
|
8
12
|
## [1.0.15] - 2026-03-08
|
|
9
13
|
### Corrigido
|
|
10
14
|
- Eliminado Overhead Brutal (+66 Referências Vias Copilot) mudando os Markdowns de Skills ativas para uma pasta raiz independente `.copilot-skills/` em vez de abrigá-las no escopo autônomo do `.github/`.
|
package/bin/convert_to_vscode.js
CHANGED
|
@@ -24,6 +24,7 @@ async function convertToVsCode(destAgents, destBase) {
|
|
|
24
24
|
content = content.replace(/\.\/\.agents\/skills\//g, './.copilot-skills/');
|
|
25
25
|
content = content.replace(/\.\/\.agents\/vault\//g, './.copilot-vault/');
|
|
26
26
|
content = content.replace(/\.\/\.agents\/rules\/GEMINI\.md/g, './.github/copilot-instructions.md');
|
|
27
|
+
content = content.replace(/\.\/\.agents\/VAULT_INDEX\.md/g, './.github/VAULT_INDEX.md');
|
|
27
28
|
content = content.replace(/\{skill-name\}\/SKILL\.md/g, '{skill-name}.md'); // Para buscar arquivos achatados invés de diretórios
|
|
28
29
|
|
|
29
30
|
// Trocar sintaxe bruta de trigger pelo ApplyTo nativo
|
package/package.json
CHANGED
package/templates/VAULT_INDEX.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# 🗄️ Vault Index
|
|
2
2
|
|
|
3
|
-
> 1197 skills in `./.agents/
|
|
4
|
-
> To use: `view_file ./.agents/
|
|
3
|
+
> 1197 skills in `./.agents/vault/`.
|
|
4
|
+
> To use: `view_file ./.agents/vault/{skill-name}/SKILL.md`
|
|
5
5
|
|
|
6
6
|
## Web & Frontend (53)
|
|
7
7
|
3d-web-experience angular angular-best-practices angular-migration angular-state-management angular-ui-patterns animejs-animation antigravity-design-expert antigravity-workflows baseline-ui chrome-extension-developer cloudflare-workers-expert design-md design-orchestration design-spells frontend-dev-guidelines frontend-mobile-development-component-scaffold frontend-mobile-security-xss-scan frontend-security-coder frontend-slides frontend-ui-dark-ts html-injection-testing nextjs-app-router-patterns radix-ui-design-system react-best-practices react-flow-architect react-flow-node-ts react-modernization react-native-architecture react-nextjs-development react-state-management react-ui-patterns spline-3d-integration tailwind-design-system threejs-animation threejs-fundamentals threejs-geometry threejs-interaction threejs-lighting threejs-loaders threejs-materials threejs-postprocessing threejs-shaders threejs-skills threejs-textures ui-skills ui-ux-pro-max ui-visual-validator web-artifacts-builder web-design-guidelines web-scraper web-security-testing webflow-automation
|
|
@@ -67,16 +67,16 @@ Agent activated → Check frontmatter "skills:" → Read SKILL.md (INDEX) → Re
|
|
|
67
67
|
## 🧠 Skill Auto-Routing System (v8.0.0 — Vault Edition)
|
|
68
68
|
|
|
69
69
|
### Architecture
|
|
70
|
-
- **Active skills** (~65): in `./.agents/
|
|
71
|
-
- **Vault skills** (~1200+): in `./.agents/
|
|
70
|
+
- **Active skills** (~65): in `./.agents/skills/` — always in context
|
|
71
|
+
- **Vault skills** (~1200+): in `./.agents/vault/` — discoverable via index
|
|
72
72
|
|
|
73
73
|
### Core Rule — Skills First
|
|
74
74
|
After invoking any skill, explicitly say: '📖 Using skill: [skill-name]' before proceeding. If no skill was used, say: '⚠️ No skill used — responding from base knowledge.'
|
|
75
75
|
|
|
76
76
|
### Routing Flow
|
|
77
77
|
1. Check if an **active skill** covers the request → use it directly
|
|
78
|
-
2. If not → open `./.agents/
|
|
79
|
-
3. If found → `view_file ./.agents/
|
|
78
|
+
2. If not → open `./.agents/VAULT_INDEX.md` to find a vault skill
|
|
79
|
+
3. If found → `view_file ./.agents/vault/{name}/SKILL.md`
|
|
80
80
|
4. If nothing found → respond from base knowledge
|
|
81
81
|
|
|
82
82
|
### Intent → Skill Routing Map (Active Skills)
|