Wire up AI infrastructure with unified pkg/ai package (metrics JSONL, RAG integration), move RAG under `core ai rag`, add `core ai metrics` command, and enrich task context with Qdrant documentation. Add `--target` flag to all security commands for external repo scanning, `core security jobs` for distributing findings as GitHub Issues, and consistent error logging across scan/deps/alerts/secrets commands. Add Core IDE Wails v3 desktop app with Angular 20 frontend, MCP bridge (loopback-only HTTP server), WebSocket hub, and Claude Code bridge. Production-ready with Lethean CIC branding, macOS code signing support, and security hardening (origin validation, body size limits, URL scheme checks, memory leak prevention, XSS mitigation). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
62 lines
No EOL
1.7 KiB
YAML
62 lines
No EOL
1.7 KiB
YAML
# This file contains the configuration for this project.
|
|
# When you update `info` or `fileAssociations`, run `wails3 task common:update:build-assets` to update the assets.
|
|
# Note that this will overwrite any changes you have made to the assets.
|
|
version: '3'
|
|
|
|
# This information is used to generate the build assets.
|
|
info:
|
|
companyName: "Lethean Community Interest Company" # The name of the company
|
|
productName: "Core IDE" # The name of the application
|
|
productIdentifier: "com.lethean.core-ide" # The unique product identifier
|
|
description: "Core IDE - Development Environment" # The application description
|
|
copyright: "(c) 2026, Lethean Community Interest Company. EUPL-1.2" # Copyright text
|
|
comments: "Host UK Core IDE" # Comments
|
|
version: "0.0.1" # The application version
|
|
|
|
# Dev mode configuration
|
|
dev_mode:
|
|
root_path: .
|
|
log_level: warn
|
|
debounce: 1000
|
|
ignore:
|
|
dir:
|
|
- .git
|
|
- node_modules
|
|
- frontend
|
|
- bin
|
|
file:
|
|
- .DS_Store
|
|
- .gitignore
|
|
- .gitkeep
|
|
watched_extension:
|
|
- "*.go"
|
|
git_ignore: true
|
|
executes:
|
|
- cmd: wails3 task common:install:frontend:deps
|
|
type: once
|
|
- cmd: wails3 task common:dev:frontend
|
|
type: background
|
|
- cmd: go mod tidy
|
|
type: blocking
|
|
- cmd: wails3 task build
|
|
type: blocking
|
|
- cmd: wails3 task run
|
|
type: primary
|
|
|
|
# File Associations
|
|
fileAssociations:
|
|
# - ext: wails
|
|
# name: Wails
|
|
# description: Wails Application File
|
|
# iconName: wailsFileIcon
|
|
# role: Editor
|
|
# - ext: jpg
|
|
# name: JPEG
|
|
# description: Image File
|
|
# iconName: jpegFileIcon
|
|
# role: Editor
|
|
# mimeType: image/jpeg # (optional)
|
|
|
|
# Other data
|
|
other:
|
|
- name: My Other Data |