izanagi-ai 2.0.4 → 2.0.7

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/AGENTS.md CHANGED
@@ -59,6 +59,11 @@ Skills nicho foram **desativadas** por padrão para reduzir o system prompt (~50
59
59
  2. Informar o usuário que a skill foi ativada e é preciso reiniciar o opencode
60
60
  3. Não prosseguir com a tarefa até o reinício — o usuário precisa reiniciar para a skill carregar
61
61
 
62
+ ## Site de Portfólio (SiteIzanagi)
63
+
64
+ O repositório `site/` contém um site Next.js (portfólio do NexusAI) publicado em `github.com/pedrohenriquesanchesleal4-debug/SiteIzanagi`.
65
+ **Toda vez que o framework for atualizado**, o agente DEVE também atualizar o site (i18n, estrutura, comandos, versão) no repositório do site e enviar push.
66
+
62
67
  ## Design Preference (Default)
63
68
 
64
69
  - **Estilo visual**: Futurista Apple-like — fundo escuro, glassmorphism, gradientes suaves, partículas animadas, 3D tilt em cards, tipografia bold, animações sutis, sem excesso de "cara de IA"
package/CHANGELOG.md CHANGED
@@ -4,6 +4,21 @@
4
4
 
5
5
  ---
6
6
 
7
+ ## [2.0.7] — 2026-07-23
8
+
9
+ ### Changed
10
+ - Bump version to 2.0.7
11
+
12
+ ### Fixed
13
+ - `bin/nexus.js` import path: changed `../src/cli/index.js` → `../dist/cli/index.js` to fix `ERR_MODULE_NOT_FOUND` on published package
14
+
15
+ ## [2.0.6] — 2026-07-23
16
+
17
+ - Bump version to 2.0.6
18
+
19
+ ### Fixed
20
+ - `bin/nexus.js` import path: changed `../src/cli/index.js` → `../dist/cli/index.js` to fix `ERR_MODULE_NOT_FOUND` on published package
21
+
7
22
  ## [2.0.0] — 2026-07-22
8
23
 
9
24
  ### Changed
package/bin/nexus.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { runCLI } from '../src/cli/index.js';
3
+ import { runCLI } from '../dist/cli/index.js';
4
4
 
5
5
  runCLI(process.argv.slice(2)).catch((err) => {
6
6
  console.error('\x1b[31m[NexusAI Error]:\x1b[0m', err.message || err);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "izanagi-ai",
3
- "version": "2.0.4",
3
+ "version": "2.0.7",
4
4
  "description": "Modular Skill-Oriented AI Prompt & Agent Framework for Autonomous Software Engineering",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",