fss-link 1.7.6 → 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
  ```
@@ -51,16 +50,28 @@ fss-link --provider openai-api-key --model gpt-4o -p "review this PR"
51
50
  fss-link -p "fix the failing tests" --approval-mode yolo
52
51
  ```
53
52
 
53
+ ### Slash commands
54
+
55
+ | Command | Description |
56
+ |---|---|
57
+ | `/setup-search` | Configure Brave Search and Tavily API keys for web search |
58
+ | `/auth` | Set up authentication method and model |
59
+ | `/model` | Switch between available models |
60
+ | `/theme` | Change the UI theme |
61
+ | `/permissions` | Manage project-scoped shell permissions (list, revoke) |
62
+ | `/help` | List all available slash commands |
63
+
54
64
  ### Providers
55
65
 
56
66
  | Provider | Flag | Notes |
57
67
  |---|---|---|
58
68
  | LM Studio | `--provider lm-studio` | Local, port 1234 |
59
- | vLLM / OpenAI-compatible | `--provider ollama` | Local or network |
69
+ | vLLM / OpenAI-compatible | `--provider bob-ai` | Local or network |
60
70
  | OpenAI | `--provider openai-api-key` | Requires `OPENAI_API_KEY` |
61
71
  | Gemini | `--provider gemini-api-key` | Requires `GEMINI_API_KEY` |
62
72
  | BobAI Proxy | `--provider bob-ai` | Custom proxy endpoint |
63
73
  | Vertex AI | `--provider vertex-ai` | Google Cloud |
74
+ | Qwen OAuth | `--provider qwen-oauth` | Built-in OAuth flow |
64
75
 
65
76
  Model and provider settings persist to a local SQLite database. Once set, you don't need to specify them again.
66
77
 
@@ -97,7 +108,7 @@ esbuild bundles directly from TypeScript source into `bundle/fss-link.js`. Do no
97
108
 
98
109
  ## Current version
99
110
 
100
- v1.6.12 — see [CHANGELOG.md](./CHANGELOG.md) for history.
111
+ v1.9.1 — see [CHANGELOG.md](./CHANGELOG.md) for history.
101
112
 
102
113
  ## License
103
114
 
@@ -105,4 +116,4 @@ v1.6.12 — see [CHANGELOG.md](./CHANGELOG.md) for history.
105
116
 
106
117
  ## Acknowledgments
107
118
 
108
- 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.