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
6 changes: 6 additions & 0 deletions .github/cr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
owner: GeiserX
git-repo-url: https://github.com/GeiserX/LynxPrompt
charts-repo-url: https://geiserx.github.io/LynxPrompt
packages-with-index: false
index-path: index.yaml
release-name-template: "{{ .Name }}-{{ .Version }}"
35 changes: 35 additions & 0 deletions .github/workflows/release-chart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Release Helm Chart

on:
push:
branches:
- main
paths:
- 'charts/lynxprompt/**'
- '.github/workflows/release-chart.yml'
workflow_dispatch:

jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.7.0
with:
charts_dir: charts
config: .github/cr.yaml
skip_existing: true
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@
<p align="center">
<a href="https://lynxprompt.com"><img src="https://img.shields.io/badge/🌐_Website-lynxprompt.com-6366f1?style=flat-square" alt="Website"></a>
<a href="https://www.npmjs.com/package/lynxprompt"><img src="https://img.shields.io/npm/v/lynxprompt?style=flat-square&logo=npm&label=CLI" alt="npm"></a>
<a href="https://marketplace.visualstudio.com/items?itemName=LynxPrompt.lynxprompt"><img src="https://img.shields.io/visual-studio-marketplace/v/LynxPrompt.lynxprompt?style=flat-square&logo=visualstudiocode&label=VS%20Code%20Extension" alt="VS Code Extension"></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/📜_License-GPL--3.0-blue?style=flat-square" alt="License"></a>
<a href="https://github.com/GeiserX/LynxPrompt"><img src="https://img.shields.io/github/stars/GeiserX/LynxPrompt?style=flat-square&logo=github" alt="GitHub Stars"></a>
<a href="https://hub.docker.com/r/drumsergio/lynxprompt"><img src="https://img.shields.io/docker/pulls/drumsergio/lynxprompt?style=flat-square&logo=docker&label=Docker%20Pulls" alt="Docker Pulls"></a>
<a href="https://artifacthub.io/packages/helm/lynxprompt/lynxprompt"><img src="https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/lynxprompt&style=flat-square" alt="ArtifactHub"></a>
</p>

<p align="center">
Expand Down Expand Up @@ -101,6 +103,15 @@ docker compose -f docker-compose.selfhost.yml up -d

That's it. LynxPrompt is running with PostgreSQL, automatic migrations, and email authentication enabled by default.

### Helm Chart (Kubernetes)

A Helm chart is also available for Kubernetes deployments. See the [chart documentation](charts/lynxprompt/README.md) for the full values reference.

```bash
helm repo add lynxprompt https://geiserx.github.io/LynxPrompt
helm install lynxprompt lynxprompt/lynxprompt
```

---

## Configuration
Expand Down Expand Up @@ -167,6 +178,26 @@ Also available via Homebrew (`brew install GeiserX/lynxprompt/lynxprompt`) and C

---

## VS Code Extension

Prefer managing configs without leaving the editor? LynxPrompt also has an official VS Code extension.

<p>
<a href="https://marketplace.visualstudio.com/items?itemName=LynxPrompt.lynxprompt"><img src="https://img.shields.io/visual-studio-marketplace/v/LynxPrompt.lynxprompt?style=flat-square&logo=visualstudiocode&label=Marketplace" alt="Marketplace"></a>
<a href="https://github.com/GeiserX/lynxprompt-vscode"><img src="https://img.shields.io/badge/Source-lynxprompt--vscode-3178C6?style=flat-square&logo=github&logoColor=white" alt="lynxprompt-vscode source"></a>
</p>

From inside VS Code you can:

- Browse your cloud blueprints and local AI config files in a dedicated sidebar
- Pull `AGENTS.md`, `CLAUDE.md`, `.cursor/rules/`, and more into the correct workspace paths
- Diff local files against their cloud versions with the built-in editor
- Push updates back to LynxPrompt without leaving VS Code

Install it from the Marketplace or run `ext install LynxPrompt.lynxprompt`.

---

## Architecture

- **Frontend + API**: Next.js 16 with App Router
Expand Down
2 changes: 1 addition & 1 deletion charts/lynxprompt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A Helm chart for LynxPrompt - Self-hosted AI IDE configuration hub
type: application
kubeVersion: ">=1.21.0-0"
version: 0.1.0
appVersion: "2.0.75"
appVersion: "2.0.76"
keywords:
- lynxprompt
- ai
Expand Down
2 changes: 1 addition & 1 deletion charts/lynxprompt/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ fullnameOverride: ""
image:
repository: drumsergio/lynxprompt
pullPolicy: IfNotPresent
tag: "2.0.75"
tag: "2.0.76"

imagePullSecrets: []

Expand Down
Loading