tuticli 0.1.0
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/README.md +63 -0
- package/bin/cli.js +2001 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# tuticli
|
|
2
|
+
|
|
3
|
+
CLI interativo para Claude AI com ferramentas de arquivo, streaming e ferramentas.
|
|
4
|
+
|
|
5
|
+
## Instalar
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g tuticli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Ou via npx (sem instalar):
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx tuticli
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Configurar API Key
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
tuticli config set api-key SUA_API_KEY
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usar
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Iniciar chat
|
|
27
|
+
tuticli
|
|
28
|
+
|
|
29
|
+
# Comandos no chat
|
|
30
|
+
/help Mostra ajuda
|
|
31
|
+
/clear Limpa histórico da sessão
|
|
32
|
+
/sessions Lista sessões salvas
|
|
33
|
+
/new Nova sessão
|
|
34
|
+
/exit Sai do chat
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Funcionalidades
|
|
38
|
+
|
|
39
|
+
- Chat interativo com streaming de respostas
|
|
40
|
+
- Leitura, criação e edição de arquivos via ferramentas
|
|
41
|
+
- Execução de comandos no terminal
|
|
42
|
+
- Sessões salvas em SQLite
|
|
43
|
+
- Sugestões de continuacao apos cada resposta
|
|
44
|
+
- Efeitos de digitacao (typing effect) com blocos de codigo formatados
|
|
45
|
+
|
|
46
|
+
## Requisitos
|
|
47
|
+
|
|
48
|
+
- Node.js >= 20.0.0
|
|
49
|
+
- Build tools (para `better-sqlite3`)
|
|
50
|
+
|
|
51
|
+
## Instalar a partir do codigo fonte
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
git clone https://github.com/seu-usuario/tuticli.git
|
|
55
|
+
cd tuticli
|
|
56
|
+
npm install
|
|
57
|
+
npm run build
|
|
58
|
+
npm link
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## License
|
|
62
|
+
|
|
63
|
+
MIT
|