fss-link 1.3.0 โ†’ 1.4.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.
Files changed (3) hide show
  1. package/README.md +28 -24
  2. package/bundle/fss-link.js +668 -356
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -12,17 +12,17 @@
12
12
 
13
13
  </div>
14
14
 
15
- **FSS Link** is a portable, scriptable agent that links tools, models, and knowledge into multi-instance workflows. Install anywhere with Node.js, launch 1-8 agents at once, feed them templated tasks, and watch them go.
15
+ **FSS Link** is a portable, scriptable agent that links tools, models, and knowledge into single-instance workflows. Install anywhere with Node.js, launch one agent at a time, feed it tasks, and watch it go.
16
16
 
17
17
  - **Lightweight distribution** (~15 MB bundle, requires Node.js 20+)
18
- - **Spawn many agents** with structured prompts
19
- - **Portable Mini-RAG** indices that travel with your projects
18
+ - **Single-agent workflows** with structured prompts
19
+ - **Portable Mini-RAG** indices that travel with your projects (planned feature)
20
20
  - **Local-first** with LM Studio/Ollama priority
21
21
  - **Professional tools** built in TypeScript for seamless integration
22
22
 
23
23
  ## ๐ŸŽฏ Why "Link"?
24
24
 
25
- Link connects thingsโ€”tools, models, tasks, and knowledge. **FSS Link** is a lightweight distribution that runs wherever Node.js is installed. Start an agent, or spawn eight in parallel with templated prompts. Each project carries its own Mini-RAG index, so knowledge travels with the work.
25
+ Link connects thingsโ€”tools, models, tasks, and knowledge. **FSS Link** is a lightweight distribution that runs wherever Node.js is installed. Start an agent, or spawn multiple agents with templated prompts (planned feature). Each project carries its own Mini-RAG index, so knowledge travels with the work.
26
26
 
27
27
  ## ๐Ÿš€ Quick Start
28
28
 
@@ -33,10 +33,7 @@ fss-link
33
33
  # Single-shot task
34
34
  fss-link run "Audit the repo for security keys and open PR fixes."
35
35
 
36
- # Launch 6 parallel agents with templated plan
37
- fss-link spawn --count 6 --template ./templates/regression.yml
38
-
39
- # Portable RAG - indexes travel with projects
36
+ # Portable RAG - indexes travel with projects (planned feature)
40
37
  cd project && fss-link rag index . && fss-link rag query "error handling"
41
38
  ```
42
39
 
@@ -98,10 +95,17 @@ FSS Link now features an intelligent **Welcome Back dialog** that appears when y
98
95
 
99
96
  - **๐Ÿ” Project Status Dashboard** - Git status, session history, momentum analysis
100
97
  - **๐Ÿ“Š Smart Context Generation** - Priority-based information filtering (7 levels)
101
- - **โšก Multi-Agent Awareness** - Universal session tracking across all agents
98
+ - **โšก Multi-Agent Awareness** - Universal session tracking across all agents (planned feature)
102
99
  - **๐ŸŽฏ Seamless Resumption** - Intelligent context population for continuing work
103
100
  - **๐Ÿš€ Production Quality** - Comprehensive error handling, performance optimization
104
101
 
102
+ ## ๐Ÿ“ External Directory Access
103
+
104
+ For accessing external directories like `/tmp`, user directories, or custom paths, see:
105
+ [External Directory Access Guide](./fss-docs/EXTERNAL-DIRECTORY-ACCESS.md)
106
+
107
+ This documentation explains how to configure FSS Link to securely access external directories through its folder trust system.
108
+
105
109
  ### ๐Ÿ”„ **Node.js Version Requirements**
106
110
 
107
111
  FSS Link requires **Node.js 20+**. If you have an older version, upgrade first:
@@ -153,7 +157,7 @@ Built-in semantic search that travels with your projects. No Python dependencies
153
157
  - **Deep Semantic Search**: Find code by describing what it does, not just what it's called
154
158
  - **Cross-Reference Analysis**: Discover how different parts of the system interact
155
159
  - **Context-Aware Suggestions**: Get recommendations based on the entire project context
156
- - **Portable Indices**: Knowledge travels with your projects
160
+ - **Portable Indices**: Knowledge travels with your projects (planned feature)
157
161
 
158
162
  ### ๐Ÿ“‹ **Enhanced Task Management**
159
163
  Built on FSS Link's native TodoWrite tool with professional enhancements for complex development workflows.
@@ -161,7 +165,7 @@ Built on FSS Link's native TodoWrite tool with professional enhancements for com
161
165
  - **Persistent Task Lists**: Never lose track of what needs to be done
162
166
  - **Visual Progress Indicators**: Instantly see what's complete, in-progress, or pending
163
167
  - **Intelligent Task Breakdown**: Automatically decompose complex features into actionable steps
164
- - **Multi-Agent Coordination**: Tasks shared across multiple agent instances
168
+ - **Multi-Agent Coordination**: Tasks shared across multiple agent instances (planned feature)
165
169
 
166
170
  ### ๐Ÿ” **Professional Web Research**
167
171
  TypeScript-native web research tools eliminate context switching between development and external resources.
@@ -210,7 +214,7 @@ fss-link
210
214
  # Launch with specific model
211
215
  fss-link --model qwen/qwen3-4b-2507
212
216
 
213
- # Launch with RAG index
217
+ # Launch with RAG index (planned feature)
214
218
  fss-link --rag ./project-index
215
219
  ```
