stella-coder 3.9.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/(/320/270/320/274/321/217 +0 -0
- package/.env.example +4 -0
- package/README.md +72 -0
- package/STELLA.md +6 -0
- package/antimalware/database.mjs +871 -0
- package/antimalware/index.mjs +8 -0
- package/antimalware/scanner.mjs +591 -0
- package/antimalware/ui.mjs +570 -0
- package/components.json +21 -0
- package/create_cats_pptx.py +121 -0
- package/eslint.config.mjs +16 -0
- package/hello.py +2 -0
- package/install.bat +35 -0
- package/next-env.d.ts +6 -0
- package/next.config.mjs +11 -0
- package/package.json +58 -0
- package/pnpm-workspace.yaml +7 -0
- package/postcss.config.mjs +8 -0
- package/publish.mjs +52 -0
- package/stella-cli/banner.mjs +46 -0
- package/stella-cli/build.mjs +151 -0
- package/stella-cli/index.mjs +3073 -0
- package/stella-cli/markdown.mjs +100 -0
- package/stella-cli/sea-config.json +5 -0
- package/stella-cli/security.mjs +237 -0
- package/stella-cli/theme.mjs +89 -0
- package/stella-cli/tools.mjs +3145 -0
- package/tsconfig.json +41 -0
|
File without changes
|
package/.env.example
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Stella Coder 3.9
|
|
2
|
+
|
|
3
|
+
> AI coding agent with computer control, smart home, Office automation, and antivirus — all in your terminal.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **AI Agent** — Read, create, edit files; run shell commands; search code
|
|
8
|
+
- **100+ commands** — `/help`, `/model`, `/plan`, `/commit`, `/exec`, `/open`, `/tv`, `/docker`, etc.
|
|
9
|
+
- **20+ AI models** — Free defaults (MiMo, DeepSeek), plus GPT, Claude, Gemini
|
|
10
|
+
- **Computer control** — Screenshot, volume, brightness, WiFi, notifications
|
|
11
|
+
- **Server management** — SSH, Docker, PM2, ports, firewall
|
|
12
|
+
- **Smart home** — Sony TV, HDMI-CEC, Yeelight, Chromecast, Wake-on-LAN
|
|
13
|
+
- **Office automation** — PowerPoint, Word, Excel via COM
|
|
14
|
+
- **Application control** — Focus windows, type text, hotkeys, screenshots
|
|
15
|
+
- **Antivirus** — Built-in scanner with 100+ signatures
|
|
16
|
+
|
|
17
|
+
## Quick Install
|
|
18
|
+
|
|
19
|
+
### From npm (recommended)
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install -g stella-coder
|
|
23
|
+
stella
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### From source
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
git clone https://github.com/codex-alex/stella-coder.git
|
|
30
|
+
cd stella-coder
|
|
31
|
+
npm install
|
|
32
|
+
npm link
|
|
33
|
+
stella
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Windows one-click
|
|
37
|
+
|
|
38
|
+
Download `install.bat` and run it.
|
|
39
|
+
|
|
40
|
+
## Usage
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
stella # Interactive REPL
|
|
44
|
+
stella -p "fix bug in utils.ts" # One-shot command
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Key Commands
|
|
48
|
+
|
|
49
|
+
| Command | Description |
|
|
50
|
+
|---------|-------------|
|
|
51
|
+
| `/help` | Show all commands |
|
|
52
|
+
| `/model` | Select AI model |
|
|
53
|
+
| `/plan` | Execute multi-step tasks |
|
|
54
|
+
| `/exec <cmd>` | Run shell command |
|
|
55
|
+
| `/open <app>` | Open application |
|
|
56
|
+
| `/tv discover` | Find Sony TV |
|
|
57
|
+
| `/docker ps` | List containers |
|
|
58
|
+
| `/av` | Launch antivirus |
|
|
59
|
+
|
|
60
|
+
## Configuration
|
|
61
|
+
|
|
62
|
+
First run creates `~/.stella/config.json` with your API key and preferences.
|
|
63
|
+
|
|
64
|
+
**Free models work without API key** — just install [Ollama](https://ollama.com/download).
|
|
65
|
+
|
|
66
|
+
## License
|
|
67
|
+
|
|
68
|
+
MIT
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
**Stella Coder 3.9** · powered by codex alex
|