
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
signalry-proxy
Advanced tools
Transparent LLM API proxy that captures skill metadata for Signalry. Change one env var, keep all your existing code.
# Start the proxy
npx signalry-proxy --port 4000 --candidate-id YOUR_ID --api-key sig_YOUR_KEY
# Point your SDK at it (one env var change)
export OPENAI_BASE_URL=http://localhost:4000/v1
# All existing code works unchanged
python -c "import openai; openai.chat.completions.create(model='gpt-4o', messages=[...])"
localhost:4000 instead of api.openai.comRoutes are auto-detected from request paths:
| Path | Provider |
|---|---|
/v1/chat/completions | OpenAI (also xAI, DeepSeek, any OpenAI-compatible) |
/v1/messages | Anthropic |
/v1/chat/complete | Mistral |
Override with path prefixes: /openai/v1/..., /anthropic/v1/..., /deepseek/v1/...
--port, -p Port to listen on (default: 4000)
--candidate-id, -c Signalry candidate ID
--api-key, -k Signalry API key
--server-url, -s Signalry server URL
--config Path to config file (default: ~/.signalry/proxy.json)
--debug Log extraction activity to stderr
~/.signalry/proxy.json){
"port": 4000,
"candidateId": "xxx",
"apiKey": "sig_xxx",
"serverUrl": "https://signalry-livid.vercel.app",
"providers": {
"openai": "https://api.openai.com",
"anthropic": "https://api.anthropic.com",
"xai": "https://api.x.ai",
"deepseek": "https://api.deepseek.com",
"mistral": "https://api.mistral.ai"
}
}
SIGNALRY_PROXY_PORT=4000
SIGNALRY_CANDIDATE_ID=xxx
SIGNALRY_API_KEY=sig_xxx
SIGNALRY_SERVER_URL=https://signalry-livid.vercel.app
Priority: CLI flags > config file > env vars.
The proxy sees raw text (it has to, to forward it). But it:
What IS sent to Signalry: { model: "gpt-4o", languages: ["Python"], frameworks: ["FastAPI"], domain: "backend", complexity: "moderate" }
What is NOT sent: Your prompts, code, API keys, or any raw text.
For maximum privacy, use signalry-sdk instead (extraction happens inside your process with no proxy).
The proxy fully supports SSE streaming (stream: true). Streaming responses are piped directly from the provider to your code without buffering. Skill extraction runs on the request body only, so streaming adds zero latency.
Built entirely on Node.js built-in modules (http, https, url, path, fs, crypto). No node_modules needed.
curl http://localhost:4000/health
# {"status":"ok","version":"0.1.0"}
FAQs
Transparent LLM API proxy that captures skill metadata for Signalry
The npm package signalry-proxy receives a total of 3 weekly downloads. As such, signalry-proxy popularity was classified as not popular.
We found that signalry-proxy 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
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.