fss-link 1.7.7 → 1.9.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.
- package/README.md +17 -6
- package/bundle/fss-link-main.js +2025 -1709
- package/bundle/fss-link-main.js.bak-20260629 +4468 -0
- package/docs/CONFIGURATION.md +10 -26
- package/docs/README.md +6 -8
- package/docs/SLASH-COMMANDS.md +186 -0
- package/package.json +3 -2
- package/scripts/build_package.js +8 -1
- package/scripts/prebundle-sync-dist.js +8 -0
- package/scripts/version.js +29 -18
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# FSS Link
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**FSS Link** is a terminal-based AI coding agent built for local-first model support and practical tooling in a solo developer's workflow. It reads your codebase, runs tools, and helps you build software — connecting to local models (LM Studio, vLLM) or cloud APIs (OpenAI, Gemini) with full access to file operations, web scraping, search, and shell commands.
|
|
4
4
|
|
|
5
5
|
## What it does
|
|
6
6
|
|
|
7
7
|
FSS Link is a terminal-based AI assistant that reads your codebase, runs tools, and helps you build software. It connects to local models (LM Studio, vLLM) or cloud APIs (OpenAI, Gemini) and gives the model access to file operations, web scraping, search, and shell commands.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Key capabilities include:
|
|
10
10
|
|
|
11
11
|
- **Local model priority** — LM Studio and vLLM as first-class providers, not afterthoughts
|
|
12
12
|
- **Database-backed model config** — switch models via CLI flags, settings persist across sessions
|
|
@@ -29,11 +29,20 @@ npm install -g fss-link
|
|
|
29
29
|
git clone https://github.com/FSScoding/fss-link.git
|
|
30
30
|
cd fss-link
|
|
31
31
|
npm install
|
|
32
|
-
npm run build
|
|
33
32
|
npm run bundle
|
|
34
33
|
sudo npm install -g .
|
|
35
34
|
```
|
|
36
35
|
|
|
36
|
+
### First run — bootstrap the database
|
|
37
|
+
|
|
38
|
+
The database (`~/.fss-link/fss-link.db`) is created on the **first command that needs it**, not during `npm install`. If `fss-link` fails with "Database directory not found" or "Cannot save database", run:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
fss-link --version
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
This is the quickest way to bootstrap everything — it creates the directory, initialises the schema, and inserts default model configs. After that, `fss-link` (interactive) and `fss-link -p "..."` will work normally.
|
|
45
|
+
|
|
37
46
|
## Usage
|
|
38
47
|
|
|
39
48
|
```bash
|
|
@@ -59,6 +68,7 @@ fss-link -p "fix the failing tests" --approval-mode yolo
|
|
|
59
68
|
| `/auth` | Set up authentication method and model |
|
|
60
69
|
| `/model` | Switch between available models |
|
|
61
70
|
| `/theme` | Change the UI theme |
|
|
71
|
+
| `/permissions` | Manage project-scoped shell permissions (list, revoke) |
|
|
62
72
|
| `/help` | List all available slash commands |
|
|
63
73
|
|
|
64
74
|
### Providers
|
|
@@ -66,11 +76,12 @@ fss-link -p "fix the failing tests" --approval-mode yolo
|
|
|
66
76
|
| Provider | Flag | Notes |
|
|
67
77
|
|---|---|---|
|
|
68
78
|
| LM Studio | `--provider lm-studio` | Local, port 1234 |
|
|
69
|
-
| vLLM / OpenAI-compatible | `--provider
|
|
79
|
+
| vLLM / OpenAI-compatible | `--provider bob-ai` | Local or network |
|
|
70
80
|
| OpenAI | `--provider openai-api-key` | Requires `OPENAI_API_KEY` |
|
|
71
81
|
| Gemini | `--provider gemini-api-key` | Requires `GEMINI_API_KEY` |
|
|
72
82
|
| BobAI Proxy | `--provider bob-ai` | Custom proxy endpoint |
|
|
73
83
|
| Vertex AI | `--provider vertex-ai` | Google Cloud |
|
|
84
|
+
| Qwen OAuth | `--provider qwen-oauth` | Built-in OAuth flow |
|
|
74
85
|
|
|
75
86
|
Model and provider settings persist to a local SQLite database. Once set, you don't need to specify them again.
|
|
76
87
|
|
|
@@ -107,7 +118,7 @@ esbuild bundles directly from TypeScript source into `bundle/fss-link.js`. Do no
|
|
|
107
118
|
|
|
108
119
|
## Current version
|
|
109
120
|
|
|
110
|
-
v1.
|
|
121
|
+
v1.9.1 — see [CHANGELOG.md](./CHANGELOG.md) for history.
|
|
111
122
|
|
|
112
123
|
## License
|
|
113
124
|
|
|
@@ -115,4 +126,4 @@ v1.7.7 — see [CHANGELOG.md](./CHANGELOG.md) for history.
|
|
|
115
126
|
|
|
116
127
|
## Acknowledgments
|
|
117
128
|
|
|
118
|
-
FSS Link
|
|
129
|
+
FSS Link traces its origins to [QwenCode](https://github.com/QwenLM/qwen-code), which itself builds on [Google Gemini CLI](https://github.com/google-gemini/gemini-cli). The two projects have since diverged significantly — FSS Link has evolved independently with a different architecture, tool set, and direction.
|