216
220
 
@@ -222,34 +226,34 @@ fss-link run "Analyse this codebase structure"
222
226
  # With specific model
223
227
  fss-link run "Review security patterns" --model qwen/qwen3-30b-a3b-2507
224
228
 
225
- # With RAG context
229
+ # With RAG context (planned feature)
226
230
  fss-link run "Find authentication bugs" --rag .
227
231
  ```
228
232
 
229
- ### **Multi-Agent Workflows**
233
+ ### **Multi-Agent Workflows** (Planned Feature)
230
234
  ```bash
231
- # Launch multiple agents with template
235
+ # Launch multiple agents with template (planned feature)
232
236
  fss-link spawn --count 8 --template ./templates/build-test.yml
233
237
 
234
- # Parallel code review
238
+ # Parallel code review (planned feature)
235
239
  fss-link spawn --count 4 --template ./templates/code-review.yml --files src/
236
240
 
237
- # Load-balanced task processing
241
+ # Load-balanced task processing (planned feature)
238
242
  fss-link spawn --count 6 --template ./templates/regression-test.yml
239
243
  ```
240
244
 
241
- ### **RAG Operations**
245
+ ### **RAG Operations** (Planned Feature)
242
246
  ```bash
243
- # Index current directory
247
+ # Index current directory (planned feature)
244
248
  fss-link rag index .
245
249
 
246
- # Index with specific extensions
250
+ # Index with specific extensions (planned feature)
247
251
  fss-link rag index . --extensions py,js,md
248
252
 
249
- # Query with filters
253
+ # Query with filters (planned feature)
250
254
  fss-link rag query "authentication logic" --topk 5
251
255
 
252
- # Cross-reference search
256
+ # Cross-reference search (planned feature)
253
257
  fss-link rag query "error handling patterns" --files py,js --recent
254
258
  ```
255
259
 
@@ -338,8 +342,8 @@ FSS Link builds on [QwenLM/fss-link](https://github.com/QwenLM/fss-link), which
338
342
 
339
343
  <div align="center">
340
344
 
341
- **FSS Link** - *Portable, scriptable, multi-instance AI agent*
345
+ **FSS Link** - *Portable, scriptable, single-instance AI agent*
342
346
 
343
347
  [Documentation](./FSS-LINK-IMPLEMENTATION-GUIDE.md) โ€ข [Installation Guide](./INSTALL.md) โ€ข [Examples](./examples/)
344
348
 
345
- </div>
349
+ </div>