ganbatte-os 0.2.2 → 0.2.3

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.
@@ -277,11 +277,20 @@ function cmdInstall(args) {
277
277
  process.exit(1);
278
278
  }
279
279
 
280
- // 2. Copiar arquivos do framework (exceto os internos/git)
281
- const exclude = ['.git', '.gos-local', 'node_modules', 'package-lock.json', 'install-log.json', 'update-log.json'];
280
+ // 2. Copiar arquivos do framework
282
281
  log('Copiando arquivos do framework...');
283
282
  try {
284
- copyDirRecursive(sourceRoot, targetRoot, { exclude });
283
+ // Copiar pasta .gos inteira
284
+ copyDirRecursive(path.join(sourceRoot, '.gos'), path.join(targetRoot, '.gos'));
285
+
286
+ // Copiar arquivos .md da raiz
287
+ const rootFiles = ['AGENTS.md', 'CLAUDE.md', 'GEMINI.md', 'README.md', 'LICENSE'];
288
+ for (const file of rootFiles) {
289
+ const src = path.join(sourceRoot, file);
290
+ if (pathExists(src)) {
291
+ fs.copyFileSync(src, path.join(targetRoot, file));
292
+ }
293
+ }
285
294
  ok('Arquivos copiados com sucesso.');
286
295
  } catch (e) {
287
296
  fail(`Erro ao copiar arquivos: ${e.message}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ganbatte-os",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Framework operacional para design-to-code, squads de entrega e sprint sync com ClickUp.",
5
5
  "bin": {
6
6
  "ganbatte-os": ".gos/scripts/cli/gos-cli.js",