askimo Code
AI desktop app with local RAG, privacy-first, multi-model support
Brought to you by:
hainguyen79
| File | Date | Author | Commit |
|---|---|---|---|
| src | 2026-01-07 |
|
[53ba30] feat(telemetry): add session metrics and teleme... |
| README.md | 2025-12-02 |
|
[ae4e83] Refactor codebase (#137) |
| build.gradle.kts | 2025-12-25 |
|
[d86ea0] Fix notary dmg (#173) |
A Kotlin Compose Desktop application for the Askimo project.
To run the application in development mode:
./gradlew desktop:run
To build the application:
./gradlew desktop:build
To find unused localization keys in your properties files:
./gradlew :desktop:detectUnusedLocalizations
This task will:
messages.propertiesbuild/reports/unused-localizations.txtYou can create native distributions for different platforms:
# Create DMG for macOS
./gradlew desktop:packageDmg
# Create MSI for Windows
./gradlew desktop:packageMsi
# Create DEB for Linux
./gradlew desktop:packageDeb
desktop/
├── build.gradle.kts # Build configuration
├── src/
│ └── main/
│ ├── kotlin/
│ │ └── io/askimo/desktop/
│ │ └── Main.kt # Main application code
│ └── resources/ # Resources (icons, etc.)
└── README.md # This file
The application uses: