smolerclaw 1.0.0 → 1.0.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.
Files changed (72) hide show
  1. package/dist/README.md +159 -0
  2. package/package.json +11 -3
  3. package/.github/workflows/ci.yml +0 -30
  4. package/.github/workflows/release.yml +0 -67
  5. package/bun.lock +0 -33
  6. package/install.ps1 +0 -119
  7. package/skills/business.md +0 -77
  8. package/skills/default.md +0 -77
  9. package/src/ansi.ts +0 -164
  10. package/src/approval.ts +0 -74
  11. package/src/auth.ts +0 -125
  12. package/src/briefing.ts +0 -52
  13. package/src/claude.ts +0 -267
  14. package/src/cli.ts +0 -137
  15. package/src/clipboard.ts +0 -27
  16. package/src/config.ts +0 -87
  17. package/src/context-window.ts +0 -190
  18. package/src/context.ts +0 -125
  19. package/src/decisions.ts +0 -122
  20. package/src/email.ts +0 -123
  21. package/src/errors.ts +0 -78
  22. package/src/export.ts +0 -82
  23. package/src/finance.ts +0 -148
  24. package/src/git.ts +0 -62
  25. package/src/history.ts +0 -100
  26. package/src/images.ts +0 -68
  27. package/src/index.ts +0 -1431
  28. package/src/investigate.ts +0 -415
  29. package/src/markdown.ts +0 -125
  30. package/src/memos.ts +0 -191
  31. package/src/models.ts +0 -94
  32. package/src/monitor.ts +0 -169
  33. package/src/morning.ts +0 -108
  34. package/src/news.ts +0 -329
  35. package/src/openai-provider.ts +0 -127
  36. package/src/people.ts +0 -472
  37. package/src/personas.ts +0 -99
  38. package/src/platform.ts +0 -84
  39. package/src/plugins.ts +0 -125
  40. package/src/pomodoro.ts +0 -169
  41. package/src/providers.ts +0 -70
  42. package/src/retry.ts +0 -108
  43. package/src/session.ts +0 -128
  44. package/src/skills.ts +0 -102
  45. package/src/tasks.ts +0 -418
  46. package/src/tokens.ts +0 -102
  47. package/src/tool-safety.ts +0 -100
  48. package/src/tools.ts +0 -1479
  49. package/src/tui.ts +0 -693
  50. package/src/types.ts +0 -55
  51. package/src/undo.ts +0 -83
  52. package/src/windows.ts +0 -299
  53. package/src/workflows.ts +0 -197
  54. package/tests/ansi.test.ts +0 -58
  55. package/tests/approval.test.ts +0 -43
  56. package/tests/briefing.test.ts +0 -10
  57. package/tests/cli.test.ts +0 -53
  58. package/tests/context-window.test.ts +0 -83
  59. package/tests/images.test.ts +0 -28
  60. package/tests/memos.test.ts +0 -116
  61. package/tests/models.test.ts +0 -34
  62. package/tests/news.test.ts +0 -13
  63. package/tests/path-guard.test.ts +0 -37
  64. package/tests/people.test.ts +0 -204
  65. package/tests/skills.test.ts +0 -35
  66. package/tests/ssrf.test.ts +0 -80
  67. package/tests/tasks.test.ts +0 -152
  68. package/tests/tokens.test.ts +0 -44
  69. package/tests/tool-safety.test.ts +0 -55
  70. package/tests/windows-security.test.ts +0 -59
  71. package/tests/windows.test.ts +0 -20
  72. package/tsconfig.json +0 -19
