smolerclaw 1.4.0 → 1.6.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 +14 -2
- package/dist/index.js +1494 -286
- package/package.json +57 -34
package/README.md
CHANGED
|
@@ -58,6 +58,9 @@ smolerclaw is a terminal AI assistant that lives on your Windows machine. It can
|
|
|
58
58
|
- **Clipboard OCR** — read text or extract text from images via Windows.Media.Ocr
|
|
59
59
|
- **Screen awareness** — map foreground window and all visible windows
|
|
60
60
|
- **Session refresh** — renew Claude Code auth token without leaving the TUI
|
|
61
|
+
- **Auto-refresh** — proactive OAuth token monitoring and renewal before expiration
|
|
62
|
+
- **Finance verification** — amount limits, duplicate detection, daily spending alerts
|
|
63
|
+
- **Plugin system** — install plugins from GitHub with `/plugin install owner/repo`, supports JSON and TypeScript plugins with lifecycle hooks
|
|
61
64
|
|
|
62
65
|
## TUI Commands
|
|
63
66
|
|
|
@@ -75,11 +78,14 @@ smolerclaw is a terminal AI assistant that lives on your Windows machine. It can
|
|
|
75
78
|
/relatorio Progress report /oportunidades List opportunities
|
|
76
79
|
/clipboard Read clipboard/OCR /tela Screen context
|
|
77
80
|
/ps1 <script> Run PowerShell /refresh Renew auth token
|
|
81
|
+
/auto-refresh Token refresh status /plugins List plugins
|
|
82
|
+
/plugin install owner/repo /plugin info Plugin details
|
|
83
|
+
/entrada 500 cat Record income /saida 50 cat Record expense
|
|
78
84
|
```
|
|
79
85
|
|
|
80
86
|
## Auth
|
|
81
87
|
|
|
82
|
-
Claude Code subscription (auto-detected from `~/.claude/.credentials.json`). Use `/refresh`
|
|
88
|
+
Claude Code subscription (auto-detected from `~/.claude/.credentials.json`). Token is automatically renewed via auto-refresh. Use `/refresh` for manual renewal or `/auto-refresh` to check status.
|
|
83
89
|
|
|
84
90
|
## Requirements
|
|
85
91
|
|
|
@@ -148,6 +154,9 @@ smolerclaw e um assistente de IA no terminal que vive na sua maquina Windows. El
|
|
|
148
154
|
- **OCR de clipboard** — ler texto ou extrair texto de imagens via Windows.Media.Ocr
|
|
149
155
|
- **Consciencia de tela** — mapear janela em foco e todas as janelas visiveis
|
|
150
156
|
- **Renovacao de sessao** — renovar token de autenticacao Claude Code sem sair da TUI
|
|
157
|
+
- **Auto-refresh** — monitoramento proativo de token OAuth com renovacao automatica antes da expiracao
|
|
158
|
+
- **Verificacao financeira** — limites de valor, deteccao de duplicatas, alertas de gasto diario
|
|
159
|
+
- **Sistema de plugins** — instalar plugins do GitHub com `/plugin install owner/repo`, suporte a plugins JSON e TypeScript com lifecycle hooks
|
|
151
160
|
|
|
152
161
|
## Comandos na TUI
|
|
153
162
|
|
|
@@ -165,11 +174,14 @@ smolerclaw e um assistente de IA no terminal que vive na sua maquina Windows. El
|
|
|
165
174
|
/relatorio Relatorio progresso /oportunidades Listar oportunidades
|
|
166
175
|
/area Ler clipboard/OCR /tela Contexto de tela
|
|
167
176
|
/ps1 <script> Executar PowerShell /refresh Renovar token auth
|
|
177
|
+
/auto-refresh Status auto-refresh /plugins Listar plugins
|
|
178
|
+
/plugin install owner/repo /plugin info Detalhes plugin
|
|
179
|
+
/entrada 500 cat Registrar entrada /saida 50 cat Registrar saida
|
|
168
180
|
```
|
|
169
181
|
|
|
170
182
|
## Autenticacao
|
|
171
183
|
|
|
172
|
-
Assinatura Claude Code (detectada automaticamente de `~/.claude/.credentials.json`). Use `/refresh` para
|
|
184
|
+
Assinatura Claude Code (detectada automaticamente de `~/.claude/.credentials.json`). O token e renovado automaticamente via auto-refresh. Use `/refresh` para renovacao manual ou `/auto-refresh` para ver o status.
|
|
173
185
|
|
|
174
186
|
## Requisitos
|
|
175
187
|
|