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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ github:

# Optional funding platforms can be added later.
# open_collective:
# - mimir
# - ragmir
# custom:
# - https://polar.sh/
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Bug report
description: Report a reproducible Mimir bug
description: Report a reproducible Ragmir bug
title: "bug: "
labels: ["bug"]
body:
Expand All @@ -21,8 +21,8 @@ body:
- type: input
id: version
attributes:
label: Mimir version
placeholder: "pnpm exec mimir --version"
label: Ragmir version
placeholder: "pnpm exec ragmir --version"
validations:
required: true
- type: textarea
Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

## Security

- [ ] No secrets, private documents, `.env` files, generated `.kb/` or generated `.mimir/` state are included.
- [ ] No secrets, private documents, `.env` files, generated `.kb/` or generated `.ragmir/` state are included.
- [ ] Public documentation does not expose private project, customer, pricing, or validation details.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: pnpm smoke

- name: Verify generated dist is committed
run: git diff --exit-code -- packages/mimir-core/dist packages/mimir-tts/dist
run: git diff --exit-code -- packages/ragmir-core/dist packages/ragmir-tts/dist

- name: Verify npm package metadata
run: pnpm package:check
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy-landing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [main, develop]
paths:
- "packages/mimir-landing/**"
- "packages/ragmir-landing/**"
- ".github/workflows/deploy-landing.yml"
workflow_dispatch:

Expand All @@ -21,10 +21,10 @@ jobs:
runs-on: ubuntu-latest
environment:
name: ${{ github.ref == 'refs/heads/main' && 'landing-production' || 'landing-staging' }}
url: ${{ github.ref == 'refs/heads/main' && 'https://mimir.jcode.works' || 'https://staging.mimir.jcode.works' }}
url: ${{ github.ref == 'refs/heads/main' && 'https://ragmir.jcode.works' || 'https://staging.ragmir.jcode.works' }}
defaults:
run:
working-directory: packages/mimir-landing
working-directory: packages/ragmir-landing
steps:
- name: Checkout
uses: actions/checkout@v6
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
if: github.ref == 'refs/heads/main'
run: pnpm build
env:
PUBLIC_MIMIR_LANDING_URL: https://mimir.jcode.works
PUBLIC_RAGMIR_LANDING_URL: https://ragmir.jcode.works

- name: Deploy (production)
if: github.ref == 'refs/heads/main'
Expand All @@ -65,7 +65,7 @@ jobs:
if: github.ref == 'refs/heads/develop'
run: pnpm build
env:
PUBLIC_MIMIR_LANDING_URL: https://staging.mimir.jcode.works
PUBLIC_RAGMIR_LANDING_URL: https://staging.ragmir.jcode.works

- name: Deploy (staging)
if: github.ref == 'refs/heads/develop'
Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/native-app-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,22 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Run release preflight
run: pnpm --filter @jcode.labs/mimir-app release:preflight -- --target linux --soft
run: pnpm --filter @jcode.labs/ragmir-app release:preflight -- --target linux --soft

- name: Build native bundle
run: pnpm --filter @jcode.labs/mimir-app tauri:build:linux
run: pnpm --filter @jcode.labs/ragmir-app tauri:build:linux

- name: Generate checksums
run: pnpm --filter @jcode.labs/mimir-app release:checksums
run: pnpm --filter @jcode.labs/ragmir-app release:checksums

- name: Generate release manifest
run: pnpm --filter @jcode.labs/mimir-app release:manifest -- --target linux
run: pnpm --filter @jcode.labs/ragmir-app release:manifest -- --target linux

- name: Upload native bundle
uses: actions/upload-artifact@v4
with:
name: mimir-app-linux-${{ github.sha }}
path: packages/mimir-app/src-tauri/target/release/bundle/
name: ragmir-app-linux-${{ github.sha }}
path: packages/ragmir-app/src-tauri/target/release/bundle/
if-no-files-found: error

macos:
Expand Down Expand Up @@ -97,22 +97,22 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Run release preflight
run: pnpm --filter @jcode.labs/mimir-app release:preflight -- --target macos --soft
run: pnpm --filter @jcode.labs/ragmir-app release:preflight -- --target macos --soft

- name: Build native bundle
run: pnpm --filter @jcode.labs/mimir-app tauri:build:macos
run: pnpm --filter @jcode.labs/ragmir-app tauri:build:macos

- name: Generate checksums
run: pnpm --filter @jcode.labs/mimir-app release:checksums
run: pnpm --filter @jcode.labs/ragmir-app release:checksums

