fss-link 1.7.7 → 1.9.1

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 CHANGED
@@ -1,12 +1,12 @@
1
1
  # FSS Link
2
2
 
3
- A CLI coding agent forked from QwenCode, rebuilt around local-first model support and practical tooling for a solo developer's workflow.
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
- It exists because the upstream project assumed cloud-only usage. This fork adds:
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,7 +29,6 @@ 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
  ```
@@ -59,6 +58,7 @@ fss-link -p "fix the failing tests" --approval-mode yolo
59
58
  | `/auth` | Set up authentication method and model |
60
59
  | `/model` | Switch between available models |
61
60
  | `/theme` | Change the UI theme |
61
+ | `/permissions` | Manage project-scoped shell permissions (list, revoke) |
62
62
  | `/help` | List all available slash commands |
63
63
 
64
64
  ### Providers
@@ -66,11 +66,12 @@ fss-link -p "fix the failing tests" --approval-mode yolo
66
66
  | Provider | Flag | Notes |
67
67
  |---|---|---|
68
68
  | LM Studio | `--provider lm-studio` | Local, port 1234 |
69
- | vLLM / OpenAI-compatible | `--provider ollama` | Local or network |
69
+ | vLLM / OpenAI-compatible | `--provider bob-ai` | Local or network |
70
70
  | OpenAI | `--provider openai-api-key` | Requires `OPENAI_API_KEY` |
71
71
  | Gemini | `--provider gemini-api-key` | Requires `GEMINI_API_KEY` |
72
72
  | BobAI Proxy | `--provider bob-ai` | Custom proxy endpoint |
73
73
  | Vertex AI | `--provider vertex-ai` | Google Cloud |
74
+ | Qwen OAuth | `--provider qwen-oauth` | Built-in OAuth flow |
74
75
 
75
76
  Model and provider settings persist to a local SQLite database. Once set, you don't need to specify them again.
76
77
 
@@ -107,7 +108,7 @@ esbuild bundles directly from TypeScript source into `bundle/fss-link.js`. Do no
107
108
 
108
109
  ## Current version
109
110
 
110
- v1.7.7 — see [CHANGELOG.md](./CHANGELOG.md) for history.
111
+ v1.9.1 — see [CHANGELOG.md](./CHANGELOG.md) for history.
111
112
 
112
113
  ## License
113
114
 
@@ -115,4 +116,4 @@ v1.7.7 — see [CHANGELOG.md](./CHANGELOG.md) for history.
115
116
 
116
117
  ## Acknowledgments
117
118
 
118
- FSS Link is a hard fork of [QwenCode](https://github.com/QwenLM/qwen-code), which builds on [Google Gemini CLI](https://github.com/google-gemini/gemini-cli).
119
+ 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.