mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-14 03:30:19 +00:00
e65e2c3628
* ✨ feat(desktop): embed CLI in app and PATH install Made-with: Cursor * ✨ feat(desktop): add CLI command execution feature and UI integration - Implemented `runCliCommand` method in `ElectronSystemService` to execute CLI commands. - Added `CliTestSection` component for testing CLI commands within the app. - Updated `SystemCtr` to include CLI command execution functionality. - Enhanced `generateCliWrapper` to create short aliases for CLI commands. - Integrated CLI testing UI in the system tools settings page. Signed-off-by: Innei <tukon479@gmail.com> * ✨ feat: enhance working directory handling for desktop - Updated working directory logic to prioritize topic-level settings over agent-level. - Introduced local storage management for agent working directories. - Modified tests to reflect changes in working directory behavior. - Added checks to ensure working directory retrieval is only performed on desktop environments. Signed-off-by: Innei <tukon479@gmail.com> * ✨ feat(desktop): implement CLI command routing and cleanup - Introduced `CliCtr` for executing CLI commands, enhancing the desktop application with CLI capabilities. - Updated `ShellCommandCtr` to route specific commands to `CliCtr`, improving command handling. - Removed legacy CLI path installation methods from `SystemCtr` and related services. - Cleaned up localization files by removing obsolete entries related to CLI path installation. Signed-off-by: Innei <tukon479@gmail.com> * 🚸 settings(system-tools): show CLI embedded test only in dev mode Made-with: Cursor --------- Signed-off-by: Innei <tukon479@gmail.com>
148 lines
1.9 KiB
Plaintext
148 lines
1.9 KiB
Plaintext
# Gitignore for LobeHub
|
|
################################################################
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Linux/Ubuntu system files
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
.fuse_hidden*
|
|
.directory
|
|
.Trash-*
|
|
.nfs*
|
|
.gvfs-fuse-daemon-*
|
|
|
|
# IDE and editors
|
|
.idea/
|
|
*.sublime-*
|
|
.history/
|
|
.windsurfrules
|
|
*.code-workspace
|
|
.vscode/sessions.json
|
|
prd
|
|
# Recordings
|
|
.records/
|
|
|
|
# Temporary files
|
|
.temp/
|
|
temp/
|
|
tmp/
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
*.cache
|
|
.cache/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env*.local
|
|
.env.development
|
|
venv/
|
|
.venv/
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
*.lock
|
|
package-lock.json
|
|
bun.lockb
|
|
.pnpm-store/
|
|
|
|
# Build outputs
|
|
dist/
|
|
public/_spa/
|
|
public/spa/
|
|
es/
|
|
lib/
|
|
.next/
|
|
logs/
|
|
test-output/
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# Framework specific
|
|
# Umi
|
|
.umi/
|
|
.umi-production/
|
|
.umi-test/
|
|
.dumi/tmp*/
|
|
|
|
# Vercel
|
|
.vercel/
|
|
|
|
# Testing and CI
|
|
coverage/
|
|
.coverage/
|
|
.nyc_output/
|
|
.eslintcache
|
|
.stylelintcache
|
|
|
|
# Service Worker
|
|
# Serwist
|
|
public/sw*
|
|
public/swe-worker*
|
|
|
|
# Generated files
|
|
src/app/spa/[variants]/[[...path]]/spaHtmlTemplates.ts
|
|
public/*.js
|
|
public/sitemap.xml
|
|
public/sitemap-index.xml
|
|
sitemap*.xml
|
|
robots.txt
|
|
|
|
# Git hooks
|
|
.husky/prepare-commit-msg
|
|
|
|
# Documents and media
|
|
*.pdf
|
|
|
|
# Cloud service keys
|
|
vertex-ai-key.json
|
|
|
|
# Agent tracing snapshots
|
|
.agent-tracing/
|
|
|
|
# AI coding tools
|
|
.local/
|
|
.claude/
|
|
.mcp.json
|
|
CLAUDE.local.md
|
|
.agent/
|
|
|
|
# MCP tools
|
|
.serena/**
|
|
|
|
# Docker development data
|
|
docker-compose/dev/data/
|
|
|
|
# Migration scripts data
|
|
scripts/clerk-to-betterauth/test/*.csv
|
|
scripts/clerk-to-betterauth/test/*.json
|
|
scripts/clerk-to-betterauth/prod/*.csv
|
|
scripts/clerk-to-betterauth/prod/*.json
|
|
|
|
# Misc
|
|
./packages/lobe-ui
|
|
*.ppt*
|
|
*.doc*
|
|
*.xls*
|
|
e2e/reports
|
|
out
|
|
i18n-unused-keys-report.json
|
|
.vitest-reports
|
|
|
|
pnpm-lock.yaml
|
|
.turbo
|
|
spaHtmlTemplates.ts
|
|
|
|
# Embedded CLI bundle (built at pack time)
|
|
apps/desktop/resources/bin/lobe-cli.js
|
|
apps/desktop/resources/cli-package.json
|
|
|
|
.superpowers/
|
|
docs/superpowers |