package/dist/README.md ADDED
@@ -0,0 +1,159 @@
1
+ # smolerclaw
2
+
3
+ A micro AI assistant built on top of Claude, designed for Windows.
4
+ One binary, zero config, full TUI.
5
+
6
+ ---
7
+
8
+ ## Quick Start
9
+
10
+ ```bash
11
+ # 1. Set your key (or use Claude Code subscription — auto-detected)
12
+ set ANTHROPIC_API_KEY=sk-ant-...
13
+
14
+ # 2. Run
15
+ bun run start
16
+ ```
17
+
18
+ That's it. No setup wizards, no config files, no Docker.
19
+
20
+ ## Install as a system-wide command
21
+
22
+ ```powershell
23
+ powershell -ExecutionPolicy Bypass -File install.ps1
24
+ ```
25
+
26
+ Then from anywhere:
27
+
28
+ ```
29
+ smolerclaw
30
+ ```
31
+
32
+ ## What it does
33
+
34
+ smolerclaw is a terminal AI assistant that lives on your Windows machine. It can:
35
+
36
+ - **Read, write, and edit files** in your project
37
+ - **Run commands** and analyze output
38
+ - **Open Windows apps** — Excel, Outlook, VS Code, browser, etc.
39
+ - **Manage tasks & reminders** — with Windows Task Scheduler integration (reminders work even when smolerclaw is closed)
40
+ - **Track people & delegations** — team, family, contacts
41
+ - **Take notes** — searchable memo system with tags
42
+ - **Draft emails** — opens directly in Outlook
43
+ - **Daily briefing** — calendar, tasks, news, follow-ups in one summary
44
+ - **Investigate issues** — structured evidence collection, findings, reports
45
+ - **Run workflows** — multi-step automated routines
46
+ - **Monitor processes** — watch Windows processes, notify on changes
47
+ - **Track finances** — income/expense logging with monthly summaries
48
+ - **Log decisions** — record context and rationale for important choices
49
+ - **Pomodoro timer** — focus sessions with toast notifications
50
+
51
+ ## TUI Commands
52
+
53
+ ```
54
+ /help All commands /clear Clear conversation
55
+ /task 18h buy bread /tasks List pending
56
+ /briefing Morning summary /news Headlines
57
+ /open excel Launch app /calendar Outlook events
58
+ /investigar List investigations /memo #tag Save a note
59
+ /email Draft email /pomodoro Focus timer
60
+ /model sonnet Switch model /export Save to markdown
61
+ ```
62
+
63
+ ## Auth
64
+
65
+ Three ways, in priority order:
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`
70
+
71
+ ## Requirements
72
+
73
+ - **Windows 10/11**
74
+ - **Bun** runtime (`irm bun.sh/install.ps1 | iex`)
75
+
76
+ ## License
77
+
78
+ MIT
79
+
80
+ ---
81
+
82
+ # smolerclaw (PT-BR)
83
+
84
+ Um micro assistente de IA construido em cima do Claude, feito para Windows.
85
+ Um binario, zero configuracao, TUI completa.
86
+
87
+ ---
88
+
89
+ ## Inicio Rapido
90
+
91
+ ```bash
92
+ # 1. Configure sua chave (ou use assinatura Claude Code — detectada automaticamente)
93
+ set ANTHROPIC_API_KEY=sk-ant-...
94
+
95
+ # 2. Rode
96
+ bun run start
97
+ ```
98
+
99
+ So isso. Sem wizards, sem arquivos de config, sem Docker.
100
+
101
+ ## Instalar como comando do sistema
102
+
103
+ ```powershell
104
+ powershell -ExecutionPolicy Bypass -File install.ps1
105
+ ```
106
+
107
+ Depois, de qualquer lugar:
108
+
109
+ ```
110
+ smolerclaw
111
+ ```
112
+
113
+ ## O que faz
114
+
115
+ smolerclaw e um assistente de IA no terminal que vive na sua maquina Windows. Ele pode:
116
+
117
+ - **Ler, escrever e editar arquivos** no seu projeto
118
+ - **Executar comandos** e analisar saida
119
+ - **Abrir apps do Windows** — Excel, Outlook, VS Code, navegador, etc.
120
+ - **Gerenciar tarefas e lembretes** — integrado com o Agendador de Tarefas do Windows (lembretes funcionam mesmo com o smolerclaw fechado)
121
+ - **Rastrear pessoas e delegacoes** — equipe, familia, contatos
122
+ - **Fazer anotacoes** — sistema de memos com busca e tags
123
+ - **Rascunhar emails** — abre direto no Outlook
124
+ - **Resumo matinal** — calendario, tarefas, noticias, follow-ups em um so resumo
125
+ - **Investigar problemas** — coleta estruturada de evidencias, conclusoes, relatorios
126
+ - **Executar workflows** — rotinas automatizadas de multiplos passos
127
+ - **Monitorar processos** — vigiar processos do Windows, notificar mudancas
128
+ - **Controle financeiro** — registro de entradas/saidas com resumo mensal
129
+ - **Registrar decisoes** — guardar contexto e justificativa de escolhas importantes
130
+ - **Timer Pomodoro** — sessoes de foco com notificacoes toast
131
+
132
+ ## Comandos na TUI
133
+
134
+ ```
135
+ /ajuda Todos os comandos /limpar Limpar conversa
136
+ /tarefa 18h comprar pao /tarefas Listar pendentes
137
+ /resumo Briefing matinal /noticias Manchetes
138
+ /abrir excel Abrir app /calendario Eventos Outlook
139
+ /investigar Listar investigacoes /memo #tag Salvar anotacao
140
+ /email Rascunho de email /foco Timer Pomodoro
141
+ /modelo sonnet Trocar modelo /exportar Salvar em markdown
142
+ ```
143
+
144
+ ## Autenticacao
145
+
146
+ Tres formas, em ordem de prioridade:
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`
151
+
152
+ ## Requisitos
153
+
154
+ - **Windows 10/11**
155
+ - **Bun** runtime (`irm bun.sh/install.ps1 | iex`)
156
+
157
+ ## Licenca
158
+
159
+ MIT
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "smolerclaw",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Micro AI assistant for tiny machines. Inspired by OpenClaw.",
5
5
  "type": "module",
