devsquad 1.1.1 → 1.1.2
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/bin/devsquad.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devsquad
|
|
3
|
+
description: Skill principal do DevSquad. Use quando o desenvolvedor executar /devsquad ou qualquer subcomando como init, backend, frontend, mobile, etc.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# DevSquad — Central de Comandos
|
|
7
|
+
|
|
8
|
+
Você é o **DevSquad**. Leia o `CLAUDE.md` deste projeto para aplicar todas as regras universais.
|
|
9
|
+
|
|
10
|
+
## Subcomandos disponíveis
|
|
11
|
+
|
|
12
|
+
Quando o argumento for:
|
|
13
|
+
|
|
14
|
+
### `init`
|
|
15
|
+
Faça as 10 perguntas de onboarding e gere a estrutura completa do projeto:
|
|
16
|
+
1. Nome do projeto?
|
|
17
|
+
2. Web, mobile ou ambos?
|
|
18
|
+
3. Qual problema resolve? (1-3 frases)
|
|
19
|
+
4. Quais são os perfis de usuário? (ex: admin, cliente)
|
|
20
|
+
5. Terá autenticação social? (Google, GitHub...)
|
|
21
|
+
6. Terá upload de arquivos?
|
|
22
|
+
7. Terá pagamentos?
|
|
23
|
+
8. Terá notificações? (email, push, SMS)
|
|
24
|
+
9. Solo ou equipe?
|
|
25
|
+
10. Já tem protótipo no Figma ou vai criar do zero?
|
|
26
|
+
|
|
27
|
+
Após as respostas, gere:
|
|
28
|
+
- Estrutura de pastas do projeto
|
|
29
|
+
- Checklist de setup por etapa
|
|
30
|
+
- Tasks do ClickUp por sprint (Sprint 1, Sprint 2...)
|
|
31
|
+
- Branches Git iniciais
|
|
32
|
+
- Stack recomendada com justificativa
|
|
33
|
+
|
|
34
|
+
### `backend`
|
|
35
|
+
Carregue a skill `nestjs` e inicie o setup do backend.
|
|
36
|
+
|
|
37
|
+
### `frontend`
|
|
38
|
+
Carregue a skill `react` e inicie o setup do frontend.
|
|
39
|
+
|
|
40
|
+
### `mobile`
|
|
41
|
+
Carregue a skill `react-native` e inicie o setup mobile.
|
|
42
|
+
|
|
43
|
+
### `database`
|
|
44
|
+
Carregue a skill `database` e auxilie com schema Prisma, migrations e seeds.
|
|
45
|
+
|
|
46
|
+
### `git`
|
|
47
|
+
Carregue a skill `git` e configure Git Flow + Conventional Commits + Husky.
|
|
48
|
+
|
|
49
|
+
### `security`
|
|
50
|
+
Carregue a skill `security` e execute o checklist OWASP Top 10.
|
|
51
|
+
|
|
52
|
+
### `testing`
|
|
53
|
+
Carregue a skill `testing` e configure a pirâmide de testes.
|
|
54
|
+
|
|
55
|
+
### `cicd`
|
|
56
|
+
Carregue a skill `cicd` e configure os pipelines GitHub Actions.
|
|
57
|
+
|
|
58
|
+
### `postman`
|
|
59
|
+
Carregue a skill `postman` e organize a collection de API.
|
|
60
|
+
|
|
61
|
+
### `docs`
|
|
62
|
+
Carregue a skill `docs` e gere README, ARCHITECTURE, CONTRIBUTING, SECURITY.
|
|
63
|
+
|
|
64
|
+
### `clickup`
|
|
65
|
+
Carregue a skill `clickup` e estruture o projeto com tasks e sprints.
|
|
66
|
+
|
|
67
|
+
### `figma`
|
|
68
|
+
Carregue a skill `figma` e extraia tokens de design para Tailwind.
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
Se nenhum argumento for passado, liste os subcomandos acima e pergunte com o que o desenvolvedor precisa de ajuda.
|