fss-link 1.5.3 → 1.5.6
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 +18 -6
- package/bundle/fss-link.js +2010 -1056
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,12 +99,24 @@ FSS Link now features an intelligent **Welcome Back dialog** that appears when y
|
|
|
99
99
|
- **🎯 Seamless Resumption** - Intelligent context population for continuing work
|
|
100
100
|
- **🚀 Production Quality** - Comprehensive error handling, performance optimization
|
|
101
101
|
|
|
102
|
-
## 📁
|
|
102
|
+
## 📁 File Access & Security
|
|
103
103
|
|
|
104
|
-
|
|
105
|
-
|
|
104
|
+
### Workspace Boundaries
|
|
105
|
+
FSS Link restricts file operations to **workspace directories** by design. Understanding workspace boundaries helps you work efficiently:
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
**[Understanding Workspace Boundaries](./fss-docs/WORKSPACE-BOUNDARIES.md)** - Complete guide to:
|
|
108
|
+
- How workspace scope is determined
|
|
109
|
+
- Why files outside workspace are inaccessible
|
|
110
|
+
- Configuration options to expand workspace
|
|
111
|
+
- Troubleshooting "Path validation failed" errors
|
|
112
|
+
|
|
113
|
+
### External Directory Access
|
|
114
|
+
For accessing external directories like `/tmp`, user directories, or custom paths:
|
|
115
|
+
|
|
116
|
+
**[External Directory Access Guide](./fss-docs/EXTERNAL-DIRECTORY-ACCESS.md)** - Explains:
|
|
117
|
+
- Folder trust system configuration
|
|
118
|
+
- Security considerations for external access
|
|
119
|
+
- Trust levels (TRUST_FOLDER vs TRUST_PARENT)
|
|
108
120
|
|
|
109
121
|
### 🔄 **Node.js Version Requirements**
|
|
110
122
|
|
|
@@ -125,7 +137,7 @@ npm --version # Should show v10.x.x
|
|
|
125
137
|
|
|
126
138
|
```bash
|
|
127
139
|
# Method 2: Clone and Build from Source (Development)
|
|
128
|
-
git clone http://
|
|
140
|
+
git clone http://gitea.internal.bobai.com.au:3000/foxadmin/fss-link.git
|
|
129
141
|
cd fss-link
|
|
130
142
|
npm install
|
|
131
143
|
npm run build
|
|
@@ -269,7 +281,7 @@ fss-link rag query "error handling patterns" --files py,js --recent
|
|
|
269
281
|
npm install -g fss-link
|
|
270
282
|
|
|
271
283
|
# Or clone from source for development
|
|
272
|
-
git clone http://
|
|
284
|
+
git clone http://gitea.internal.bobai.com.au:3000/foxadmin/fss-link.git
|
|
273
285
|
cd fss-link
|
|
274
286
|
npm install && npm run build && npm link
|
|
275
287
|
|