- name: Generate release manifest
run: pnpm --filter @jcode.labs/mimir-app release:manifest -- --target macos
run: pnpm --filter @jcode.labs/ragmir-app release:manifest -- --target macos

- name: Upload native bundle
uses: actions/upload-artifact@v4
with:
name: mimir-app-macos-${{ github.sha }}
path: packages/mimir-app/src-tauri/target/release/bundle/
name: ragmir-app-macos-${{ github.sha }}
path: packages/ragmir-app/src-tauri/target/release/bundle/
if-no-files-found: error

windows:
Expand Down Expand Up @@ -144,20 +144,20 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Run release preflight
run: pnpm --filter @jcode.labs/mimir-app release:preflight -- --target windows --soft
run: pnpm --filter @jcode.labs/ragmir-app release:preflight -- --target windows --soft

- name: Build native bundle
run: pnpm --filter @jcode.labs/mimir-app tauri:build:windows
run: pnpm --filter @jcode.labs/ragmir-app tauri:build:windows

- name: Generate checksums
run: pnpm --filter @jcode.labs/mimir-app release:checksums
run: pnpm --filter @jcode.labs/ragmir-app release:checksums

- name: Generate release manifest
run: pnpm --filter @jcode.labs/mimir-app release:manifest -- --target windows
run: pnpm --filter @jcode.labs/ragmir-app release:manifest -- --target windows

- name: Upload native bundle
uses: actions/upload-artifact@v4
with:
name: mimir-app-windows-${{ github.sha }}
path: packages/mimir-app/src-tauri/target/release/bundle/
name: ragmir-app-windows-${{ github.sha }}
path: packages/ragmir-app/src-tauri/target/release/bundle/
if-no-files-found: error
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
environment:
name: npm-publish
url: https://www.npmjs.com/package/@jcode.labs/mimir
url: https://www.npmjs.com/package/@jcode.labs/ragmir
steps:
- name: Verify main branch
run: test "${GITHUB_REF}" = "refs/heads/main"
Expand Down Expand Up @@ -57,5 +57,5 @@ jobs:
- name: Upload release verification artifacts
uses: actions/upload-artifact@v4
with:
name: mimir-release-${{ github.sha }}
name: ragmir-release-${{ github.sha }}
path: release-artifacts/
34 changes: 17 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@ coverage/
.DS_Store
private/**
.kb/
.mimir/
.ragmir/
.claude/
.codex/
.agents/
*.tgz
release-artifacts/
*.pid

packages/mimir-app/dist/
packages/mimir-app/src-tauri/target/
packages/mimir-app/src-tauri/gen/
packages/mimir-landing/.astro/
packages/mimir-landing/dist/
packages/mimir-license-webhook/dist/
packages/ragmir-app/dist/
packages/ragmir-app/src-tauri/target/
packages/ragmir-app/src-tauri/gen/
packages/ragmir-landing/.astro/
packages/ragmir-landing/dist/
packages/ragmir-license-webhook/dist/

# Tracked synthetic examples. Keep generated example runtime state ignored.
!packages/mimir-core/examples/
!packages/mimir-core/examples/**/
!packages/mimir-core/examples/**/.mimir/
!packages/mimir-core/examples/**/.mimir/config.json
!packages/mimir-core/examples/**/.mimir/sources.txt
packages/mimir-core/examples/**/.mimir/storage/
packages/mimir-core/examples/**/.mimir/access.log
packages/mimir-core/examples/**/.mimir/models/
packages/mimir-core/examples/**/.mimir/reports/
packages/mimir-core/examples/**/.mimir/audio/
!packages/ragmir-core/examples/
!packages/ragmir-core/examples/**/
!packages/ragmir-core/examples/**/.ragmir/
!packages/ragmir-core/examples/**/.ragmir/config.json
!packages/ragmir-core/examples/**/.ragmir/sources.txt
packages/ragmir-core/examples/**/.ragmir/storage/
packages/ragmir-core/examples/**/.ragmir/access.log
packages/ragmir-core/examples/**/.ragmir/models/
packages/ragmir-core/examples/**/.ragmir/reports/
packages/ragmir-core/examples/**/.ragmir/audio/
.gitnexus
4 changes: 2 additions & 2 deletions .gitnexusignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
node_modules/
.pnpm-store/

# Local generated Mimir state and agent exposure folders
.mimir/
# Local generated Ragmir state and agent exposure folders
.ragmir/
.kb/
.agents/
.claude/
Expand Down
Loading
Loading