Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,089 changes: 724 additions & 365 deletions .env.example

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ examples/
# Headroom sidecar (optional, installed separately)
headroom-sidecar/

# Windsurf-hub side project (separate distribution)
windsurf-hub/

# Scripts (setup.js is needed, others are optional)
scripts/audit-log-reader.js
scripts/compact-dictionary.js
Expand Down
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ FROM node:24-alpine AS runtime

ARG VCS_REF
ARG BUILD_DATE
ARG VERSION=9.6.0
ARG VERSION=9.7.1

LABEL org.opencontainers.image.title="Lynkr" \
org.opencontainers.image.description="Universal LLM proxy for Claude Code, Cursor, and AI coding tools" \
Expand Down Expand Up @@ -84,7 +84,11 @@ ENV NODE_ENV="production" \
RATE_LIMIT_MAX="100" \
# Cluster mode (multi-core, recommended for teams)
CLUSTER_ENABLED="true" \
CLUSTER_WORKERS="auto"
CLUSTER_WORKERS="auto" \
# Routing intelligence
LYNKR_VISIBLE_ROUTING="false" \
LYNKR_INTENT_WINDOW_N="5" \
LYNKR_INTENT_DECAY="0.7"

USER node

Expand Down
Loading
Loading