Skip to content

Releases: dataiku/kiji-proxy

Kiji Privacy Proxy v1.3.1

08 Jun 20:35
Immutable release. Only release title and notes can be modified.
1022940

Choose a tag to compare

Kiji Privacy Proxy v1.3.1

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Linux (.deb): Debian/Ubuntu package (amd64) with systemd unit
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Homebrew (recommended):

brew install --cask dataiku/tap/kiji-privacy-proxy

Or download manually:

  1. Download Kiji-Privacy-Proxy-1.3.1.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.3.1-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.3.1-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Debian / Ubuntu (.deb)

sudo dpkg -i kiji-privacy-proxy_1.3.1_amd64.deb
# The systemd unit is installed but not enabled by default.
# Configure /etc/default or env vars first, then:
sudo systemctl enable --now kiji-privacy-proxy

Files land under /opt/kiji-privacy-proxy/ and a kiji-proxy
wrapper is placed on PATH at /usr/bin/kiji-proxy.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.3.1.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v1.3.0...v1.3.1

Kiji Privacy Proxy v1.3.0

06 Jun 15:05
Immutable release. Only release title and notes can be modified.
4cc601c

Choose a tag to compare

Kiji Privacy Proxy v1.3.0

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Linux (.deb): Debian/Ubuntu package (amd64) with systemd unit
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Homebrew (recommended):

brew install --cask dataiku/tap/kiji-privacy-proxy

Or download manually:

  1. Download Kiji-Privacy-Proxy-1.3.0.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.3.0-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.3.0-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Debian / Ubuntu (.deb)

sudo dpkg -i kiji-privacy-proxy_1.3.0_amd64.deb
# The systemd unit is installed but not enabled by default.
# Configure /etc/default or env vars first, then:
sudo systemctl enable --now kiji-privacy-proxy

Files land under /opt/kiji-privacy-proxy/ and a kiji-proxy
wrapper is placed on PATH at /usr/bin/kiji-proxy.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.3.0.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v1.2.0...v1.3.0

Kiji Privacy Proxy v1.2.0

04 Jun 21:15
Immutable release. Only release title and notes can be modified.
49d015a

Choose a tag to compare

Kiji Privacy Proxy v1.2.0

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Linux (.deb): Debian/Ubuntu package (amd64) with systemd unit
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Homebrew (recommended):

brew install --cask dataiku/tap/kiji-privacy-proxy

Or download manually:

  1. Download Kiji-Privacy-Proxy-1.2.0.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.2.0-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.2.0-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Debian / Ubuntu (.deb)

sudo dpkg -i kiji-privacy-proxy_1.2.0_amd64.deb
# The systemd unit is installed but not enabled by default.
# Configure /etc/default or env vars first, then:
sudo systemctl enable --now kiji-privacy-proxy

Files land under /opt/kiji-privacy-proxy/ and a kiji-proxy
wrapper is placed on PATH at /usr/bin/kiji-proxy.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.2.0.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

  • feat: endpoints to enable labels by @hanneshapke in #509
  • chore: new release for the enabling of features by @hanneshapke in #510
  • chore: version packages by @github-actions[bot] in #511

Full Changelog: v1.1.5...v1.2.0

Kiji Privacy Proxy v1.1.5

04 Jun 18:25
Immutable release. Only release title and notes can be modified.
34de7c1

Choose a tag to compare

Kiji Privacy Proxy v1.1.5

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Linux (.deb): Debian/Ubuntu package (amd64) with systemd unit
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Homebrew (recommended):

brew install --cask dataiku/tap/kiji-privacy-proxy

Or download manually:

  1. Download Kiji-Privacy-Proxy-1.1.5.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.1.5-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.1.5-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Debian / Ubuntu (.deb)

sudo dpkg -i kiji-privacy-proxy_1.1.5_amd64.deb
# The systemd unit is installed but not enabled by default.
# Configure /etc/default or env vars first, then:
sudo systemctl enable --now kiji-privacy-proxy

