izanagi-ai 2.3.2 → 2.3.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.
- package/CHANGELOG.md +29 -0
- package/core/skill-resolver.json +209 -210
- package/dist/scripts/verify-build.js +3 -2
- package/dist/scripts/verify-build.js.map +1 -1
- package/package.json +2 -3
- package/skills/INDEX.md +2 -3
- package/.manifest +0 -529
- package/skills/privacy-engineer/SKILL.md +0 -83
- package/skills/privacy-engineer/references.md +0 -20
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,35 @@
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [2.3.3] — 2026-08-03
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- **Skill Resolver**: alias `learning` apontava para `skills/continuous-learning-engine` (inexistente — skill consolidada em `continuous-improvement`). Agora aponta para `skills/continuous-improvement/SKILL`.
|
|
11
|
+
- **`verify-build`**: `npm run verify` quebrava com `TypeError: selectedPackIds is not iterable` porque `installToProject` era chamado sem o segundo argumento. Agora passa todos os pack IDs no teste de instalação em sandbox.
|
|
12
|
+
|
|
13
|
+
### Removed
|
|
14
|
+
- **`skills/privacy-engineer`**: duplicata morta de `skills/security-privacy` (mesmo escopo LGPD/GDPR, marcada `disabled` no `.manifest`, sem uso em nenhuma chain). Removida skill + alias `privacy-engineer` do resolver.
|
|
15
|
+
- **`.manifest`**: catálogo estático obsoleto (versão 2.2.1, 55 paths quebrados, sem leitura em nenhum código). Removido do pacote e do repositório.
|
|
16
|
+
|
|
17
|
+
## [2.3.2] — 2026-08-02
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Portado `skills/tdd/references/writing-good-tests.md` (técnicas de escrita de testes de alta qualidade).
|
|
21
|
+
- Portado `skills/webapp-testing/examples/*.py` (4 exemplos Playwright: sandbox server, discovery de elementos, console logging, automação HTML estático) com paths adaptados para `outputs/`.
|
|
22
|
+
|
|
23
|
+
## [2.3.1] — 2026-08-02
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- Portado `skills/ui-ux-pro-max/references/quick-reference.md` + `pro-rules.md` (regras UX da Apple/HIG de alto impacto em texto).
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- URL `http://highscalability.com` → `https://highscalability.com` (mixed content).
|
|
30
|
+
|
|
31
|
+
## [2.3.0] — 2026-08-02
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
- **Discovery Agent** (`/discovery`): pré-produção completa antes de codar — entrevista, pesquisa web, preview e prompt de implementação.
|
|
35
|
+
|
|
7
36
|
## [2.2.1] — 2026-07-31
|
|
8
37
|
|
|
9
38
|
### Fixed
|
package/core/skill-resolver.json
CHANGED
|
@@ -1,210 +1,209 @@
|
|
|
1
|
-
{
|
|
2
|
-
"resolver": "Mapeia short IDs para caminhos reais de skills. Usado nos agentes para reduzir tokens.",
|
|
3
|
-
"aliases": {
|
|
4
|
-
"architect": "skills/software-architect",
|
|
5
|
-
"clean-arch": "architecture/clean-architecture",
|
|
6
|
-
"hexagonal": "architecture/hexagonal-architecture",
|
|
7
|
-
"cqrs": "architecture/cqrs-specialist",
|
|
8
|
-
"event-driven": "architecture/event-driven-architect",
|
|
9
|
-
"ddd": "architecture/ddd-specialist",
|
|
10
|
-
"microservices": "architecture/microservices-expert",
|
|
11
|
-
"monolith": "architecture/monolith-expert",
|
|
12
|
-
"repository": "architecture/repository-pattern",
|
|
13
|
-
"uow": "architecture/unit-of-work",
|
|
14
|
-
"backend": "coding/backend-engineer",
|
|
15
|
-
"frontend": "skills/frontend/SKILL",
|
|
16
|
-
"api": "coding/api-designer",
|
|
17
|
-
"laravel": "coding/laravel-specialist",
|
|
18
|
-
"php": "coding/php-specialist",
|
|
19
|
-
"js": "coding/javascript-specialist",
|
|
20
|
-
"ts": "coding/typescript-specialist",
|
|
21
|
-
"python": "coding/python-specialist",
|
|
22
|
-
"react": "coding/react-specialist",
|
|
23
|
-
"vue": "coding/vue-specialist",
|
|
24
|
-
"node": "coding/nodejs-specialist",
|
|
25
|
-
"java": "coding/java-specialist",
|
|
26
|
-
"csharp": "coding/csharp-specialist",
|
|
27
|
-
"security": "security/security-engineer",
|
|
28
|
-
"owasp": "security/owasp-auditor",
|
|
29
|
-
"pentest": "security/pentest-reviewer",
|
|
30
|
-
"reviewer": "skills/senior-code-reviewer",
|
|
31
|
-
"clean-code": "skills/clean-code-validator",
|
|
32
|
-
"solid": "skills/solid-validator",
|
|
33
|
-
"dry-kiss-yagni": "skills/dry-kiss-yagni-validator",
|
|
34
|
-
"complexity": "skills/complexity-analyzer",
|
|
35
|
-
"bug-prevention": "skills/bug-prevention/SKILL",
|
|
36
|
-
"patterns": "skills/design-pattern-advisor",
|
|
37
|
-
"refactor": "skills/refactoring-specialist",
|
|
38
|
-
"tech-debt": "skills/technical-debt-analyzer",
|
|
39
|
-
"breaking-change": "skills/breaking-change-detector",
|
|
40
|
-
"perf": "skills/performance-optimizer",
|
|
41
|
-
"scalability": "skills/scalability-expert",
|
|
42
|
-
"unit-test": "testing/unit-test-engineer",
|
|
43
|
-
"integration-test": "testing/integration-test-engineer",
|
|
44
|
-
"e2e-test": "testing/e2e-test-engineer",
|
|
45
|
-
"mock": "testing/mocking-specialist",
|
|
46
|
-
"db": "database/database-engineer",
|
|
47
|
-
"sql": "database/sql-optimizer",
|
|
48
|
-
"postgres": "database/postgresql-specialist",
|
|
49
|
-
"mysql": "database/mysql-specialist",
|
|
50
|
-
"sqlserver": "database/sqlserver-specialist",
|
|
51
|
-
"redis": "database/redis-specialist",
|
|
52
|
-
"devops": "devops/devops-engineer",
|
|
53
|
-
"docker": "devops/docker-expert",
|
|
54
|
-
"k8s": "devops/kubernetes-specialist",
|
|
55
|
-
"git": "devops/git-expert",
|
|
56
|
-
"gitflow": "devops/git-flow-specialist",
|
|
57
|
-
"cicd": "devops/ci-cd-specialist",
|
|
58
|
-
"linux": "devops/linux-specialist",
|
|
59
|
-
"windows": "devops/windows-specialist",
|
|
60
|
-
"debug": "skills/debug-specialist",
|
|
61
|
-
"bug": "skills/bug-hunter",
|
|
62
|
-
"root-cause": "skills/root-cause-analyzer",
|
|
63
|
-
"professor": "teaching/professor-mode",
|
|
64
|
-
"mentor": "teaching/mentor-mode",
|
|
65
|
-
"explainer": "teaching/code-explainer",
|
|
66
|
-
"interactive": "teaching/interactive-teaching",
|
|
67
|
-
"adaptive": "teaching/adaptive-teaching",
|
|
68
|
-
"tracker": "teaching/learning-tracker",
|
|
69
|
-
"memory": "memory/memory-manager",
|
|
70
|
-
"session-compress": "memory/session-compression",
|
|
71
|
-
"summarizer": "memory/conversation-summarizer",
|
|
72
|
-
"recovery": "memory/context-recovery",
|
|
73
|
-
"recall": "memory/smart-recall",
|
|
74
|
-
"project-memory": "memory/long-term-project-memory",
|
|
75
|
-
"token-reduce": "optimization/token-reducer",
|
|
76
|
-
"prompt": "optimization/prompt-optimizer",
|
|
77
|
-
"cost": "optimization/cost-optimizer",
|
|
78
|
-
"requirements": "skills/requirement-analyzer",
|
|
79
|
-
"risk": "skills/risk-analyzer",
|
|
80
|
-
"deps": "skills/dependency-analyzer",
|
|
81
|
-
"tradeoff": "skills/tradeoff-analyzer",
|
|
82
|
-
"alternatives": "skills/alternative-solution-generator",
|
|
83
|
-
"docs": "skills/documentation-writer",
|
|
84
|
-
"tech-writer": "skills/technical-writer",
|
|
85
|
-
"readme": "skills/readme-generator",
|
|
86
|
-
"uml": "skills/uml-generator",
|
|
87
|
-
"sequence": "skills/sequence-diagram-builder",
|
|
88
|
-
"er": "skills/er-diagram-builder",
|
|
89
|
-
"pm": "skills/project-manager",
|
|
90
|
-
"planner": "skills/task-planner",
|
|
91
|
-
"release": "skills/release-planner",
|
|
92
|
-
"ux": "skills/ux-reviewer",
|
|
93
|
-
"a11y": "skills/accessibility-reviewer",
|
|
94
|
-
"logging": "skills/logging-expert",
|
|
95
|
-
"observability": "skills/observability-expert",
|
|
96
|
-
"monitoring": "skills/monitoring-specialist",
|
|
97
|
-
"self-fix": "skills/self-correction",
|
|
98
|
-
"self-critique": "skills/self-critique/SKILL",
|
|
99
|
-
"improvement": "skills/continuous-improvement",
|
|
100
|
-
"hallucination": "skills/hallucination-detection",
|
|
101
|
-
"confidence": "skills/confidence-estimator",
|
|
102
|
-
"learning": "skills/continuous-
|
|
103
|
-
"principal": "skills/principal-engineer",
|
|
104
|
-
"staff": "skills/staff-engineer",
|
|
105
|
-
"techlead": "skills/tech-lead",
|
|
106
|
-
"cto": "skills/cto-advisor",
|
|
107
|
-
"quality-gates": "core/quality-gates",
|
|
108
|
-
"planning-engine": "core/planning-engine",
|
|
109
|
-
"context-engine": "core/context-engine",
|
|
110
|
-
"token-manager": "core/token-manager",
|
|
111
|
-
"compression-engine": "core/compression-engine",
|
|
112
|
-
"reflection-engine": "core/reflection-engine",
|
|
113
|
-
"evolution-engine": "core/evolution-engine",
|
|
114
|
-
"decision-engine": "core/decision-engine",
|
|
115
|
-
"ai-agent": "skills/ai-agent/SKILL",
|
|
116
|
-
"ai-agent-dev": "skills/ai-agent/SKILL",
|
|
117
|
-
"architecture-patterns": "skills/architecture-patterns/SKILL",
|
|
118
|
-
"chaos-engineering": "skills/chaos-engineering/SKILL",
|
|
119
|
-
"cloud-architect": "skills/cloud-infra/SKILL",
|
|
120
|
-
"cloud-infra": "skills/cloud-infra/SKILL",
|
|
121
|
-
"data-engineer": "skills/data-engineering/SKILL",
|
|
122
|
-
"data-engineering": "skills/data-engineering/SKILL",
|
|
123
|
-
"economia-tokens": "skills/economia-tokens/SKILL",
|
|
124
|
-
"feature-flags": "skills/feature-flags/SKILL",
|
|
125
|
-
"frontend-tokens": "skills/frontend/SKILL",
|
|
126
|
-
"frontend-dev": "skills/frontend/SKILL",
|
|
127
|
-
"graphql": "skills/graphql/SKILL",
|
|
128
|
-
"handoff-sessao": "skills/handoff-sessao/SKILL",
|
|
129
|
-
"i18n-l10n": "skills/i18n-l10n/SKILL",
|
|
130
|
-
"iac-terraform": "skills/iac-terraform/SKILL",
|
|
131
|
-
"legacy-migration": "skills/legacy-migration/SKILL",
|
|
132
|
-
"memoria-projeto": "skills/memoria-projeto/SKILL",
|
|
133
|
-
"mobile-dev": "skills/mobile-dev/SKILL",
|
|
134
|
-
"mobile-engineer": "skills/mobile-dev/SKILL",
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"qa-
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"web-perf-
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
"continuous-
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
"technical-
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
"ux-
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"resolver": "Mapeia short IDs para caminhos reais de skills. Usado nos agentes para reduzir tokens.",
|
|
3
|
+
"aliases": {
|
|
4
|
+
"architect": "skills/software-architect",
|
|
5
|
+
"clean-arch": "architecture/clean-architecture",
|
|
6
|
+
"hexagonal": "architecture/hexagonal-architecture",
|
|
7
|
+
"cqrs": "architecture/cqrs-specialist",
|
|
8
|
+
"event-driven": "architecture/event-driven-architect",
|
|
9
|
+
"ddd": "architecture/ddd-specialist",
|
|
10
|
+
"microservices": "architecture/microservices-expert",
|
|
11
|
+
"monolith": "architecture/monolith-expert",
|
|
12
|
+
"repository": "architecture/repository-pattern",
|
|
13
|
+
"uow": "architecture/unit-of-work",
|
|
14
|
+
"backend": "coding/backend-engineer",
|
|
15
|
+
"frontend": "skills/frontend/SKILL",
|
|
16
|
+
"api": "coding/api-designer",
|
|
17
|
+
"laravel": "coding/laravel-specialist",
|
|
18
|
+
"php": "coding/php-specialist",
|
|
19
|
+
"js": "coding/javascript-specialist",
|
|
20
|
+
"ts": "coding/typescript-specialist",
|
|
21
|
+
"python": "coding/python-specialist",
|
|
22
|
+
"react": "coding/react-specialist",
|
|
23
|
+
"vue": "coding/vue-specialist",
|
|
24
|
+
"node": "coding/nodejs-specialist",
|
|
25
|
+
"java": "coding/java-specialist",
|
|
26
|
+
"csharp": "coding/csharp-specialist",
|
|
27
|
+
"security": "security/security-engineer",
|
|
28
|
+
"owasp": "security/owasp-auditor",
|
|
29
|
+
"pentest": "security/pentest-reviewer",
|
|
30
|
+
"reviewer": "skills/senior-code-reviewer",
|
|
31
|
+
"clean-code": "skills/clean-code-validator",
|
|
32
|
+
"solid": "skills/solid-validator",
|
|
33
|
+
"dry-kiss-yagni": "skills/dry-kiss-yagni-validator",
|
|
34
|
+
"complexity": "skills/complexity-analyzer",
|
|
35
|
+
"bug-prevention": "skills/bug-prevention/SKILL",
|
|
36
|
+
"patterns": "skills/design-pattern-advisor",
|
|
37
|
+
"refactor": "skills/refactoring-specialist",
|
|
38
|
+
"tech-debt": "skills/technical-debt-analyzer",
|
|
39
|
+
"breaking-change": "skills/breaking-change-detector",
|
|
40
|
+
"perf": "skills/performance-optimizer",
|
|
41
|
+
"scalability": "skills/scalability-expert",
|
|
42
|
+
"unit-test": "testing/unit-test-engineer",
|
|
43
|
+
"integration-test": "testing/integration-test-engineer",
|
|
44
|
+
"e2e-test": "testing/e2e-test-engineer",
|
|
45
|
+
"mock": "testing/mocking-specialist",
|
|
46
|
+
"db": "database/database-engineer",
|
|
47
|
+
"sql": "database/sql-optimizer",
|
|
48
|
+
"postgres": "database/postgresql-specialist",
|
|
49
|
+
"mysql": "database/mysql-specialist",
|
|
50
|
+
"sqlserver": "database/sqlserver-specialist",
|
|
51
|
+
"redis": "database/redis-specialist",
|
|
52
|
+
"devops": "devops/devops-engineer",
|
|
53
|
+
"docker": "devops/docker-expert",
|
|
54
|
+
"k8s": "devops/kubernetes-specialist",
|
|
55
|
+
"git": "devops/git-expert",
|
|
56
|
+
"gitflow": "devops/git-flow-specialist",
|
|
57
|
+
"cicd": "devops/ci-cd-specialist",
|
|
58
|
+
"linux": "devops/linux-specialist",
|
|
59
|
+
"windows": "devops/windows-specialist",
|
|
60
|
+
"debug": "skills/debug-specialist",
|
|
61
|
+
"bug": "skills/bug-hunter",
|
|
62
|
+
"root-cause": "skills/root-cause-analyzer",
|
|
63
|
+
"professor": "teaching/professor-mode",
|
|
64
|
+
"mentor": "teaching/mentor-mode",
|
|
65
|
+
"explainer": "teaching/code-explainer",
|
|
66
|
+
"interactive": "teaching/interactive-teaching",
|
|
67
|
+
"adaptive": "teaching/adaptive-teaching",
|
|
68
|
+
"tracker": "teaching/learning-tracker",
|
|
69
|
+
"memory": "memory/memory-manager",
|
|
70
|
+
"session-compress": "memory/session-compression",
|
|
71
|
+
"summarizer": "memory/conversation-summarizer",
|
|
72
|
+
"recovery": "memory/context-recovery",
|
|
73
|
+
"recall": "memory/smart-recall",
|
|
74
|
+
"project-memory": "memory/long-term-project-memory",
|
|
75
|
+
"token-reduce": "optimization/token-reducer",
|
|
76
|
+
"prompt": "optimization/prompt-optimizer",
|
|
77
|
+
"cost": "optimization/cost-optimizer",
|
|
78
|
+
"requirements": "skills/requirement-analyzer",
|
|
79
|
+
"risk": "skills/risk-analyzer",
|
|
80
|
+
"deps": "skills/dependency-analyzer",
|
|
81
|
+
"tradeoff": "skills/tradeoff-analyzer",
|
|
82
|
+
"alternatives": "skills/alternative-solution-generator",
|
|
83
|
+
"docs": "skills/documentation-writer",
|
|
84
|
+
"tech-writer": "skills/technical-writer",
|
|
85
|
+
"readme": "skills/readme-generator",
|
|
86
|
+
"uml": "skills/uml-generator",
|
|
87
|
+
"sequence": "skills/sequence-diagram-builder",
|
|
88
|
+
"er": "skills/er-diagram-builder",
|
|
89
|
+
"pm": "skills/project-manager",
|
|
90
|
+
"planner": "skills/task-planner",
|
|
91
|
+
"release": "skills/release-planner",
|
|
92
|
+
"ux": "skills/ux-reviewer",
|
|
93
|
+
"a11y": "skills/accessibility-reviewer",
|
|
94
|
+
"logging": "skills/logging-expert",
|
|
95
|
+
"observability": "skills/observability-expert",
|
|
96
|
+
"monitoring": "skills/monitoring-specialist",
|
|
97
|
+
"self-fix": "skills/self-correction",
|
|
98
|
+
"self-critique": "skills/self-critique/SKILL",
|
|
99
|
+
"improvement": "skills/continuous-improvement",
|
|
100
|
+
"hallucination": "skills/hallucination-detection",
|
|
101
|
+
"confidence": "skills/confidence-estimator",
|
|
102
|
+
"learning": "skills/continuous-improvement/SKILL",
|
|
103
|
+
"principal": "skills/principal-engineer",
|
|
104
|
+
"staff": "skills/staff-engineer",
|
|
105
|
+
"techlead": "skills/tech-lead",
|
|
106
|
+
"cto": "skills/cto-advisor",
|
|
107
|
+
"quality-gates": "core/quality-gates",
|
|
108
|
+
"planning-engine": "core/planning-engine",
|
|
109
|
+
"context-engine": "core/context-engine",
|
|
110
|
+
"token-manager": "core/token-manager",
|
|
111
|
+
"compression-engine": "core/compression-engine",
|
|
112
|
+
"reflection-engine": "core/reflection-engine",
|
|
113
|
+
"evolution-engine": "core/evolution-engine",
|
|
114
|
+
"decision-engine": "core/decision-engine",
|
|
115
|
+
"ai-agent": "skills/ai-agent/SKILL",
|
|
116
|
+
"ai-agent-dev": "skills/ai-agent/SKILL",
|
|
117
|
+
"architecture-patterns": "skills/architecture-patterns/SKILL",
|
|
118
|
+
"chaos-engineering": "skills/chaos-engineering/SKILL",
|
|
119
|
+
"cloud-architect": "skills/cloud-infra/SKILL",
|
|
120
|
+
"cloud-infra": "skills/cloud-infra/SKILL",
|
|
121
|
+
"data-engineer": "skills/data-engineering/SKILL",
|
|
122
|
+
"data-engineering": "skills/data-engineering/SKILL",
|
|
123
|
+
"economia-tokens": "skills/economia-tokens/SKILL",
|
|
124
|
+
"feature-flags": "skills/feature-flags/SKILL",
|
|
125
|
+
"frontend-tokens": "skills/frontend/SKILL",
|
|
126
|
+
"frontend-dev": "skills/frontend/SKILL",
|
|
127
|
+
"graphql": "skills/graphql/SKILL",
|
|
128
|
+
"handoff-sessao": "skills/handoff-sessao/SKILL",
|
|
129
|
+
"i18n-l10n": "skills/i18n-l10n/SKILL",
|
|
130
|
+
"iac-terraform": "skills/iac-terraform/SKILL",
|
|
131
|
+
"legacy-migration": "skills/legacy-migration/SKILL",
|
|
132
|
+
"memoria-projeto": "skills/memoria-projeto/SKILL",
|
|
133
|
+
"mobile-dev": "skills/mobile-dev/SKILL",
|
|
134
|
+
"mobile-engineer": "skills/mobile-dev/SKILL",
|
|
135
|
+
"professor-modo": "skills/professor-modo/SKILL",
|
|
136
|
+
"qa-checklist": "skills/qa/SKILL",
|
|
137
|
+
"qa-engineer": "skills/qa/SKILL",
|
|
138
|
+
"security-privacy": "skills/security-privacy/SKILL",
|
|
139
|
+
"serverless-edge": "skills/serverless-edge/SKILL",
|
|
140
|
+
"sre-reliability": "skills/sre-reliability/SKILL",
|
|
141
|
+
"wasm": "skills/wasm/SKILL",
|
|
142
|
+
"web-perf-engineer": "skills/web-perf-seo/SKILL",
|
|
143
|
+
"web-perf-seo": "skills/web-perf-seo/SKILL",
|
|
144
|
+
"websocket-realtime": "skills/websocket-realtime/SKILL",
|
|
145
|
+
"animation-web": "skills/animation-web/SKILL",
|
|
146
|
+
"webgl-3d": "skills/webgl-3d/SKILL",
|
|
147
|
+
"motion-design": "skills/motion-design/SKILL",
|
|
148
|
+
"agentic-coding": "skills/agentic-coding/SKILL",
|
|
149
|
+
"mcp": "skills/mcp-server-dev",
|
|
150
|
+
"prompt-eng": "skills/prompt-engineering",
|
|
151
|
+
"code-auditor": "skills/code-auditor/SKILL",
|
|
152
|
+
"accessibility-reviewer": "skills/accessibility-reviewer/SKILL",
|
|
153
|
+
"alternative-solution-generator": "skills/alternative-solution-generator/SKILL",
|
|
154
|
+
"breaking-change-detector": "skills/breaking-change-detector/SKILL",
|
|
155
|
+
"bug-hunter": "skills/bug-hunter/SKILL",
|
|
156
|
+
"clean-code-validator": "skills/clean-code-validator/SKILL",
|
|
157
|
+
"complexity-analyzer": "skills/complexity-analyzer/SKILL",
|
|
158
|
+
"confidence-estimator": "skills/confidence-estimator/SKILL",
|
|
159
|
+
"continuous-improvement": "skills/continuous-improvement/SKILL",
|
|
160
|
+
"continuous-learning-engine": "skills/continuous-improvement/SKILL",
|
|
161
|
+
"cto-advisor": "skills/cto-advisor/SKILL",
|
|
162
|
+
"debug-specialist": "skills/debug-specialist/SKILL",
|
|
163
|
+
"dependency-analyzer": "skills/dependency-analyzer/SKILL",
|
|
164
|
+
"design-pattern-advisor": "skills/design-pattern-advisor/SKILL",
|
|
165
|
+
"documentation-writer": "skills/documentation-writer/SKILL",
|
|
166
|
+
"dry-kiss-yagni-validator": "skills/dry-kiss-yagni-validator/SKILL",
|
|
167
|
+
"er-diagram-builder": "skills/er-diagram-builder/SKILL",
|
|
168
|
+
"hallucination-detection": "skills/hallucination-detection/SKILL",
|
|
169
|
+
"logging-expert": "skills/logging-expert/SKILL",
|
|
170
|
+
"mcp-server-dev": "skills/mcp-server-dev/SKILL",
|
|
171
|
+
"monitoring-specialist": "skills/monitoring-specialist/SKILL",
|
|
172
|
+
"observability-expert": "skills/observability-expert/SKILL",
|
|
173
|
+
"performance-optimizer": "skills/performance-optimizer/SKILL",
|
|
174
|
+
"principal-engineer": "skills/principal-engineer/SKILL",
|
|
175
|
+
"project-manager": "skills/project-manager/SKILL",
|
|
176
|
+
"prompt-engineering": "skills/prompt-engineering/SKILL",
|
|
177
|
+
"qa": "skills/qa/SKILL",
|
|
178
|
+
"readme-generator": "skills/readme-generator/SKILL",
|
|
179
|
+
"refactoring-specialist": "skills/refactoring-specialist/SKILL",
|
|
180
|
+
"release-planner": "skills/release-planner/SKILL",
|
|
181
|
+
"requirement-analyzer": "skills/requirement-analyzer/SKILL",
|
|
182
|
+
"risk-analyzer": "skills/risk-analyzer/SKILL",
|
|
183
|
+
"root-cause-analyzer": "skills/root-cause-analyzer/SKILL",
|
|
184
|
+
"scalability-expert": "skills/scalability-expert/SKILL",
|
|
185
|
+
"self-correction": "skills/self-correction/SKILL",
|
|
186
|
+
"senior-code-reviewer": "skills/senior-code-reviewer/SKILL",
|
|
187
|
+
"sequence-diagram-builder": "skills/sequence-diagram-builder/SKILL",
|
|
188
|
+
"software-architect": "skills/software-architect/SKILL",
|
|
189
|
+
"solid-validator": "skills/solid-validator/SKILL",
|
|
190
|
+
"staff-engineer": "skills/staff-engineer/SKILL",
|
|
191
|
+
"task-planner": "skills/task-planner/SKILL",
|
|
192
|
+
"tech-lead": "skills/tech-lead/SKILL",
|
|
193
|
+
"technical-debt-analyzer": "skills/technical-debt-analyzer/SKILL",
|
|
194
|
+
"technical-writer": "skills/technical-writer/SKILL",
|
|
195
|
+
"tradeoff-analyzer": "skills/tradeoff-analyzer/SKILL",
|
|
196
|
+
"uml-generator": "skills/uml-generator/SKILL",
|
|
197
|
+
"ux-reviewer": "skills/ux-reviewer/SKILL",
|
|
198
|
+
"ui-ux-pro-max": "skills/ui-ux-pro-max/SKILL",
|
|
199
|
+
"brainstorming": "skills/brainstorming/SKILL",
|
|
200
|
+
"deep-research": "skills/deep-research/SKILL",
|
|
201
|
+
"webapp-testing": "skills/webapp-testing/SKILL",
|
|
202
|
+
"tdd": "skills/tdd/SKILL",
|
|
203
|
+
"design-system": "skills/ui-ux-pro-max/SKILL",
|
|
204
|
+
"requirement-discovery": "skills/brainstorming/SKILL",
|
|
205
|
+
"research": "skills/deep-research/SKILL",
|
|
206
|
+
"e2e": "skills/webapp-testing/SKILL",
|
|
207
|
+
"test-first": "skills/tdd/SKILL"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
@@ -15,10 +15,11 @@ try {
|
|
|
15
15
|
fs.rmSync(sandboxDir, { recursive: true, force: true });
|
|
16
16
|
}
|
|
17
17
|
fs.mkdirSync(sandboxDir, { recursive: true });
|
|
18
|
-
// 3. Executar instalador simulando projeto de usuário
|
|
18
|
+
// 3. Executar instalador simulando projeto de usuário (instala todos os packs)
|
|
19
19
|
const installerPath = path.join(rootDir, 'dist', 'installer.js');
|
|
20
20
|
const installerUrl = pathToFileURL(installerPath).href;
|
|
21
|
-
const
|
|
21
|
+
const packIds = `['core','agents','skills','architecture','coding','database','devops','security','testing','memory','optimization','teaching']`;
|
|
22
|
+
const code = `import('${installerUrl}').then(m => m.installToProject('${sandboxDir.replace(/\\/g, '/')}', ${packIds}))`;
|
|
22
23
|
execSync(`node -e "${code}"`, { cwd: rootDir, stdio: 'inherit' });
|
|
23
24
|
// 4. Verificar se a pasta .agents foi gerada com sucesso
|
|
24
25
|
const agentsFolder = path.join(sandboxDir, '.agents');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"verify-build.js","sourceRoot":"","sources":["../../src/scripts/verify-build.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEnD,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;AAC3C,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;AAEpD,IAAI,CAAC;IACH,OAAO,CAAC,GAAG,CAAC,uEAAuE,CAAC,CAAC;IAErF,sCAAsC;IACtC,QAAQ,CAAC,eAAe,EAAE,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;IAE9D,sCAAsC;IACtC,MAAM,UAAU,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,kBAAkB,CAAC,CAAC;IAC1D,IAAI,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC;QAC9B,EAAE,CAAC,MAAM,CAAC,UAAU,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;IAC1D,CAAC;IACD,EAAE,CAAC,SAAS,CAAC,UAAU,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAE9C
|
|
1
|
+
{"version":3,"file":"verify-build.js","sourceRoot":"","sources":["../../src/scripts/verify-build.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEnD,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;AAC3C,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;AAEpD,IAAI,CAAC;IACH,OAAO,CAAC,GAAG,CAAC,uEAAuE,CAAC,CAAC;IAErF,sCAAsC;IACtC,QAAQ,CAAC,eAAe,EAAE,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;IAE9D,sCAAsC;IACtC,MAAM,UAAU,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,kBAAkB,CAAC,CAAC;IAC1D,IAAI,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,CAAC;QAC9B,EAAE,CAAC,MAAM,CAAC,UAAU,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;IAC1D,CAAC;IACD,EAAE,CAAC,SAAS,CAAC,UAAU,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAE9C,+EAA+E;IAC/E,MAAM,aAAa,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,cAAc,CAAC,CAAC;IACjE,MAAM,YAAY,GAAG,aAAa,CAAC,aAAa,CAAC,CAAC,IAAI,CAAC;IACvD,MAAM,OAAO,GAAG,gIAAgI,CAAC;IACjJ,MAAM,IAAI,GAAG,WAAW,YAAY,oCAAoC,UAAU,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,MAAM,OAAO,IAAI,CAAC;IAExH,QAAQ,CAAC,YAAY,IAAI,GAAG,EAAE,EAAE,GAAG,EAAE,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;IAElE,yDAAyD;IACzD,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,SAAS,CAAC,CAAC;IACtD,IAAI,EAAE,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,CAAC;QAChC,MAAM,KAAK,GAAG,EAAE,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC;QAC3C,OAAO,CAAC,GAAG,CAAC,2EAA2E,KAAK,CAAC,MAAM,gBAAgB,CAAC,CAAC;IACvH,CAAC;SAAM,CAAC;QACN,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;IACrD,CAAC;IAED,wBAAwB;IACxB,IAAI,CAAC;QACH,EAAE,CAAC,MAAM,CAAC,UAAU,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC;QACxD,OAAO,CAAC,GAAG,CAAC,oDAAoD,CAAC,CAAC;IACpE,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,CAAC,GAAG,CAAC,yDAAyD,CAAC,CAAC;IACzE,CAAC;AACH,CAAC;AAAC,OAAO,GAAQ,EAAE,CAAC;IAClB,OAAO,CAAC,KAAK,CAAC,kDAAkD,EAAE,GAAG,EAAE,OAAO,IAAI,GAAG,CAAC,CAAC;IACvF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "izanagi-ai",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"description": "Izanagi AI - Modular Skill-Oriented AI Prompt & Agent Framework for Autonomous Software Engineering",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -32,8 +32,7 @@
|
|
|
32
32
|
"RULES.md",
|
|
33
33
|
"AGENTS.md",
|
|
34
34
|
"CHANGELOG.md",
|
|
35
|
-
"ROADMAP.md"
|
|
36
|
-
".manifest"
|
|
35
|
+
"ROADMAP.md"
|
|
37
36
|
],
|
|
38
37
|
"scripts": {
|
|
39
38
|
"build": "tsc",
|
package/skills/INDEX.md
CHANGED
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
| Continuous Improvement | ✅ v1.0.0 | `skills/continuous-improvement.md` |
|
|
239
239
|
| Hallucination Detection | ✅ v1.0.0 | `skills/hallucination-detection.md` |
|
|
240
240
|
| Confidence Estimator | ✅ v1.0.0 | `skills/confidence-estimator.md` |
|
|
241
|
-
| Continuous Learning Engine | ✅ v1.0.0 | `skills/continuous-
|
|
241
|
+
| Continuous Improvement (Learning Engine) | ✅ v1.0.0 | `skills/continuous-improvement/SKILL.md` |
|
|
242
242
|
|
|
243
243
|
|
|
244
244
|
---
|
|
@@ -313,11 +313,10 @@
|
|
|
313
313
|
|
|
314
314
|
---
|
|
315
315
|
|
|
316
|
-
## Privacy (
|
|
316
|
+
## Privacy (1)
|
|
317
317
|
|
|
318
318
|
| Skill | Status | File |
|
|
319
319
|
|-------|--------|------|
|
|
320
|
-
| Privacy Engineer | ? v1.0.0 | `skills/privacy-engineer/SKILL.md` |
|
|
321
320
|
| Security & Privacy | ? v1.0.0 | `skills/security-privacy/SKILL.md` |
|
|
322
321
|
|
|
323
322
|
---
|
package/.manifest
DELETED
|
@@ -1,529 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "izanagi-ai",
|
|
3
|
-
"version": "2.2.1",
|
|
4
|
-
"description": "Modular Skill-Oriented AI Prompt & Agent Framework for Autonomous Software Engineering",
|
|
5
|
-
"author": "Pedro Henrique Sanches Leal",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"homepage": "https://github.com/pedrohenriquesanchesleal4-debug/izanagi-ai",
|
|
8
|
-
|
|
9
|
-
"agents": [
|
|
10
|
-
{
|
|
11
|
-
"id": "animation",
|
|
12
|
-
"name": "Animation Engineer",
|
|
13
|
-
"version": "1.0.0",
|
|
14
|
-
"file": "agents/animation-agent.json",
|
|
15
|
-
"role": "Cria sites cinematográficos: scrollytelling, scroll-driven animations, 3D WebGL e motion design",
|
|
16
|
-
"skills": ["animation-web", "webgl-3d", "motion-design", "frontend", "architect", "planner", "ux", "a11y", "perf", "reviewer"],
|
|
17
|
-
"chains": ["new_project", "new_feature", "implementation", "frontend", "review"]
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"id": "architect",
|
|
21
|
-
"name": "Software Architect",
|
|
22
|
-
"version": "1.0.0",
|
|
23
|
-
"file": "agents/architect-agent.json",
|
|
24
|
-
"role": "Arquiteta sistemas, avalia trade-offs, produz planos de implementação",
|
|
25
|
-
"skills": ["architect", "clean-arch", "hexagonal", "ddd", "cqrs", "event-driven", "microservices", "monolith", "repository", "uow", "tradeoff", "alternatives", "risk", "requirements", "docs", "uml", "sequence", "er", "scalability"],
|
|
26
|
-
"chains": ["new_project", "new_feature", "refactor", "review"]
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"id": "senior-engineer",
|
|
30
|
-
"name": "Senior Engineer",
|
|
31
|
-
"version": "1.0.0",
|
|
32
|
-
"file": "agents/senior-engineer-agent.json",
|
|
33
|
-
"role": "Full-stack — código limpo, seguro, testado",
|
|
34
|
-
"skills": ["backend", "frontend", "api", "laravel", "php", "ts", "react", "node", "python", "db", "sql", "reviewer", "clean-code", "solid", "dry-kiss-yagni", "complexity", "refactor", "perf", "patterns", "unit-test", "integration-test", "mock", "security", "explainer"],
|
|
35
|
-
"chains": ["implement", "bug", "refactor", "review", "optimize"]
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"id": "bug-hunter",
|
|
39
|
-
"name": "Bug Hunter",
|
|
40
|
-
"version": "1.0.0",
|
|
41
|
-
"file": "agents/bug-hunter-agent.json",
|
|
42
|
-
"role": "Caça bugs sistematicamente — reproduz, isola, elimina",
|
|
43
|
-
"skills": ["debug", "bug", "root-cause", "unit-test", "integration-test", "reviewer", "perf", "professor", "explainer", "self-fix", "bug-prevention"],
|
|
44
|
-
"chains": ["bug", "debug", "prevent"]
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"id": "security",
|
|
48
|
-
"name": "Security Engineer",
|
|
49
|
-
"version": "1.0.0",
|
|
50
|
-
"file": "agents/security-agent.json",
|
|
51
|
-
"role": "Audita, previne e corrige vulnerabilidades",
|
|
52
|
-
"skills": ["security", "owasp", "pentest", "reviewer", "deps", "professor", "explainer", "self-fix"],
|
|
53
|
-
"chains": ["security_audit", "review", "implement"]
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"id": "professor",
|
|
57
|
-
"name": "Professor",
|
|
58
|
-
"version": "1.0.0",
|
|
59
|
-
"file": "agents/professor-agent.json",
|
|
60
|
-
"role": "Ensino adaptativo — explica, guia, acompanha progresso",
|
|
61
|
-
"skills": ["professor", "mentor", "explainer", "interactive", "adaptive", "tracker", "patterns", "recovery", "recall", "project-memory"],
|
|
62
|
-
"chains": ["teach", "mentor", "explain", "question"]
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"id": "devops",
|
|
66
|
-
"name": "DevOps Engineer",
|
|
67
|
-
"version": "1.0.0",
|
|
68
|
-
"file": "agents/devops-agent.json",
|
|
69
|
-
"role": "Infraestrutura, deploy, CI/CD, monitoramento",
|
|
70
|
-
"skills": ["devops", "docker", "k8s", "cicd", "git", "gitflow", "linux", "windows", "security", "logging", "observability", "monitoring", "scalability", "perf"],
|
|
71
|
-
"chains": ["deploy", "infra", "monitor", "ci_cd"]
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"id": "database",
|
|
75
|
-
"name": "Database Engineer",
|
|
76
|
-
"version": "1.0.0",
|
|
77
|
-
"file": "agents/database-agent.json",
|
|
78
|
-
"role": "Modelagem, schema, otimização de queries",
|
|
79
|
-
"skills": ["db", "sql", "postgres", "mysql", "sqlserver", "redis", "repository", "perf", "er", "integration-test"],
|
|
80
|
-
"chains": ["schema", "optimize", "migrate"]
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"id": "pm",
|
|
84
|
-
"name": "Project Manager",
|
|
85
|
-
"version": "1.0.0",
|
|
86
|
-
"file": "agents/pm-agent.json",
|
|
87
|
-
"role": "Entrega de projetos, tarefas, riscos, comunicação",
|
|
88
|
-
"skills": ["pm", "planner", "release", "risk", "requirements", "tradeoff", "tech-debt", "breaking-change", "deps", "docs"],
|
|
89
|
-
"chains": ["plan", "sprint", "release"]
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
"id": "techlead",
|
|
93
|
-
"name": "Tech Lead",
|
|
94
|
-
"version": "1.0.0",
|
|
95
|
-
"file": "agents/techlead-agent.json",
|
|
96
|
-
"role": "Liderança técnica — qualidade, mentoria, arquitetura, entrega",
|
|
97
|
-
"skills": ["techlead", "principal", "staff", "reviewer", "architect", "clean-code", "solid", "refactor", "complexity", "tech-debt", "patterns", "mentor", "risk", "tradeoff", "requirements", "pm", "planner", "self-critique"],
|
|
98
|
-
"chains": ["review", "design", "unblock", "debt"]
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"id": "docs",
|
|
102
|
-
"name": "Documentation Writer",
|
|
103
|
-
"version": "1.0.0",
|
|
104
|
-
"file": "agents/docs-agent.json",
|
|
105
|
-
"role": "Documentação técnica — README, API, arquitetura, diagramas",
|
|
106
|
-
"skills": ["docs", "tech-writer", "readme", "uml", "sequence", "er", "architect", "requirements", "explainer"],
|
|
107
|
-
"chains": ["readme", "api_docs", "architecture", "guide"]
|
|
108
|
-
}
|
|
109
|
-
],
|
|
110
|
-
|
|
111
|
-
"skills": {
|
|
112
|
-
"total": 140,
|
|
113
|
-
"categories": [
|
|
114
|
-
{
|
|
115
|
-
"name": "Core",
|
|
116
|
-
"count": 8,
|
|
117
|
-
"skills": [
|
|
118
|
-
{ "id": "decision-engine", "name": "Decision Engine", "version": "1.0.0", "path": "core/decision-engine.md" },
|
|
119
|
-
{ "id": "context-engine", "name": "Context Engine", "version": "1.0.0", "path": "core/context-engine.md" },
|
|
120
|
-
{ "id": "token-manager", "name": "Token Manager", "version": "1.0.0", "path": "core/token-manager.md" },
|
|
121
|
-
{ "id": "compression-engine", "name": "Compression Engine", "version": "1.0.0", "path": "core/compression-engine.md" },
|
|
122
|
-
{ "id": "reflection-engine", "name": "Reflection Engine", "version": "1.0.0", "path": "core/reflection-engine.md" },
|
|
123
|
-
{ "id": "evolution-engine", "name": "Evolution Engine", "version": "1.0.0", "path": "core/evolution-engine.md" },
|
|
124
|
-
{ "id": "quality-gates", "name": "Quality Gates", "version": "1.0.0", "path": "core/quality-gates.md" },
|
|
125
|
-
{ "id": "planning-engine", "name": "Planning Engine", "version": "1.0.0", "path": "core/planning-engine.md" }
|
|
126
|
-
]
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"name": "Architecture",
|
|
130
|
-
"count": 10,
|
|
131
|
-
"skills": [
|
|
132
|
-
{ "id": "architect", "name": "Software Architect", "version": "1.0.0", "path": "skills/software-architect.md" },
|
|
133
|
-
{ "id": "clean-arch", "name": "Clean Architecture", "version": "1.0.0", "path": "architecture/clean-architecture.md" },
|
|
134
|
-
{ "id": "hexagonal", "name": "Hexagonal Architecture", "version": "1.0.0", "path": "architecture/hexagonal-architecture.md" },
|
|
135
|
-
{ "id": "cqrs", "name": "CQRS Specialist", "version": "1.0.0", "path": "architecture/cqrs-specialist.md" },
|
|
136
|
-
{ "id": "event-driven", "name": "Event-Driven Architect", "version": "1.0.0", "path": "architecture/event-driven-architect.md" },
|
|
137
|
-
{ "id": "ddd", "name": "DDD Specialist", "version": "1.0.0", "path": "architecture/ddd-specialist.md" },
|
|
138
|
-
{ "id": "microservices", "name": "Microservices Expert", "version": "1.0.0", "path": "architecture/microservices-expert.md" },
|
|
139
|
-
{ "id": "monolith", "name": "Monolith Expert", "version": "1.0.0", "path": "architecture/monolith-expert.md" },
|
|
140
|
-
{ "id": "repository", "name": "Repository Pattern", "version": "1.0.0", "path": "architecture/repository-pattern.md" },
|
|
141
|
-
{ "id": "uow", "name": "Unit of Work", "version": "1.0.0", "path": "architecture/unit-of-work.md" }
|
|
142
|
-
]
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
"name": "Coding",
|
|
146
|
-
"count": 13,
|
|
147
|
-
"skills": [
|
|
148
|
-
{ "id": "backend", "name": "Backend Engineer", "version": "1.0.0", "path": "coding/backend-engineer.md" },
|
|
149
|
-
{ "id": "frontend", "name": "Frontend Engineer", "version": "1.0.0", "path": "coding/frontend-engineer.md" },
|
|
150
|
-
{ "id": "api", "name": "API Designer", "version": "1.0.0", "path": "coding/api-designer.md" },
|
|
151
|
-
{ "id": "laravel", "name": "Laravel Specialist", "version": "1.0.0", "path": "coding/laravel-specialist.md" },
|
|
152
|
-
{ "id": "php", "name": "PHP Specialist", "version": "1.0.0", "path": "coding/php-specialist.md" },
|
|
153
|
-
{ "id": "js", "name": "JavaScript Specialist", "version": "1.0.0", "path": "coding/javascript-specialist.md" },
|
|
154
|
-
{ "id": "ts", "name": "TypeScript Specialist", "version": "1.0.0", "path": "coding/typescript-specialist.md" },
|
|
155
|
-
{ "id": "python", "name": "Python Specialist", "version": "1.0.0", "path": "coding/python-specialist.md" },
|
|
156
|
-
{ "id": "react", "name": "React Specialist", "version": "1.0.0", "path": "coding/react-specialist.md" },
|
|
157
|
-
{ "id": "vue", "name": "Vue Specialist", "version": "1.0.0", "path": "coding/vue-specialist.md" },
|
|
158
|
-
{ "id": "node", "name": "Node.js Specialist", "version": "1.0.0", "path": "coding/nodejs-specialist.md" },
|
|
159
|
-
{ "id": "java", "name": "Java Specialist", "version": "1.0.0", "path": "coding/java-specialist.md" },
|
|
160
|
-
{ "id": "csharp", "name": "C# Specialist", "version": "1.0.0", "path": "coding/csharp-specialist.md" }
|
|
161
|
-
]
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"name": "Security",
|
|
165
|
-
"count": 3,
|
|
166
|
-
"skills": [
|
|
167
|
-
{ "id": "security", "name": "Security Engineer", "version": "1.0.0", "path": "security/security-engineer.md" },
|
|
168
|
-
{ "id": "owasp", "name": "OWASP Auditor", "version": "1.0.0", "path": "security/owasp-auditor.md" },
|
|
169
|
-
{ "id": "pentest", "name": "Pentest Reviewer", "version": "1.0.0", "path": "security/pentest-reviewer.md" }
|
|
170
|
-
]
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"name": "Quality",
|
|
174
|
-
"count": 12,
|
|
175
|
-
"skills": [
|
|
176
|
-
{ "id": "reviewer", "name": "Senior Code Reviewer", "version": "1.0.0", "path": "skills/senior-code-reviewer.md" },
|
|
177
|
-
{ "id": "clean-code", "name": "Clean Code Validator", "version": "1.0.0", "path": "skills/clean-code-validator.md" },
|
|
178
|
-
{ "id": "solid", "name": "SOLID Validator", "version": "1.0.0", "path": "skills/solid-validator.md" },
|
|
179
|
-
{ "id": "dry-kiss-yagni", "name": "DRY/KISS/YAGNI Validator", "version": "1.0.0", "path": "skills/dry-kiss-yagni-validator.md" },
|
|
180
|
-
{ "id": "complexity", "name": "Complexity Analyzer", "version": "1.0.0", "path": "skills/complexity-analyzer.md" },
|
|
181
|
-
{ "id": "bug-prevention", "name": "Bug Prevention", "version": "1.0.0", "path": "skills/bug-prevention.md" },
|
|
182
|
-
{ "id": "patterns", "name": "Design Pattern Advisor", "version": "1.0.0", "path": "skills/design-pattern-advisor.md" },
|
|
183
|
-
{ "id": "refactor", "name": "Refactoring Specialist", "version": "1.0.0", "path": "skills/refactoring-specialist.md" },
|
|
184
|
-
{ "id": "tech-debt", "name": "Technical Debt Analyzer", "version": "1.0.0", "path": "skills/technical-debt-analyzer.md" },
|
|
185
|
-
{ "id": "breaking-change", "name": "Breaking Change Detector", "version": "1.0.0", "path": "skills/breaking-change-detector.md" },
|
|
186
|
-
{ "id": "perf", "name": "Performance Optimizer", "version": "1.0.0", "path": "skills/performance-optimizer.md" },
|
|
187
|
-
{ "id": "scalability", "name": "Scalability Expert", "version": "1.0.0", "path": "skills/scalability-expert.md" }
|
|
188
|
-
]
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"name": "Testing",
|
|
192
|
-
"count": 4,
|
|
193
|
-
"skills": [
|
|
194
|
-
{ "id": "unit-test", "name": "Unit Test Engineer", "version": "1.0.0", "path": "testing/unit-test-engineer.md" },
|
|
195
|
-
{ "id": "integration-test", "name": "Integration Test Engineer", "version": "1.0.0", "path": "testing/integration-test-engineer.md" },
|
|
196
|
-
{ "id": "e2e-test", "name": "E2E Test Engineer", "version": "1.0.0", "path": "testing/e2e-test-engineer.md" },
|
|
197
|
-
{ "id": "mock", "name": "Mocking Specialist", "version": "1.0.0", "path": "testing/mocking-specialist.md" }
|
|
198
|
-
]
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
"name": "Database",
|
|
202
|
-
"count": 6,
|
|
203
|
-
"skills": [
|
|
204
|
-
{ "id": "db", "name": "Database Engineer", "version": "1.0.0", "path": "database/database-engineer.md" },
|
|
205
|
-
{ "id": "sql", "name": "SQL Optimizer", "version": "1.0.0", "path": "database/sql-optimizer.md" },
|
|
206
|
-
{ "id": "postgres", "name": "PostgreSQL Specialist", "version": "1.0.0", "path": "database/postgresql-specialist.md" },
|
|
207
|
-
{ "id": "mysql", "name": "MySQL Specialist", "version": "1.0.0", "path": "database/mysql-specialist.md" },
|
|
208
|
-
{ "id": "sqlserver", "name": "SQL Server Specialist", "version": "1.0.0", "path": "database/sqlserver-specialist.md" },
|
|
209
|
-
{ "id": "redis", "name": "Redis Specialist", "version": "1.0.0", "path": "database/redis-specialist.md" }
|
|
210
|
-
]
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"name": "DevOps",
|
|
214
|
-
"count": 8,
|
|
215
|
-
"skills": [
|
|
216
|
-
{ "id": "devops", "name": "DevOps Engineer", "version": "1.0.0", "path": "devops/devops-engineer.md" },
|
|
217
|
-
{ "id": "docker", "name": "Docker Expert", "version": "1.0.0", "path": "devops/docker-expert.md" },
|
|
218
|
-
{ "id": "k8s", "name": "Kubernetes Specialist", "version": "1.0.0", "path": "devops/kubernetes-specialist.md" },
|
|
219
|
-
{ "id": "git", "name": "Git Expert", "version": "1.0.0", "path": "devops/git-expert.md" },
|
|
220
|
-
{ "id": "gitflow", "name": "Git Flow Specialist", "version": "1.0.0", "path": "devops/git-flow-specialist.md" },
|
|
221
|
-
{ "id": "cicd", "name": "CI/CD Specialist", "version": "1.0.0", "path": "devops/ci-cd-specialist.md" },
|
|
222
|
-
{ "id": "linux", "name": "Linux Specialist", "version": "1.0.0", "path": "devops/linux-specialist.md" },
|
|
223
|
-
{ "id": "windows", "name": "Windows Specialist", "version": "1.0.0", "path": "devops/windows-specialist.md" }
|
|
224
|
-
]
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
"name": "Engineering Roles",
|
|
228
|
-
"count": 4,
|
|
229
|
-
"skills": [
|
|
230
|
-
{ "id": "principal", "name": "Principal Engineer", "version": "1.0.0", "path": "skills/principal-engineer.md" },
|
|
231
|
-
{ "id": "staff", "name": "Staff Engineer", "version": "1.0.0", "path": "skills/staff-engineer.md" },
|
|
232
|
-
{ "id": "techlead", "name": "Tech Lead", "version": "1.0.0", "path": "skills/tech-lead.md" },
|
|
233
|
-
{ "id": "cto", "name": "CTO Advisor", "version": "1.0.0", "path": "skills/cto-advisor.md" }
|
|
234
|
-
]
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"name": "Debugging & Root Cause",
|
|
238
|
-
"count": 3,
|
|
239
|
-
"skills": [
|
|
240
|
-
{ "id": "bug", "name": "Bug Hunter", "version": "1.0.0", "path": "skills/bug-hunter.md" },
|
|
241
|
-
{ "id": "debug", "name": "Debug Specialist", "version": "1.0.0", "path": "skills/debug-specialist.md" },
|
|
242
|
-
{ "id": "root-cause", "name": "Root Cause Analyzer", "version": "1.0.0", "path": "skills/root-cause-analyzer.md" }
|
|
243
|
-
]
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"name": "Teaching",
|
|
247
|
-
"count": 6,
|
|
248
|
-
"skills": [
|
|
249
|
-
{ "id": "professor", "name": "Professor Mode", "version": "1.0.0", "path": "teaching/professor-mode.md" },
|
|
250
|
-
{ "id": "mentor", "name": "Mentor Mode", "version": "1.0.0", "path": "teaching/mentor-mode.md" },
|
|
251
|
-
{ "id": "explainer", "name": "Code Explainer", "version": "1.0.0", "path": "teaching/code-explainer.md" },
|
|
252
|
-
{ "id": "interactive", "name": "Interactive Teaching", "version": "1.0.0", "path": "teaching/interactive-teaching.md" },
|
|
253
|
-
{ "id": "adaptive", "name": "Adaptive Teaching", "version": "1.0.0", "path": "teaching/adaptive-teaching.md" },
|
|
254
|
-
{ "id": "tracker", "name": "Learning Tracker", "version": "1.0.0", "path": "teaching/learning-tracker.md" }
|
|
255
|
-
]
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"name": "Memory",
|
|
259
|
-
"count": 6,
|
|
260
|
-
"skills": [
|
|
261
|
-
{ "id": "memory", "name": "Memory Manager", "version": "1.0.0", "path": "memory/memory-manager.md" },
|
|
262
|
-
{ "id": "session-compress", "name": "Session Compression", "version": "1.0.0", "path": "memory/session-compression.md" },
|
|
263
|
-
{ "id": "summarizer", "name": "Conversation Summarizer", "version": "1.0.0", "path": "memory/conversation-summarizer.md" },
|
|
264
|
-
{ "id": "recovery", "name": "Context Recovery", "version": "1.0.0", "path": "memory/context-recovery.md" },
|
|
265
|
-
{ "id": "recall", "name": "Smart Recall", "version": "1.0.0", "path": "memory/smart-recall.md" },
|
|
266
|
-
{ "id": "project-memory", "name": "Long-Term Project Memory", "version": "1.0.0", "path": "memory/long-term-project-memory.md" }
|
|
267
|
-
]
|
|
268
|
-
},
|
|
269
|
-
{
|
|
270
|
-
"name": "Optimization",
|
|
271
|
-
"count": 3,
|
|
272
|
-
"skills": [
|
|
273
|
-
{ "id": "token-reduce", "name": "Token Reducer", "version": "1.0.0", "path": "optimization/token-reducer.md" },
|
|
274
|
-
{ "id": "prompt", "name": "Prompt Optimizer", "version": "1.0.0", "path": "optimization/prompt-optimizer.md" },
|
|
275
|
-
{ "id": "cost", "name": "Cost Optimizer", "version": "1.0.0", "path": "optimization/cost-optimizer.md" }
|
|
276
|
-
]
|
|
277
|
-
},
|
|
278
|
-
{
|
|
279
|
-
"name": "Analysis",
|
|
280
|
-
"count": 5,
|
|
281
|
-
"skills": [
|
|
282
|
-
{ "id": "requirements", "name": "Requirement Analyzer", "version": "1.0.0", "path": "skills/requirement-analyzer.md" },
|
|
283
|
-
{ "id": "risk", "name": "Risk Analyzer", "version": "1.0.0", "path": "skills/risk-analyzer.md" },
|
|
284
|
-
{ "id": "deps", "name": "Dependency Analyzer", "version": "1.0.0", "path": "skills/dependency-analyzer.md" },
|
|
285
|
-
{ "id": "tradeoff", "name": "Trade-off Analyzer", "version": "1.0.0", "path": "skills/tradeoff-analyzer.md" },
|
|
286
|
-
{ "id": "alternatives", "name": "Alternative Solution Generator", "version": "1.0.0", "path": "skills/alternative-solution-generator.md" }
|
|
287
|
-
]
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"name": "Documentation",
|
|
291
|
-
"count": 6,
|
|
292
|
-
"skills": [
|
|
293
|
-
{ "id": "docs", "name": "Documentation Writer", "version": "1.0.0", "path": "skills/documentation-writer.md" },
|
|
294
|
-
{ "id": "tech-writer", "name": "Technical Writer", "version": "1.0.0", "path": "skills/technical-writer.md" },
|
|
295
|
-
{ "id": "readme", "name": "README Generator", "version": "1.0.0", "path": "skills/readme-generator.md" },
|
|
296
|
-
{ "id": "uml", "name": "UML Generator", "version": "1.0.0", "path": "skills/uml-generator.md" },
|
|
297
|
-
{ "id": "sequence", "name": "Sequence Diagram Builder", "version": "1.0.0", "path": "skills/sequence-diagram-builder.md" },
|
|
298
|
-
{ "id": "er", "name": "ER Diagram Builder", "version": "1.0.0", "path": "skills/er-diagram-builder.md" }
|
|
299
|
-
]
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"name": "Project Management",
|
|
303
|
-
"count": 3,
|
|
304
|
-
"skills": [
|
|
305
|
-
{ "id": "pm", "name": "Project Manager", "version": "1.0.0", "path": "skills/project-manager.md" },
|
|
306
|
-
{ "id": "planner", "name": "Task Planner", "version": "1.0.0", "path": "skills/task-planner.md" },
|
|
307
|
-
{ "id": "release", "name": "Release Planner", "version": "1.0.0", "path": "skills/release-planner.md" }
|
|
308
|
-
]
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"name": "UX & Observability",
|
|
312
|
-
"count": 5,
|
|
313
|
-
"skills": [
|
|
314
|
-
{ "id": "ux", "name": "UX Reviewer", "version": "1.0.0", "path": "skills/ux-reviewer.md" },
|
|
315
|
-
{ "id": "a11y", "name": "Accessibility Reviewer", "version": "1.0.0", "path": "skills/accessibility-reviewer.md" },
|
|
316
|
-
{ "id": "logging", "name": "Logging Expert", "version": "1.0.0", "path": "skills/logging-expert.md" },
|
|
317
|
-
{ "id": "observability", "name": "Observability Expert", "version": "1.0.0", "path": "skills/observability-expert.md" },
|
|
318
|
-
{ "id": "monitoring", "name": "Monitoring Specialist", "version": "1.0.0", "path": "skills/monitoring-specialist.md" }
|
|
319
|
-
]
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"name": "Self-Improvement",
|
|
323
|
-
"count": 6,
|
|
324
|
-
"skills": [
|
|
325
|
-
{ "id": "self-fix", "name": "Self Correction", "version": "1.0.0", "path": "skills/self-correction.md" },
|
|
326
|
-
{ "id": "self-critique", "name": "Self Critique", "version": "1.0.0", "path": "skills/self-critique.md" },
|
|
327
|
-
{ "id": "improvement", "name": "Continuous Improvement", "version": "1.0.0", "path": "skills/continuous-improvement.md" },
|
|
328
|
-
{ "id": "hallucination", "name": "Hallucination Detection", "version": "1.0.0", "path": "skills/hallucination-detection.md" },
|
|
329
|
-
{ "id": "confidence", "name": "Confidence Estimator", "version": "1.0.0", "path": "skills/confidence-estimator.md" },
|
|
330
|
-
{ "id": "learning", "name": "Continuous Learning Engine", "version": "1.0.0", "path": "skills/continuous-learning-engine.md" }
|
|
331
|
-
]
|
|
332
|
-
},
|
|
333
|
-
{
|
|
334
|
-
"name": "AI & Agent",
|
|
335
|
-
"count": 2,
|
|
336
|
-
"skills": [
|
|
337
|
-
{ "id": "ai-agent", "name": "AI Agent", "version": "1.0.0", "path": "skills/ai-agent/SKILL.md", "type": "advanced" },
|
|
338
|
-
{ "id": "ai-agent-dev", "name": "AI Agent Dev", "version": "1.0.0", "path": "skills/ai-agent-dev/SKILL.md", "type": "advanced" }
|
|
339
|
-
]
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"name": "Architecture Patterns",
|
|
343
|
-
"count": 1,
|
|
344
|
-
"skills": [
|
|
345
|
-
{ "id": "architecture-patterns", "name": "Architecture Patterns", "version": "1.0.0", "path": "skills/architecture-patterns/SKILL.md", "type": "advanced" }
|
|
346
|
-
]
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
"name": "Cloud & Infrastructure",
|
|
350
|
-
"count": 5,
|
|
351
|
-
"skills": [
|
|
352
|
-
{ "id": "cloud-architect", "name": "Cloud Architect", "version": "1.0.0", "path": "skills/cloud-architect/SKILL.md", "type": "advanced", "status": "disabled" },
|
|
353
|
-
{ "id": "cloud-infra", "name": "Cloud Infrastructure", "version": "1.0.0", "path": "skills/cloud-infra/SKILL.md", "type": "advanced", "status": "disabled" },
|
|
354
|
-
{ "id": "iac-terraform", "name": "IaC & Terraform", "version": "1.0.0", "path": "skills/iac-terraform/SKILL.md", "type": "advanced", "status": "disabled" },
|
|
355
|
-
{ "id": "serverless-edge", "name": "Serverless & Edge", "version": "1.0.0", "path": "skills/serverless-edge/SKILL.md", "type": "advanced", "status": "disabled" },
|
|
356
|
-
{ "id": "sre-reliability", "name": "SRE & Reliability", "version": "1.0.0", "path": "skills/sre-reliability/SKILL.md", "type": "advanced", "status": "disabled" }
|
|
357
|
-
]
|
|
358
|
-
},
|
|
359
|
-
{
|
|
360
|
-
"name": "Chaos Engineering",
|
|
361
|
-
"count": 1,
|
|
362
|
-
"skills": [
|
|
363
|
-
{ "id": "chaos-engineering", "name": "Chaos Engineering", "version": "1.0.0", "path": "skills/chaos-engineering/SKILL.md", "type": "advanced", "status": "disabled" }
|
|
364
|
-
]
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
"name": "Data Engineering",
|
|
368
|
-
"count": 2,
|
|
369
|
-
"skills": [
|
|
370
|
-
{ "id": "data-engineer", "name": "Data Engineer", "version": "1.0.0", "path": "skills/data-engineer/SKILL.md", "type": "advanced", "status": "disabled" },
|
|
371
|
-
{ "id": "data-engineering", "name": "Data Engineering", "version": "1.0.0", "path": "skills/data-engineering/SKILL.md", "type": "advanced", "status": "disabled" }
|
|
372
|
-
]
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
"name": "Feature Flags",
|
|
376
|
-
"count": 1,
|
|
377
|
-
"skills": [
|
|
378
|
-
{ "id": "feature-flags", "name": "Feature Flags", "version": "1.0.0", "path": "skills/feature-flags/SKILL.md", "type": "advanced", "status": "disabled" }
|
|
379
|
-
]
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
"name": "GraphQL",
|
|
383
|
-
"count": 1,
|
|
384
|
-
"skills": [
|
|
385
|
-
{ "id": "graphql", "name": "GraphQL", "version": "1.0.0", "path": "skills/graphql/SKILL.md", "type": "advanced", "status": "disabled" }
|
|
386
|
-
]
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
"name": "i18n & Localization",
|
|
390
|
-
"count": 1,
|
|
391
|
-
"skills": [
|
|
392
|
-
{ "id": "i18n-l10n", "name": "i18n & Localization", "version": "1.0.0", "path": "skills/i18n-l10n/SKILL.md", "type": "advanced", "status": "disabled" }
|
|
393
|
-
]
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"name": "Legacy Migration",
|
|
397
|
-
"count": 1,
|
|
398
|
-
"skills": [
|
|
399
|
-
{ "id": "legacy-migration", "name": "Legacy Migration", "version": "1.0.0", "path": "skills/legacy-migration/SKILL.md", "type": "advanced", "status": "disabled" }
|
|
400
|
-
]
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
"name": "Mobile Development",
|
|
404
|
-
"count": 2,
|
|
405
|
-
"skills": [
|
|
406
|
-
{ "id": "mobile-dev", "name": "Mobile Development", "version": "1.0.0", "path": "skills/mobile-dev/SKILL.md", "type": "advanced", "status": "disabled" },
|
|
407
|
-
{ "id": "mobile-engineer", "name": "Mobile Engineer", "version": "1.0.0", "path": "skills/mobile-engineer/SKILL.md", "type": "advanced", "status": "disabled" }
|
|
408
|
-
]
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
"name": "Privacy & Security Extended",
|
|
412
|
-
"count": 2,
|
|
413
|
-
"skills": [
|
|
414
|
-
{ "id": "privacy-engineer", "name": "Privacy Engineer", "version": "1.0.0", "path": "skills/privacy-engineer/SKILL.md", "type": "advanced", "status": "disabled" },
|
|
415
|
-
{ "id": "security-privacy", "name": "Security & Privacy", "version": "1.0.0", "path": "skills/security-privacy/SKILL.md", "type": "advanced" }
|
|
416
|
-
]
|
|
417
|
-
},
|
|
418
|
-
{
|
|
419
|
-
"name": "Quality Assurance Extended",
|
|
420
|
-
"count": 2,
|
|
421
|
-
"skills": [
|
|
422
|
-
{ "id": "qa-checklist", "name": "QA Checklist", "version": "1.0.0", "path": "skills/qa/SKILL.md", "type": "advanced" },
|
|
423
|
-
{ "id": "qa-engineer", "name": "QA Engineer", "version": "1.0.0", "path": "skills/qa-engineer/SKILL.md", "type": "advanced" }
|
|
424
|
-
]
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
"name": "Token Economics",
|
|
428
|
-
"count": 1,
|
|
429
|
-
"skills": [
|
|
430
|
-
{ "id": "economia-tokens", "name": "Economia de Tokens", "version": "1.0.0", "path": "skills/economia-tokens/SKILL.md", "type": "advanced" }
|
|
431
|
-
]
|
|
432
|
-
},
|
|
433
|
-
{
|
|
434
|
-
"name": "Session & Memory Extended",
|
|
435
|
-
"count": 2,
|
|
436
|
-
"skills": [
|
|
437
|
-
{ "id": "handoff-sessao", "name": "Handoff de Sessão", "version": "1.0.0", "path": "skills/handoff-sessao/SKILL.md", "type": "advanced" },
|
|
438
|
-
{ "id": "memoria-projeto", "name": "Memória de Projeto", "version": "1.0.0", "path": "skills/memoria-projeto/SKILL.md", "type": "advanced" }
|
|
439
|
-
]
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
"name": "Professor Mode Extended",
|
|
443
|
-
"count": 1,
|
|
444
|
-
"skills": [
|
|
445
|
-
{ "id": "professor-modo", "name": "Modo Professor", "version": "1.0.0", "path": "skills/professor-modo/SKILL.md", "type": "advanced" }
|
|
446
|
-
]
|
|
447
|
-
},
|
|
448
|
-
{
|
|
449
|
-
"name": "Frontend Extended",
|
|
450
|
-
"count": 2,
|
|
451
|
-
"skills": [
|
|
452
|
-
{ "id": "frontend-tokens", "name": "Frontend Design Tokens", "version": "1.0.0", "path": "skills/frontend/SKILL.md", "type": "advanced" },
|
|
453
|
-
{ "id": "frontend-dev", "name": "Frontend Dev", "version": "1.0.0", "path": "skills/frontend-dev/SKILL.md", "type": "advanced" }
|
|
454
|
-
]
|
|
455
|
-
},
|
|
456
|
-
{
|
|
457
|
-
"name": "Animation & 3D",
|
|
458
|
-
"count": 3,
|
|
459
|
-
"skills": [
|
|
460
|
-
{ "id": "animation-web", "name": "Animation Web (Scrollytelling/Cinematic)", "version": "1.0.0", "path": "skills/animation-web/SKILL.md", "type": "advanced" },
|
|
461
|
-
{ "id": "webgl-3d", "name": "WebGL 3D (Three.js/R3F)", "version": "1.0.0", "path": "skills/webgl-3d/SKILL.md", "type": "advanced" },
|
|
462
|
-
{ "id": "motion-design", "name": "Motion Design (GSAP/Anime.js/Motion)", "version": "1.0.0", "path": "skills/motion-design/SKILL.md", "type": "advanced" }
|
|
463
|
-
]
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
"name": "WebAssembly",
|
|
467
|
-
"count": 1,
|
|
468
|
-
"skills": [
|
|
469
|
-
{ "id": "wasm", "name": "WebAssembly", "version": "1.0.0", "path": "skills/wasm/SKILL.md", "type": "advanced", "status": "disabled" }
|
|
470
|
-
]
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
"name": "Web Performance & SEO",
|
|
474
|
-
"count": 2,
|
|
475
|
-
"skills": [
|
|
476
|
-
{ "id": "web-perf-engineer", "name": "Web Performance Engineer", "version": "1.0.0", "path": "skills/web-perf-engineer/SKILL.md", "type": "advanced", "status": "disabled" },
|
|
477
|
-
{ "id": "web-perf-seo", "name": "Web Performance & SEO", "version": "1.0.0", "path": "skills/web-perf-seo/SKILL.md", "type": "advanced" }
|
|
478
|
-
]
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"name": "WebSocket & Real-Time",
|
|
482
|
-
"count": 1,
|
|
483
|
-
"skills": [
|
|
484
|
-
{ "id": "websocket-realtime", "name": "WebSocket & Real-Time", "version": "1.0.0", "path": "skills/websocket-realtime/SKILL.md", "type": "advanced", "status": "disabled" }
|
|
485
|
-
]
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"name": "Agentic & Prompt",
|
|
489
|
-
"count": 3,
|
|
490
|
-
"skills": [
|
|
491
|
-
{ "id": "agentic-coding", "name": "Agentic Coding", "version": "1.0.0", "path": "skills/agentic-coding.md" },
|
|
492
|
-
{ "id": "mcp", "name": "MCP Server Dev", "version": "1.0.0", "path": "skills/mcp-server-dev.md" },
|
|
493
|
-
{ "id": "prompt-eng", "name": "Prompt Engineering", "version": "1.0.0", "path": "skills/prompt-engineering.md" }
|
|
494
|
-
]
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
"name": "Code Audit",
|
|
498
|
-
"count": 1,
|
|
499
|
-
"skills": [
|
|
500
|
-
{ "id": "code-auditor", "name": "Code Auditor", "version": "1.0.0", "path": "skills/code-auditor.md" }
|
|
501
|
-
]
|
|
502
|
-
}
|
|
503
|
-
]
|
|
504
|
-
},
|
|
505
|
-
|
|
506
|
-
"packs": {
|
|
507
|
-
"core": { "description": "Core engines (always included)", "included": true },
|
|
508
|
-
"agents": { "description": "Pre-built agent definitions" },
|
|
509
|
-
"skills": { "description": "All specialized skills" },
|
|
510
|
-
"architecture": { "description": "Architecture patterns (Clean, Hexagonal, DDD, CQRS, etc.)" },
|
|
511
|
-
"coding": { "description": "Language & framework specialists (JS, TS, Python, PHP, React, Vue, etc.)" },
|
|
512
|
-
"database": { "description": "Database engineering (PostgreSQL, MySQL, Redis, SQL Server)" },
|
|
513
|
-
"devops": { "description": "DevOps tooling (Docker, K8s, CI/CD, Git, Linux)" },
|
|
514
|
-
"security": { "description": "Security & OWASP auditing" },
|
|
515
|
-
"testing": { "description": "Test engineering (unit, integration, E2E, mocking)" },
|
|
516
|
-
"memory": { "description": "Memory management & session persistence" },
|
|
517
|
-
"optimization": { "description": "Token reduction & cost optimization" },
|
|
518
|
-
"teaching": { "description": "Teaching modes & adaptive learning" }
|
|
519
|
-
},
|
|
520
|
-
|
|
521
|
-
"meta": {
|
|
522
|
-
"generated_at": "2026-07-31T14:41:00Z",
|
|
523
|
-
"engine": "node >= 18.0.0",
|
|
524
|
-
"cli": {
|
|
525
|
-
"bin": ["izanagi", "izanagi-ai"],
|
|
526
|
-
"commands": ["init", "run", "create", "compile", "list", "doctor"]
|
|
527
|
-
}
|
|
528
|
-
}
|
|
529
|
-
}
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: privacy-engineer
|
|
3
|
-
description: |
|
|
4
|
-
Agente Privacy & Security Engineer para o Izanagi. Responsavel por implementar
|
|
5
|
-
controles de seguranca, conformidade com LGPD/GDPR, secure coding, e protecao de dados
|
|
6
|
-
dos usuarios. Atua como engenheiro de seguranca focado em privacidade.
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# Agente: Privacy & Security Engineer
|
|
10
|
-
|
|
11
|
-
## Perfil
|
|
12
|
-
|
|
13
|
-
Voce e um **Privacy & Security Engineer** especializado em seguranca de aplicacoes web e conformidade com leis de protecao de dados (LGPD, GDPR). Voce implementa controles que protegem dados dos usuarios sem comprometer a experiencia.
|
|
14
|
-
|
|
15
|
-
### Sua Expertise:
|
|
16
|
-
- OWASP Top 10, ASVS
|
|
17
|
-
- LGPD (Lei 13.709/2018) e GDPR
|
|
18
|
-
- Supabase Auth + RLS
|
|
19
|
-
- Zod validation, input sanitization
|
|
20
|
-
- CSP, CORS, security headers
|
|
21
|
-
- Identity and access management (IAM)
|
|
22
|
-
- Cryptography (hashing, encryption, JWT)
|
|
23
|
-
|
|
24
|
-
---
|
|
25
|
-
|
|
26
|
-
## Antes de Comecar
|
|
27
|
-
|
|
28
|
-
1. Leia a skill `security-privacy` para padroes e referencias
|
|
29
|
-
2. Consulte `AGENTS.md` para regras do projeto
|
|
30
|
-
3. Identifique dados pessoais envolvidos na feature
|
|
31
|
-
|
|
32
|
-
---
|
|
33
|
-
|
|
34
|
-
## Responsabilidades
|
|
35
|
-
|
|
36
|
-
### O que voce FAZ:
|
|
37
|
-
- Implementar RLS policies no Supabase
|
|
38
|
-
- Validar inputs com Zod schemas
|
|
39
|
-
- Configurar security headers (CSP, HSTS, X-Frame-Options)
|
|
40
|
-
- LGPD compliance (consentimento, anonimizacao, direito a exclusao)
|
|
41
|
-
- Rate limiting em endpoints criticos
|
|
42
|
-
- Audit logging (anonimizado)
|
|
43
|
-
- Revisar codigo para OWASP Top 10 vulnerabilidades
|
|
44
|
-
|
|
45
|
-
### O que voce NAO FAZ:
|
|
46
|
-
- ❌ Compartilhar ou logar PII (CPF, RG, e-mail) em logs
|
|
47
|
-
- ❌ Ignorar validacao server-side (confiar apenas no client-side)
|
|
48
|
-
- ❌ Usar algoritmos criptograficos obsoletos (MD5, SHA1, DES)
|
|
49
|
-
|
|
50
|
-
---
|
|
51
|
-
|
|
52
|
-
## Workflow
|
|
53
|
-
|
|
54
|
-
### Revisao de Seguranca
|
|
55
|
-
1. Identificar dados pessoais na feature
|
|
56
|
-
2. Validar consentimento (se aplicavel)
|
|
57
|
-
3. Verificar RLS policies
|
|
58
|
-
4. Checar input validation (client + server)
|
|
59
|
-
5. Verificar security headers
|
|
60
|
-
6. Confirmar audit logging
|
|
61
|
-
|
|
62
|
-
### Implementacao LGPD
|
|
63
|
-
1. Mapear dados pessoais coletados
|
|
64
|
-
2. Implementar consentimento explicito
|
|
65
|
-
3. Criar API de exportacao/exclusao de dados
|
|
66
|
-
4. Configurar retencao e eliminacao de dados
|
|
67
|
-
5. Documentar no Aviso de Privacidade
|
|
68
|
-
|
|
69
|
-
---
|
|
70
|
-
|
|
71
|
-
## Regras Inviavaveis
|
|
72
|
-
|
|
73
|
-
1. **NUNCA** logar PII (sempre anonimizar antes)
|
|
74
|
-
2. **SEMPRE** validar inputs no servidor (nunca so no client)
|
|
75
|
-
3. **SEMPRE** usar prepared statements ou ORM (nunca concatenar SQL)
|
|
76
|
-
4. **NUNCA** armazenar senhas em texto puro (sempre bcrypt)
|
|
77
|
-
5. **SEMPRE** RLS policies em todas as tabelas do Supabase
|
|
78
|
-
6. **SEMPRE** CSP headers configurados
|
|
79
|
-
7. **NUNCA** expor stack traces em producao
|
|
80
|
-
|
|
81
|
-
## References
|
|
82
|
-
|
|
83
|
-
Veja `references.md` nesta pasta — curadoria dos melhores sites/referências (2026) para este tópico, com as fontes canônicas e exemplos de alto nível.
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# References — Privacy Engineer
|
|
2
|
-
> Curadoria dos melhores sites/referências (2026) para privacidade de dados, LGPD/GDPR e secure coding.
|
|
3
|
-
|
|
4
|
-
## Docs canônicas
|
|
5
|
-
- [Lei LGPD (13.709/2018)](https://www.planalto.gov.br/ccivil_03/_ato2015-2018/2018/lei/l13709.htm) — Texto oficial da lei brasileira de proteção de dados.
|
|
6
|
-
- [ANPD](https://www.gov.br/anpd/pt-br) — Autoridade Nacional de Proteção de Dados, guias e sanções.
|
|
7
|
-
- [GDPR.eu](https://gdpr.eu/) — Guia completo do Regulamento Geral de Proteção de Dados europeu.
|
|
8
|
-
- [gdpr-info.eu](https://gdpr-info.eu/) — Texto integral e navegável do GDPR.
|
|
9
|
-
- [NIST SP 800-53](https://csrc.nist.gov/publications/detail/sp/800-53/rev-5/final) — Controles de segurança e privacidade do NIST.
|
|
10
|
-
|
|
11
|
-
## Checklists / práticas
|
|
12
|
-
- [Privacy by Design (Cavoukian)](https://www.privacybydesign.ca/) — Fundamentos dos 7 princípios de privacidade desde a concepção.
|
|
13
|
-
- [IAPP](https://iapp.org/) — Recursos, certificações (CIPP) e notícias sobre privacidade.
|
|
14
|
-
- [EFF — Surveillance Self-Defense](https://ssd.eff.org/) — Guias práticos de proteção de dados e criptografia.
|
|
15
|
-
- [NIST CSF](https://www.nist.gov/cyberframework) — Framework de cibersegurança com foco em governança.
|
|
16
|
-
- [ISO/IEC 27001](https://www.iso.org/isoiec-27001-information-security.html) — Padrão internacional de gestão de segurança da informação.
|
|
17
|
-
|
|
18
|
-
## Comunidade / exemplos
|
|
19
|
-
- [EFF](https://www.eff.org/) — Organização referência em direitos digitais e privacidade.
|
|
20
|
-
- [OWASP Cheat Sheets](https://cheatsheetseries.owasp.org/) — Boas práticas de proteção de dados em aplicações.
|