smolerclaw 1.6.0 → 1.6.1
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 +34 -0
- package/dist/index.js +263 -260
- package/package.json +56 -57
package/README.md
CHANGED
|
@@ -61,6 +61,21 @@ smolerclaw is a terminal AI assistant that lives on your Windows machine. It can
|
|
|
61
61
|
- **Auto-refresh** — proactive OAuth token monitoring and renewal before expiration
|
|
62
62
|
- **Finance verification** — amount limits, duplicate detection, daily spending alerts
|
|
63
63
|
- **Plugin system** — install plugins from GitHub with `/plugin install owner/repo`, supports JSON and TypeScript plugins with lifecycle hooks
|
|
64
|
+
- **Macros** — quick program launchers (`/macro vscode`, `/macro chrome`), create custom macros for apps, URLs, files, and commands
|
|
65
|
+
- **Web UI** — browser-based interface via `smolerclaw ui` (Hono server)
|
|
66
|
+
- **Desktop app** — native desktop window via `smolerclaw desktop` (Electrobun)
|
|
67
|
+
- **i18n** — full Portuguese and English interface, auto-detected or set with `/lang`
|
|
68
|
+
- **Scheduler** — recurring jobs via Windows Task Scheduler (`/schedule`, `/jobs`)
|
|
69
|
+
|
|
70
|
+
## Modes
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
smolerclaw # Interactive TUI (default)
|
|
74
|
+
smolerclaw ui # Web UI at http://localhost:3847
|
|
75
|
+
smolerclaw desktop # Desktop app (Electrobun)
|
|
76
|
+
smolerclaw ui --port 8080 # Custom port
|
|
77
|
+
smolerclaw -p "question" # Print mode (non-interactive)
|
|
78
|
+
```
|
|
64
79
|
|
|
65
80
|
## TUI Commands
|
|
66
81
|
|
|
@@ -81,6 +96,8 @@ smolerclaw is a terminal AI assistant that lives on your Windows machine. It can
|
|
|
81
96
|
/auto-refresh Token refresh status /plugins List plugins
|
|
82
97
|
/plugin install owner/repo /plugin info Plugin details
|
|
83
98
|
/entrada 500 cat Record income /saida 50 cat Record expense
|
|
99
|
+
/macro vscode Run macro /macro list List all macros
|
|
100
|
+
/schedule Manage scheduled jobs /jobs List jobs
|
|
84
101
|
```
|
|
85
102
|
|
|
86
103
|
## Auth
|
|
@@ -157,6 +174,21 @@ smolerclaw e um assistente de IA no terminal que vive na sua maquina Windows. El
|
|
|
157
174
|
- **Auto-refresh** — monitoramento proativo de token OAuth com renovacao automatica antes da expiracao
|
|
158
175
|
- **Verificacao financeira** — limites de valor, deteccao de duplicatas, alertas de gasto diario
|
|
159
176
|
- **Sistema de plugins** — instalar plugins do GitHub com `/plugin install owner/repo`, suporte a plugins JSON e TypeScript com lifecycle hooks
|
|
177
|
+
- **Macros** — atalhos rapidos para programas (`/macro vscode`, `/macro chrome`), crie macros customizados para apps, URLs, arquivos e comandos
|
|
178
|
+
- **Interface Web** — interface no navegador via `smolerclaw ui` (servidor Hono)
|
|
179
|
+
- **App Desktop** — janela nativa via `smolerclaw desktop` (Electrobun)
|
|
180
|
+
- **i18n** — interface em Portugues e Ingles, detectado automaticamente ou via `/idioma`
|
|
181
|
+
- **Agendador** — jobs recorrentes via Agendador de Tarefas do Windows (`/schedule`, `/jobs`)
|
|
182
|
+
|
|
183
|
+
## Modos
|
|
184
|
+
|
|
185
|
+
```bash
|
|
186
|
+
smolerclaw # TUI interativa (padrao)
|
|
187
|
+
smolerclaw ui # Interface Web em http://localhost:3847
|
|
188
|
+
smolerclaw desktop # App Desktop (Electrobun)
|
|
189
|
+
smolerclaw ui --port 8080 # Porta customizada
|
|
190
|
+
smolerclaw -p "pergunta" # Modo print (nao-interativo)
|
|
191
|
+
```
|
|
160
192
|
|
|
161
193
|
## Comandos na TUI
|
|
162
194
|
|
|
@@ -177,6 +209,8 @@ smolerclaw e um assistente de IA no terminal que vive na sua maquina Windows. El
|
|
|
177
209
|
/auto-refresh Status auto-refresh /plugins Listar plugins
|
|
178
210
|
/plugin install owner/repo /plugin info Detalhes plugin
|
|
179
211
|
/entrada 500 cat Registrar entrada /saida 50 cat Registrar saida
|
|
212
|
+
/macro vscode Executar macro /macro list Listar macros
|
|
213
|
+
/schedule Gerenciar agendamentos /jobs Listar jobs
|
|
180
214
|
```
|
|
181
215
|
|
|
182
216
|
## Autenticacao
|