Files land under /opt/kiji-privacy-proxy/ and a kiji-proxy
wrapper is placed on PATH at /usr/bin/kiji-proxy.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.1.5.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

  • feat: add PR template by @ykd007 in #441
  • fix: increased readme image size by @hanneshapke in #495
  • fix: revert increased readme image size (#495) by @hanneshapke in #496
  • feat(github-actions): replace github actions tag by hashes by @Ph4rell in #497
  • docs(update): update contributor file by @Ph4rell in #504
  • deps(deps): bump modernc.org/sqlite from 1.50.1 to 1.51.0 in the go-dependencies group by @dependabot[bot] in #498
  • deps(deps-dev): bump @typescript-eslint/parser from 8.59.1 to 8.60.1 by @dependabot[bot] in #500
  • deps(deps-dev): bump webpack-dev-server from 5.2.3 to 5.2.4 by @dependabot[bot] in #502
  • deps(deps-dev): bump @babel/core from 7.29.0 to 7.29.7 by @dependabot[bot] in #503
  • feat: add unix socket by @nmartorell in #505
  • chore: added changeset by @hanneshapke in #507
  • chore: version packages by @github-actions[bot] in #508

New Contributors

Full Changelog: v1.1.4...v1.1.5

Kiji Privacy Proxy v1.1.4

30 May 04:19
Immutable release. Only release title and notes can be modified.
ea6ab32

Choose a tag to compare

Kiji Privacy Proxy v1.1.4

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Linux (.deb): Debian/Ubuntu package (amd64) with systemd unit
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Homebrew (recommended):

brew install --cask dataiku/tap/kiji-privacy-proxy

Or download manually:

  1. Download Kiji-Privacy-Proxy-1.1.4.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.1.4-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.1.4-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Debian / Ubuntu (.deb)

sudo dpkg -i kiji-privacy-proxy_1.1.4_amd64.deb
# The systemd unit is installed but not enabled by default.
# Configure /etc/default or env vars first, then:
sudo systemctl enable --now kiji-privacy-proxy

Files land under /opt/kiji-privacy-proxy/ and a kiji-proxy
wrapper is placed on PATH at /usr/bin/kiji-proxy.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.1.4.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

  • fix: drop unsupported macOS floor from Homebrew cask by @hanneshapke in #492
  • fix: broken electron build by @hanneshapke in #493
  • chore: version packages by @github-actions[bot] in #494

Full Changelog: v1.1.3...v1.1.4

Kiji Privacy Proxy v1.1.3

30 May 02:16
Immutable release. Only release title and notes can be modified.
9134f98

Choose a tag to compare

Kiji Privacy Proxy v1.1.3

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Linux (.deb): Debian/Ubuntu package (amd64) with systemd unit
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Homebrew (recommended):

brew install --cask dataiku/tap/kiji-privacy-proxy

Or download manually:

  1. Download Kiji-Privacy-Proxy-1.1.3.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.1.3-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.1.3-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Debian / Ubuntu (.deb)

sudo dpkg -i kiji-privacy-proxy_1.1.3_amd64.deb
# The systemd unit is installed but not enabled by default.
# Configure /etc/default or env vars first, then:
sudo systemctl enable --now kiji-privacy-proxy

Files land under /opt/kiji-privacy-proxy/ and a kiji-proxy
wrapper is placed on PATH at /usr/bin/kiji-proxy.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.1.3.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

  • fix: publish Homebrew cask on first release by @hanneshapke in #490
  • chore: version packages by @github-actions[bot] in #491

Full Changelog: v1.1.2...v1.1.3

Kiji Privacy Proxy v1.1.2

30 May 01:33
Immutable release. Only release title and notes can be modified.
d9b16e0

Choose a tag to compare

Kiji Privacy Proxy v1.1.2

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Linux (.deb): Debian/Ubuntu package (amd64) with systemd unit
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-1.1.2.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.1.2-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.1.2-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Debian / Ubuntu (.deb)

sudo dpkg -i kiji-privacy-proxy_1.1.2_amd64.deb
# The systemd unit is installed but not enabled by default.
# Configure /etc/default or env vars first, then:
sudo systemctl enable --now kiji-privacy-proxy

Files land under /opt/kiji-privacy-proxy/ and a kiji-proxy
wrapper is placed on PATH at /usr/bin/kiji-proxy.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.1.2.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

New Contributors

Full Changelog: v1.0.5...v1.1.2

Kiji Privacy Proxy v1.0.5

14 May 17:01
Immutable release. Only release title and notes can be modified.
c8ad776

Choose a tag to compare

Kiji Privacy Proxy v1.0.5

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-1.0.5.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.0.5-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.0.5-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.0.5.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v1.0.4...v1.0.5

Kiji Privacy Proxy v1.0.4

14 May 03:34
Immutable release. Only release title and notes can be modified.
a0de9fe

Choose a tag to compare

Kiji Privacy Proxy v1.0.4

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-1.0.4.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.0.4-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.0.4-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.0.4.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v1.0.3...v1.0.4

Kiji Privacy Proxy v1.0.3

12 May 20:35
Immutable release. Only release title and notes can be modified.
1f2dff0

Choose a tag to compare

Kiji Privacy Proxy v1.0.3

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-1.0.3.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.0.3-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.0.3-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.0.3.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

  • ci: updated the dmg signing by @hanneshapke in #417
  • chore: add changeset for macOS quarantine fix by @Davidnet in #418
  • chore: version packages by @github-actions[bot] in #419
  • fix(ci): force electron-builder to sign on merged release PRs by @Davidnet in #420
  • chore: add changeset for signing build fix by @Davidnet in #421
  • chore: version packages by @github-actions[bot] in #422

Full Changelog: v1.0.1...v1.0.3