
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
fss-link-cli
Advanced tools
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.
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.
# Interactive mode
fss-link
# Single-shot task
fss-link run "Audit the repo for security keys and open PR fixes."
# Launch 6 parallel agents with templated plan
fss-link spawn --count 6 --template ./templates/regression.yml
# Portable RAG - indexes travel with projects
cd project && fss-link rag index . && fss-link rag query "error handling"
FSS Link v1.0.13 is now published to NPM! Install it globally for the best experience:
# Method 1: NPM Global Install (Recommended)
npm install -g fss-link
# Now you can use fss-link anywhere
fss-link --help
fss-link --version # Should show v1.0.13
FSS Link requires Node.js 20+. If you have an older version, upgrade first:
# Check your current Node version
node --version
# If you have Node 18 or older, upgrade to Node 20:
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install nodejs -y
# Verify upgrade
node --version # Should show v20.x.x
npm --version # Should show v10.x.x
# Method 2: Clone and Build from Source (Development)
git clone http://192.168.1.3:3000/foxadmin/fss-link.git
cd fss-link
npm install
npm run build
# Install globally for 'fss-link' command
npm link
# Now you can use fss-link anywhere
fss-link --help
# Method 3: Run without installing globally
npx fss-link
# OR from source
cd fss-link
npx fss-link
✅ Note: FSS Link is now published to npm as fss-link v1.0.13!
This agent extends FSS Link v0.0.10+ with professional development tools and intelligent workflow automation:
Built-in semantic search that travels with your projects. No Python dependencies, no setup complexity.
Built on FSS Link's native TodoWrite tool with professional enhancements for complex development workflows.
TypeScript-native web research tools eliminate context switching between development and external resources.
Long-running operations need progress updates. Audio feedback enables multitasking during complex automated tasks.
Designed for local-first development with intelligent model switching.
Based on extensive testing with the FSS Enhanced FSS Link prototype:
qwen/qwen3-4b-2507qwen/qwen3-30b-a3b-2507# Launch FSS Link interactive shell
fss-link
# Launch with specific model
fss-link --model qwen/qwen3-4b-2507
# Launch with RAG index
fss-link --rag ./project-index
# Execute prompt and exit
fss-link run "Analyse this codebase structure"
# With specific model
fss-link run "Review security patterns" --model qwen/qwen3-30b-a3b-2507
# With RAG context
fss-link run "Find authentication bugs" --rag .
# Launch multiple agents with template
fss-link spawn --count 8 --template ./templates/build-test.yml
# Parallel code review
fss-link spawn --count 4 --template ./templates/code-review.yml --files src/
# Load-balanced task processing
fss-link spawn --count 6 --template ./templates/regression-test.yml
# Index current directory
fss-link rag index .
# Index with specific extensions
fss-link rag index . --extensions py,js,md
# Query with filters
fss-link rag query "authentication logic" --topk 5
# Cross-reference search
fss-link rag query "error handling patterns" --files py,js --recent
# Install from npm (Published v1.0.13)
npm install -g fss-link
# Or clone from source for development
git clone http://192.168.1.3:3000/foxadmin/fss-link.git
cd fss-link
npm install && npm run build && npm link
# Verify installation
fss-link --version # Should show v1.0.13
# List available profiles
fss-link profiles list
# Create new profile
fss-link profiles add local-fast --model qwen/qwen3-4b-2507 --provider lmstudio
# Set default profile
fss-link profiles default local-fast
FSS Link builds on FSS Link v0.0.10+ using a clean fork approach:
#10B981 (linking/connection theme)#0F172AFSS Link builds on QwenLM/fss-link, which itself builds upon Google Gemini CLI. We acknowledge and appreciate the excellent work of both teams.
FSS Link - Portable, scriptable, multi-instance AI agent
FAQs
FSS Link - AI-powered coding assistant
We found that fss-link-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.