smolerclaw 1.0.5 → 1.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 +28 -10
- package/dist/index.js +311 -175
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,6 +47,13 @@ smolerclaw is a terminal AI assistant that lives on your Windows machine. It can
|
|
|
47
47
|
- **Track finances** — income/expense logging with monthly summaries
|
|
48
48
|
- **Log decisions** — record context and rationale for important choices
|
|
49
49
|
- **Pomodoro timer** — focus sessions with toast notifications
|
|
50
|
+
- **Local RAG memory** — TF-IDF + BM25 search across memos, materials, decisions, and sessions
|
|
51
|
+
- **Project management** — track projects, work sessions, generate progress reports
|
|
52
|
+
- **Opportunity pipeline** — register and filter demands by tech stack and priority
|
|
53
|
+
- **PowerShell scripting** — execute .ps1 scripts with safety guards (blocks Defender/System32/destructive ops)
|
|
54
|
+
- **Clipboard OCR** — read text or extract text from images via Windows.Media.Ocr
|
|
55
|
+
- **Screen awareness** — map foreground window and all visible windows
|
|
56
|
+
- **Session refresh** — renew Claude Code auth token without leaving the TUI
|
|
50
57
|
|
|
51
58
|
## TUI Commands
|
|
52
59
|
|
|
@@ -58,15 +65,17 @@ smolerclaw is a terminal AI assistant that lives on your Windows machine. It can
|
|
|
58
65
|
/investigar List investigations /memo #tag Save a note
|
|
59
66
|
/email Draft email /pomodoro Focus timer
|
|
60
67
|
/model sonnet Switch model /export Save to markdown
|
|
68
|
+
/indexar Build RAG index /memoria <q> Search local memory
|
|
69
|
+
/projeto auto Set active project /projetos List all projects
|
|
70
|
+
/sessao start Start work timer /sessao stop Stop work timer
|
|
71
|
+
/relatorio Progress report /oportunidades List opportunities
|
|
72
|
+
/clipboard Read clipboard/OCR /tela Screen context
|
|
73
|
+
/ps1 <script> Run PowerShell /refresh Renew auth token
|
|
61
74
|
```
|
|
62
75
|
|
|
63
76
|
## Auth
|
|
64
77
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
1. `ANTHROPIC_API_KEY` env var
|
|
68
|
-
2. Claude Code subscription (auto-detected from `~/.claude/.credentials.json`)
|
|
69
|
-
3. `apiKey` in `~/.config/smolerclaw/config.json`
|
|
78
|
+
Claude Code subscription (auto-detected from `~/.claude/.credentials.json`). Use `/refresh` to renew the token if it expires during a session.
|
|
70
79
|
|
|
71
80
|
## Requirements
|
|
72
81
|
|
|
@@ -128,6 +137,13 @@ smolerclaw e um assistente de IA no terminal que vive na sua maquina Windows. El
|
|
|
128
137
|
- **Controle financeiro** — registro de entradas/saidas com resumo mensal
|
|
129
138
|
- **Registrar decisoes** — guardar contexto e justificativa de escolhas importantes
|
|
130
139
|
- **Timer Pomodoro** — sessoes de foco com notificacoes toast
|
|
140
|
+
- **Memoria RAG local** — busca TF-IDF + BM25 em memos, materiais, decisoes e sessoes
|
|
141
|
+
- **Gestao de projetos** — rastrear projetos, sessoes de trabalho, gerar relatorios de progresso
|
|
142
|
+
- **Pipeline de oportunidades** — registrar e filtrar demandas por tech stack e prioridade
|
|
143
|
+
- **Scripts PowerShell** — executar .ps1 com safety guards (bloqueia Defender/System32/ops destrutivas)
|
|
144
|
+
- **OCR de clipboard** — ler texto ou extrair texto de imagens via Windows.Media.Ocr
|
|
145
|
+
- **Consciencia de tela** — mapear janela em foco e todas as janelas visiveis
|
|
146
|
+
- **Renovacao de sessao** — renovar token de autenticacao Claude Code sem sair da TUI
|
|
131
147
|
|
|
132
148
|
## Comandos na TUI
|
|
133
149
|
|
|
@@ -139,15 +155,17 @@ smolerclaw e um assistente de IA no terminal que vive na sua maquina Windows. El
|
|
|
139
155
|
/investigar Listar investigacoes /memo #tag Salvar anotacao
|
|
140
156
|
/email Rascunho de email /foco Timer Pomodoro
|
|
141
157
|
/modelo sonnet Trocar modelo /exportar Salvar em markdown
|
|
158
|
+
/indexar Construir indice RAG /memoria <q> Buscar na memoria
|
|
159
|
+
/projeto auto Definir projeto ativo /projetos Listar projetos
|
|
160
|
+
/sessao start Iniciar timer /sessao stop Parar timer
|
|
161
|
+
/relatorio Relatorio progresso /oportunidades Listar oportunidades
|
|
162
|
+
/area Ler clipboard/OCR /tela Contexto de tela
|
|
163
|
+
/ps1 <script> Executar PowerShell /refresh Renovar token auth
|
|
142
164
|
```
|
|
143
165
|
|
|
144
166
|
## Autenticacao
|
|
145
167
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
1. Variavel de ambiente `ANTHROPIC_API_KEY`
|
|
149
|
-
2. Assinatura Claude Code (detectada automaticamente de `~/.claude/.credentials.json`)
|
|
150
|
-
3. `apiKey` em `~/.config/smolerclaw/config.json`
|
|
168
|
+
Assinatura Claude Code (detectada automaticamente de `~/.claude/.credentials.json`). Use `/refresh` para renovar o token se expirar durante a sessao.
|
|
151
169
|
|
|
152
170
|
## Requisitos
|
|
153
171
|
|