6
6
  "bin": {
7
- "smolerclaw": "./dist/index.js"
7
+ "smolerclaw": "dist/index.js"
8
8
  },
9
9
  "scripts": {
10
10
  "start": "bun run src/index.ts",
11
11
  "dev": "bun --watch src/index.ts",
12
- "build": "bun build src/index.ts --outdir dist --target bun --minify --define BUILD_VERSION='\"0.1.0\"'",
12
+ "build": "bun build src/index.ts --outdir dist --target bun --minify --define BUILD_VERSION='\"1.0.0\"'",
13
13
  "compile": "bun build src/index.ts --compile --outfile dist/smolerclaw --define BUILD_VERSION='\"0.1.0\"'",
14
14
  "typecheck": "tsc --noEmit",
15
15
  "test": "bun test"
@@ -17,6 +17,14 @@
17
17
  "dependencies": {
18
18
  "@anthropic-ai/sdk": "^0.80.0"
19
19
  },
20
+ "files": [
21
+ "dist",
22
+ "README.md"
23
+ ],
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/ktfth/smolerclaw"
27
+ },
20
28
  "license": "MIT",
21
29
  "devDependencies": {
22
30
  "bun-types": "^1.3.11",
@@ -1,30 +0,0 @@
1
- name: CI
2
-
3
- on:
4
- push:
5
- branches: [main]
6
- pull_request:
7
- branches: [main]
8
-
9
- jobs:
10
- check:
11
- runs-on: ubuntu-latest
12
-
13
- steps:
14
- - uses: actions/checkout@v4
15
-
16
- - uses: oven-sh/setup-bun@v2
17
- with:
18
- bun-version: latest
19
-
20
- - name: Install dependencies
21
- run: bun install --frozen-lockfile
22
-
23
- - name: Typecheck
24
- run: bun run typecheck
25
-
26
- - name: Test
27
- run: bun test
28
-
29
- - name: Build
30
- run: bun run build
@@ -1,67 +0,0 @@
1
- name: Release
2
-
3
- on:
4
- push:
5
- tags:
6
- - 'v*'
7
-
8
- permissions:
9
- contents: write
10
-
11
- jobs:
12
- build:
13
- strategy:
14
- matrix:
15
- include:
16
- - os: ubuntu-latest
17
- target: bun-linux-x64
18
- artifact: smolerclaw-linux-x64
19
- - os: macos-latest
20
- target: bun-darwin-arm64
21
- artifact: smolerclaw-darwin-arm64
22
- - os: windows-latest
23
- target: bun-windows-x64
24
- artifact: smolerclaw-windows-x64.exe
25
-
26
- runs-on: ${{ matrix.os }}
27
-
28
- steps:
29
- - uses: actions/checkout@v4
30
-
31
- - uses: oven-sh/setup-bun@v2
32
- with:
33
- bun-version: latest
34
-
35
- - name: Install dependencies
36
- run: bun install --frozen-lockfile
37
-
38
- - name: Typecheck
39
- run: bun run typecheck
40
-
41
- - name: Test
42
- run: bun test
43
-
44
- - name: Build binary
45
- run: bun build src/index.ts --compile --outfile dist/${{ matrix.artifact }} --target ${{ matrix.target }} --define BUILD_VERSION='"${{ github.ref_name }}"'
46
-
47
- - name: Upload artifact
48
- uses: actions/upload-artifact@v4
49
- with:
50
- name: ${{ matrix.artifact }}
51
- path: dist/${{ matrix.artifact }}
52
-
53
- release:
54
- needs: build
55
- runs-on: ubuntu-latest
56
-
57
- steps:
58
- - name: Download all artifacts
59
- uses: actions/download-artifact@v4
60
- with:
61
- path: artifacts
62
-
63
- - name: Create release
64
- uses: softprops/action-gh-release@v2
65
- with:
66
- generate_release_notes: true
67
- files: artifacts/**/*
package/bun.lock DELETED
@@ -1,33 +0,0 @@
1
- {
2
- "lockfileVersion": 1,
3
- "configVersion": 1,
4
- "workspaces": {
5
- "": {
6
- "name": "tinyclaw",
7
- "dependencies": {
8
- "@anthropic-ai/sdk": "^0.80.0",
9
- },
10
- "devDependencies": {
11
- "bun-types": "^1.3.11",
12
- "typescript": "^5.9.3",
13
- },
14
- },
15
- },
16
- "packages": {
17
- "@anthropic-ai/sdk": ["@anthropic-ai/sdk@0.80.0", "", { "dependencies": { "json-schema-to-ts": "^3.1.1" }, "peerDependencies": { "zod": "^3.25.0 || ^4.0.0" }, "optionalPeers": ["zod"], "bin": { "anthropic-ai-sdk": "bin/cli" } }, "sha512-WeXLn7zNVk3yjeshn+xZHvld6AoFUOR3Sep6pSoHho5YbSi6HwcirqgPA5ccFuW8QTVJAAU7N8uQQC6Wa9TG+g=="],
18
-
19
- "@babel/runtime": ["@babel/runtime@7.29.2", "", {}, "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g=="],
20
-
21
- "@types/node": ["@types/node@18.19.130", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg=="],
22
-
23
- "bun-types": ["bun-types@1.3.11", "", { "dependencies": { "@types/node": "*" } }, "sha512-1KGPpoxQWl9f6wcZh57LvrPIInQMn2TQ7jsgxqpRzg+l0QPOFvJVH7HmvHo/AiPgwXy+/Thf6Ov3EdVn1vOabg=="],
24
-
25
- "json-schema-to-ts": ["json-schema-to-ts@3.1.1", "", { "dependencies": { "@babel/runtime": "^7.18.3", "ts-algebra": "^2.0.0" } }, "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g=="],
26
-
27
- "ts-algebra": ["ts-algebra@2.0.0", "", {}, "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw=="],
28
-
29
- "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
30
-
31
- "undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="],
32
- }
33
- }
package/install.ps1 DELETED
@@ -1,119 +0,0 @@
1
- # ─────────────────────────────────────────────────────────────
2
- # smolerclaw installer for Windows
3
- # Compiles the binary and installs to user PATH
4
- # Usage: powershell -ExecutionPolicy Bypass -File install.ps1
5
- # ─────────────────────────────────────────────────────────────
6
-
7
- $ErrorActionPreference = "Stop"
8
-
9
- $ProjectDir = Split-Path -Parent $MyInvocation.MyCommand.Path
10
- $BinName = "smolerclaw.exe"
11
- $InstallDir = Join-Path $env:LOCALAPPDATA "Microsoft\WindowsApps"
12
- $InstallPath = Join-Path $InstallDir $BinName
13
-
14
- Write-Host ""
15
- Write-Host " smolerclaw installer" -ForegroundColor Cyan
16
- Write-Host " ==================" -ForegroundColor Cyan
17
- Write-Host ""
18
-
19
- # ── Check bun ────────────────────────────────────────────────
20
-
21
- Write-Host "[1/5] Checking bun..." -ForegroundColor Yellow
22
- $bunPath = Get-Command bun -ErrorAction SilentlyContinue
23
- if (-not $bunPath) {
24
- Write-Host " ERROR: bun is not installed." -ForegroundColor Red
25
- Write-Host " Install it: powershell -c 'irm bun.sh/install.ps1 | iex'"
26
- exit 1
27
- }
28
- $bunVersion = & bun --version 2>&1
29
- Write-Host " bun $bunVersion found." -ForegroundColor Green
30
-
31
- # ── Install dependencies ─────────────────────────────────────
32
-
33
- Write-Host "[2/5] Installing dependencies..." -ForegroundColor Yellow
34
- Push-Location $ProjectDir
35
- try {
36
- & bun install --frozen-lockfile 2>&1 | Out-Null
37
- Write-Host " Dependencies installed." -ForegroundColor Green
38
- } catch {
39
- Write-Host " WARNING: bun install had issues, trying without --frozen-lockfile..." -ForegroundColor Yellow
40
- & bun install 2>&1 | Out-Null
41
- }
42
-
43
- # ── Typecheck + test ──────────────────────────────────────────
44
-
45
- Write-Host "[3/5] Running checks..." -ForegroundColor Yellow
46
- $typecheck = & bun run typecheck 2>&1
47
- if ($LASTEXITCODE -ne 0) {
48
- Write-Host " ERROR: TypeScript errors found:" -ForegroundColor Red
49
- Write-Host $typecheck
50
- Pop-Location
51
- exit 1
52
- }
53
-
54
- $testResult = & bun test 2>&1
55
- if ($LASTEXITCODE -ne 0) {
56
- Write-Host " WARNING: Some tests failed:" -ForegroundColor Yellow
57
- Write-Host ($testResult | Select-Object -Last 5)
58
- } else {
59
- $passLine = $testResult | Select-String "pass"
60
- Write-Host " Checks passed. $passLine" -ForegroundColor Green
61
- }
62
-
63
- # ── Compile binary ────────────────────────────────────────────
64
-
65
- Write-Host "[4/5] Compiling binary..." -ForegroundColor Yellow
66
-
67
- # Read version from package.json
68
- $pkg = Get-Content (Join-Path $ProjectDir "package.json") | ConvertFrom-Json
69
- $version = $pkg.version
70
-
71
- & bun build src/index.ts --compile --outfile "dist/$BinName" --target bun-windows-x64 --define "BUILD_VERSION='`"$version`"'" 2>&1 | Out-Null
72
-
73
- if (-not (Test-Path "dist/$BinName")) {
74
- Write-Host " ERROR: Compilation failed." -ForegroundColor Red
75
- Pop-Location
76
- exit 1
77
- }
78
-
79
- $size = [math]::Round((Get-Item "dist/$BinName").Length / 1MB, 1)
80
- Write-Host " Compiled: dist/$BinName ($size MB)" -ForegroundColor Green
81
-
82
- Pop-Location
83
-
84
- # ── Install to PATH ───────────────────────────────────────────
85
-
86
- Write-Host "[5/5] Installing to $InstallDir..." -ForegroundColor Yellow
87
-
88
- if (-not (Test-Path $InstallDir)) {
89
- New-Item -ItemType Directory -Path $InstallDir -Force | Out-Null
90
- }
91
-
92
- Copy-Item (Join-Path $ProjectDir "dist\$BinName") $InstallPath -Force
93
- Write-Host " Copied to: $InstallPath" -ForegroundColor Green
94
-
95
- # Add to user PATH if not already there
96
- $userPath = [Environment]::GetEnvironmentVariable("Path", "User")
97
- if ($userPath -notlike "*$InstallDir*") {
98
- [Environment]::SetEnvironmentVariable("Path", "$userPath;$InstallDir", "User")
99
- Write-Host " Added $InstallDir to user PATH." -ForegroundColor Green
100
- Write-Host " NOTE: Restart your terminal for PATH changes to take effect." -ForegroundColor Yellow
101
- } else {
102
- Write-Host " $InstallDir already in PATH." -ForegroundColor Green
103
- }
104
-
105
- # ── Done ──────────────────────────────────────────────────────
106
-
107
- Write-Host ""
108
- Write-Host " Installation complete!" -ForegroundColor Cyan
109
- Write-Host " smolerclaw v$version" -ForegroundColor Cyan
110
- Write-Host ""
111
- Write-Host " Usage:" -ForegroundColor White
112
- Write-Host " smolerclaw # interactive mode"
113
- Write-Host " smolerclaw 'explain this' # with prompt"
114
- Write-Host " smolerclaw -p '2+2' # print mode"
115
- Write-Host ""
116
- Write-Host " First run:" -ForegroundColor White
117
- Write-Host " set ANTHROPIC_API_KEY=sk-ant-..."
118
- Write-Host " smolerclaw"
119
- Write-Host ""
@@ -1,77 +0,0 @@
1
- You are a personal business assistant running on the user's Windows machine. You combine AI intelligence with direct access to the local system and the web.
2
-
3
- ## Core Identity
4
-
5
- You are a sharp, proactive executive assistant. Think of yourself as a digital chief of staff — you anticipate needs, surface relevant information, and handle routine tasks efficiently.
6
-
7
- ## Language
8
-
9
- ALWAYS respond in the same language the user writes in. Default to Portuguese (Brazilian) unless the user writes in another language.
10
-
11
- ## Capabilities
12
-
13
- ### Business Intelligence
14
- - Analyze data, spreadsheets, and documents the user shares
15
- - Draft emails, reports, memos, and presentations outlines
16
- - Summarize meetings, articles, and documents
17
- - Help with decision frameworks (pros/cons, SWOT, risk assessment)
18
- - Financial calculations and quick analysis
19
-
20
- ### News & Market Radar
21
- - Use the `/news` command to fetch current headlines
22
- - Use `/briefing` for a complete daily overview
23
- - Monitor specific topics the user cares about via `fetch_url`
24
- - Cross-reference multiple sources for accuracy
25
-
26
- ### Windows Integration
27
- - Use `/open <app>` to launch applications (Excel, Word, Outlook, etc.)
28
- - Use `/apps` to see running applications
29
- - Use `/sysinfo` to check system resources
30
- - Use `/calendar` to check today's Outlook calendar
31
- - Open files with their default applications
32
-
33
- ### Tasks & Reminders
34
- - Use `create_task` to create tasks and schedule reminders
35
- - When the user says "anote", "lembre-me", "tarefa", create a task automatically
36
- - Parse natural time references: "18h", "em 30 minutos", "amanha 9h"
37
- - A Windows toast notification will fire when the reminder is due
38
- - Use `list_tasks` to show pending tasks
39
- - Use `complete_task` to mark tasks as done
40
-
41
- ### Process Support
42
- - Help structure and track tasks and action items
43
- - Create checklists and workflows
44
- - Draft standard operating procedures
45
- - Time management and prioritization advice
46
-
47
- ## Communication Style
48
-
49
- - **Direct and professional** — no fluff, no disclaimers
50
- - **Proactive** — suggest next steps, flag potential issues
51
- - **Structured** — use headers, bullet points, numbered lists
52
- - **Action-oriented** — always end with actionable takeaways
53
- - When presenting information, lead with the conclusion, then supporting details
54
-
55
- ## Tool Usage for Business Tasks
56
-
57
- - Use `fetch_url` to research competitors, market data, news articles
58
- - Use `read_file` / `write_file` to help with documents and data files
59
- - Use `run_command` for PowerShell operations (calculations, file management, system queries)
60
- - Use `search_files` to find relevant documents in the user's workspace
61
-
62
- ## What NOT To Do
63
-
64
- - Never run destructive commands (delete files, kill processes, format disks)
65
- - Never access credentials, passwords, or sensitive personal data
66
- - Never send emails or messages without explicit user approval
67
- - Never make purchases or financial transactions
68
- - Never modify system settings or registry
69
-
70
- ## Daily Routines
71
-
72
- When the user says "bom dia" or asks for a briefing:
73
- 1. Show date, time, and business hours status
74
- 2. Check calendar if available
75
- 3. Show system status
76
- 4. Present top news headlines (finance, business, tech)
77
- 5. Ask what's the priority for today
package/skills/default.md DELETED
@@ -1,77 +0,0 @@
1
- You are a versatile AI assistant running in the user's terminal. You can help with ANY topic — research, writing, analysis, brainstorming, questions, explanations, coding, and more. You also have direct access to the user's filesystem and shell through your tools for hands-on work.
2
-
3
- ## Language
4
-
5
- ALWAYS respond in the same language the user writes in. If the user writes in Portuguese, respond in Portuguese. If in English, respond in English. Match their language exactly — never switch to English unless they write in English.
6
-
7
- ## General Capabilities
8
-
9
- - Answer questions on any topic. You are a knowledgeable generalist.
10
- - Research topics using `fetch_url` to access documentation, articles, and web content.
11
- - Write, analyze, summarize, translate, brainstorm — whatever the user needs.
12
- - You are NOT limited to coding. Coding is one of many things you can do.
13
- - Never refuse a request just because it's not about programming.
14
-
15
- ## Coding Capabilities
16
-
17
- When working on code or files, you have powerful tools:
18
-
19
- - `read_file`, `edit_file`, `write_file` — file operations
20
- - `search_files`, `find_files`, `list_directory` — codebase exploration
21
- - `run_command` — shell commands (git, tests, builds, etc.)
22
- - `fetch_url` — access web content, APIs, documentation
23
-
24
- ### Tool Discipline (for code work)
25
- - Always read before editing. Never edit a file you haven't read.
26
- - Use `edit_file` for modifications, not full rewrites.
27
- - Match the existing code style.
28
- - Run tests after changes when a test suite exists.
29
-
30
- ### Safety (for code work)
31
- - Never delete files or branches without asking first.
32
- - No destructive git operations unless explicitly asked.
33
- - Never hardcode secrets — use environment variables.
34
-
35
- ## Task & Reminder System
36
-
37
- You can manage tasks and reminders for the user:
38
- - `create_task` — create a task with optional reminder time (e.g. "18h", "em 30 min", "amanha 9h")
39
- - `complete_task` — mark a task as done
40
- - `list_tasks` — show pending tasks
41
-
42
- When the user says things like "anote", "lembre-me", "tarefa para as 18h", use `create_task` automatically.
43
- A Windows toast notification will fire when the reminder is due.
44
-
45
- ## People Management (Equipe + Familia + Contatos)
46
-
47
- You manage the user's people network:
48
- - `add_person` — register someone (group: equipe, familia, contato; optional role and contact)
49
- - `find_person_info` — look up a person (shows profile, recent interactions, pending delegations)
50
- - `list_people` — list all people or filter by group
51
- - `log_interaction` — record a conversation, meeting, call, etc. with optional follow-up date
52
- - `delegate_to_person` — assign a task to someone with optional due date
53
- - `update_delegation_status` — update a delegation (pendente/em_andamento/concluido)
54
- - `get_people_dashboard` — overview of all people, overdue follow-ups, and pending delegations
55
-
56
- When the user mentions delegating work ("pede pro Joao fazer X"), registering someone ("adiciona a Maria na equipe"), or tracking interactions ("falei com o Carlos sobre o projeto"), use these tools proactively.
57
-
58
- ## Windows Integration
59
-
60
- On Windows, you have extra tools:
61
- - `open_application` — open apps (excel, outlook, teams, vscode, etc.)
62
- - `open_file_default` — open files with their default app
63
- - `get_running_apps` — list running applications
64
- - `get_system_info` — CPU, RAM, disk, uptime
65
- - `get_calendar_events` — today's Outlook calendar
66
- - `get_news` — fetch news headlines (finance, tech, brazil, world)
67
-
68
- ## Communication Style
69
-
70
- - Be concise and direct. No filler, no disclaimers.
71
- - Lead with the answer or action, not the reasoning.
72
- - When doing coding tasks: execute first, then report what was done.
73
- - When answering questions: give the answer, then context if needed.
74
-
75
- ## Environment Context
76
-
77
- When the user asks about code or files, use the Environment section below to understand their current project. But remember: not every question is about their project. If someone asks about history, science, cooking, or any other topic — just answer it.