freshcrate
Skin:/
Home > MCP Servers > askimo

askimo

Open-source AI desktop app with built-in knowledge base, MCP support, and multi-provider models like OpenAI, Gemini, Grok, and Ollama.

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

Open-source AI desktop app with built-in knowledge base, MCP support, and multi-provider models like OpenAI, Gemini, Grok, and Ollama.

README

Askimo - AI toolkit for your workflows.

askimo.chat · Local-first AI agent platform: chat, search, run, plan.

CLI Build Desktop Build License Release DCO

GitHub StarsCommit Activity Last Commit macOS Windows Linux

OpenAI Claude Gemini Grok Ollama LocalAI LMStudio DockerAI

📥 Download📖 Documentation💬 Discussions⭐ Star on GitHub


What is Askimo?

Askimo is a local-first AI desktop app and CLI. It connects AI models to your local files, tools, and workflows - without routing data through a cloud service.

It supports multiple providers (OpenAI, Claude, Gemini, Ollama, and others), persistent chat sessions backed by SQLite, document and code search via hybrid RAG (BM25 + vector), MCP tool integration, a script runner for Python/Bash/JavaScript, and a Plans engine that chains multi-step AI workflows into a single click. All state lives on your disk.


Features

  • Multi-provider - Configure and switch between cloud and local AI providers per session. Supported: OpenAI, Anthropic, Google Gemini, xAI Grok, Ollama, LM Studio, LocalAI, Docker AI, and any OpenAI-compatible endpoint
  • Persistent sessions - Conversations are stored in a local SQLite database and restored on restart
  • RAG - Index local folders, files, and web URLs. Uses hybrid BM25 + vector retrieval with an AI-based classifier that skips retrieval when the query doesn't need it
  • Plans (agentic workflows) - Run multi-step AI pipelines from a form-based UI. Each step builds on the previous one; progress is shown live. Export results as PDF or Word. Define your own plans in YAML
  • Script runner - Execute Python, Bash, and JavaScript directly from chat. Python scripts run in an auto-managed virtualenv with automatic dependency installation
  • Vision - Attach images to conversations; works with any multimodal model
  • MCP tool integration - Connect MCP-compatible servers via stdio or HTTP, scoped globally or per project
  • Recipe automation (CLI) - Define prompt templates in YAML with variables, file I/O, and post-actions. Run with askimo -r <recipe> [args]
  • Local telemetry - Tracks token usage, estimated cost, and RAG performance per provider. Nothing is uploaded
  • i18n - UI available in English, Chinese (Simplified and Traditional), Japanese, Korean, French, Spanish, German, Portuguese, and Vietnamese

Plans - Multi-Step AI Workflows

A single AI prompt cannot reason properly across multiple stages. When you ask one prompt to research, analyse, and conclude all at once, the AI skips the dependencies between those stages and produces output that sounds thorough but could apply to almost anything.

Plans mirror how experts actually think. Each step has one focused job and one persona - researcher, analyst, strategist, writer. The output of each step feeds automatically into the next as grounded context. No copy-pasting. No re-prompting. The chain runs end-to-end and the final result reflects genuine staged reasoning: specific, traceable, and defensible.

Fill in a form. Askimo handles the rest.

Built-in plans:

Plan What it does
💼 Job Application Writer Analyses a job description, matches your CV, writes a tailored cover letter, and produces an ATS-optimised resume
✍️ Blog Post Writer Generates an outline, writes the full draft, adds SEO metadata, and outputs the polished final post
🏆 Competitor Analysis Profiles a competitor, compares against your product, and produces a strategic opportunities report
📋 Meeting Notes Processor Structures raw notes, extracts action items with owners, and produces shareable meeting minutes
📝 Research Report Researches a topic and writes a structured report with executive summary and key findings
📧 Email Writer Drafts and self-refines a professional email from a one-line description

Key capabilities:

  • Live step-by-step progress with per-step timing
  • Export any result as PDF or Word (.docx)
  • Create your own plans with AI - describe your workflow in plain English and the AI generates valid plan YAML instantly; no manual YAML writing required
  • Fine-tune generated plans in the built-in YAML editor, or duplicate any built-in plan as a starting point

Supported Providers

Cloud: OpenAI · Anthropic Claude · Google Gemini · xAI Grok
Local: Ollama · LM Studio · LocalAI · Docker AI

Works with any OpenAI-compatible endpoint via custom base URL.


Quick Start

Download for macOS, Windows, or Linux →

After installation, open Askimo, configure a provider (API key for cloud models, or point it at a running Ollama instance), and start a session. Setup guide →

System Requirements

OS macOS 11+, Windows 10+, Linux (Ubuntu 20.04+, Debian 11+, Fedora 35+)
Memory 50–300 MB (AI models require additional memory depending on provider)
Disk 250 MB

Screenshots and Demos

Plan:

Askimo Plans Demo

RAG:

Askimo RAG Demo

Script runner:

Askimo Run Script Demo

MCP tools:

Askimo MCP Demo

Provider Switching MCP Tools Configuration RAG


CLI (Optional)

Askimo also ships as a native CLI binary built with GraalVM. Useful for scripting, automation, and headless environments.

# macOS/Linux
curl -sSL https://raw.githubusercontent.com/haiphucnguyen/askimo/main/tools/installation/install.sh | bash

# Windows (PowerShell)
iwr -useb https://raw.githubusercontent.com/haiphucnguyen/askimo/main/tools/installation/install.ps1 | iex

CLI documentation →


Building from Source

Prerequisites

  • JDK 21+
  • Git

Build

git clone https://github.com/haiphucnguyen/askimo.git
cd askimo

# Run the desktop app
./gradlew :desktop:run

# Build native installers
./gradlew :desktop:package

# Build CLI native binary (requires GraalVM)
./gradlew :cli:nativeCompile

Project Structure

  • desktop/ - Compose Multiplatform desktop application
  • desktop-shared/ - Shared UI components usable across products
  • cli/ - JLine3 REPL and GraalVM native image
  • shared/ - Core logic: providers, RAG, MCP, memory, tools, database, plans engine

See CONTRIBUTING.md for development guidelines, code style, and DCO requirements.

For full developer documentation, see the Development Getting Started Guide.


Localization

UI is available in: English, Chinese (Simplified and Traditional), Japanese, Korean, French, Spanish, German, Portuguese, Vietnamese.

Want to add a language? Open a discussion.


Getting Help


Contributing

Bug reports, feature requests, and pull requests are welcome. See CONTRIBUTING.md for details.


License

AGPLv3. See LICENSE.

Release History

VersionChangesUrgencyDate
main@2026-05-24Latest activity on main branchHigh5/24/2026
v1.4.2--- ### Summary The release focuses on personalize user interaction with **User memory persistence** and **step output history reconstruction** are introduced to maintain context between sessions, reducing the need for repeated prompts. ## What's Changed - **Added** persistent storage for *user memory* across sessions, keeping user context intact between visits ([#385](https://github.com/askimo-ai/askimo/pull/385)). - **Added** step output history persistence and reconstruction foHigh5/17/2026
v1.4.0### Summary This release introduces comprehensive **AI skills management**, allowing users to create, execute, and automate custom workflows seamlessly. Also it include several UI improvements ## What's Changed * Added **default directives** to seed automatically on startup, ensuring a consistent and ready-to-use environment for all users ([#368](https://github.com/haiphucnguyen/askimo/pull/368)) * Added **terminal analytics and enriched telemetry** to provide deeper insights into applHigh5/12/2026
v1.3.9### Summary This release introduces several usability improvements across projects, discovery, navigation, and desktop list interactions. It adds new discovery and MCP settings navigation paths, improves project management with pinned projects and safer chat deletion, and enhances directive rendering with helpful learn-more links. The release also includes analytics improvements and internal cleanup to simplify shared shell components and remove redundant project files. ## What's Changed High5/6/2026
v1.3.8### Summary This release focuses on enhancing the update‑checker component to provide a smoother user experience. ## What's Changed - Improved **update checker** to provide more reliable update detection, a refreshed UI, and streamlined preference handling ([#356](https://github.com/haiphucnguyen/askimo/pull/356)) **Full Changelog**: https://github.com/haiphucnguyen/askimo/compare/v1.3.7...v1.3.8High5/2/2026
v1.3.6### Summary This release enhances the user experience by refining how Markdown is rendered and searched, while expanding AI model configurability. It simplified model settings by removing unnecessary sampling temperature, and added **universal export** capabilities for content. ## What's Changed - Added **streaming code block rendering** to provide smoother, real‑time display of code snippets. ([#341](https://github.com/haiphucnguyen/askimo/pull/341)) - Fixed search to operate againHigh4/28/2026
v1.3.4### Summary This release focuses strengthens the **RAG indexing pipeline** and refines chat/server configuration handling to improve maintainability and operational consistency. ## What's Changed - Added support for using **tools directly within plan execution steps**, making automated plans more capable and flexible during runtime. ([#330](https://github.com/haiphucnguyen/askimo/pull/330)) - Improved **plan synchronization** and added support for **ephemeral MCP servers**, helping plaHigh4/23/2026
v1.3.3### Summary This release focuses on improving overall code quality and maintainability across the codebase. It introduces **Detekt** for static analysis and includes a broad set of related fixes to align the project with stronger Kotlin quality standards. These updates help improve consistency, reduce potential issues, and support a healthier development workflow. ## What's Changed - Integrated **Detekt** into the build process and applied project-wide **static analysis** fixes to improHigh4/20/2026
v1.3.2**Summary** This release focuses on enhancing the chat experience and the core services that power it. We centralize the Model Context Protocol services to streamline future development, introduce a richer chat and settings interface, and revamp the chat component APIs for more robust state management. These changes collectively make the platform more maintainable, user‑friendly, and ready for upcoming features. ## What's Changed - Refactored **Model Context Protocol services** to cenHigh4/19/2026
v1.3.1### Summary This release enhances collaboration and usability by adding a **File Viewer Pane** for easier file navigation and preferences. Files can now be attached directly from the project side panel thanks to **Chat Attachments**. UI notifications and error colors have been refined for clearer communication, while the underlying **RAG indexing logic** has been refactored and now supports cancellation, improving performance and reliability. ## What's Changed - Added **File Viewer PaneHigh4/16/2026
v1.3.0### Summary This release focuses on **better planning workflows**, **clearer desktop guidance**, and **more actionable error handling** across the app. It introduces a new **plans engine with desktop UI and export support**, improves provider and file upload feedback, and strengthens the overall experience with UI refinements and infrastructure refactors. The release also boosts maintainability through model factory restructuring, broader FileKit adoption, and expanded unit test coverage. High4/15/2026
v1.2.26### Summary This release improves both configurability and built-in assistant capabilities. It externalizes the **update service URL** to make deployment and environment management more flexible, while also expanding **execution** with native tools for weather, and date/time queries. Together, these changes strengthen the platform’s extensibility and make the assistant more useful out of the box. ## What's Changed - Externalized the **update service URL** to improve configuration flexibHigh4/8/2026
v1.2.25### Summary This release focuses on improving the app’s foundation, customization options, and synchronization capabilities. It introduces a more robust **chat sync** architecture, expands **theme personalization** with new appearance settings, and improves overall usability through UI refinements. The release also includes important maintenance updates across the **database layer**, **build pipeline**, and **telemetry/connectivity** to support reliability and future development. ## What'sMedium4/5/2026
v1.2.24### Summary This release improves **image handling**, continues the move toward a **shared module architecture**, and strengthens the build and publishing pipeline for better consistency and maintainability. ## What's Changed - Improved **image model handling** , and get rid of image info in memory ([#280](https://github.com/haiphucnguyen/askimo/pull/280)) - Extracted shared UI components into a new **desktop-shared module** for better reuse and consistency ([#281](https://github.com/hMedium3/26/2026
v1.2.23### Summary This release improves **MCP flexibility and usability**, adds **thinking mode support** for Gemini and Anthropic, and strengthens error handling and tool integration across chat sessions. ## What's Changed - Renamed **ProjectMcpInstance** to **McpInstance** and added support for **global MCP instances** ([#261](https://github.com/haiphucnguyen/askimo/pull/261)) - Added a **global tool picker** and support for **session-scoped tool disabling**, giving more control over tool Low3/18/2026
v1.2.22### Summary This release support executing code inside the application, adds support for **OpenAI-compatible AI providers**, and enhances the desktop interface with cleaner layout and UI components. ## What's Changed - Support **executing scripts (python, node, bash)** inside the application terminal ([#256](https://github.com/haiphucnguyen/askimo/pull/256)) - Fixed desktop layout to **align content width and scrolling behavior across views** for a more consistent UI experience ([#25Low3/10/2026
v1.2.21### Summary This release improves **MCP connectivity**, simplifies **configuration and settings**, and strengthens the overall architecture with better error handling, indexing flow, and HTTP utilities. ## What's Changed - Added **HTTP MCP transport support** and improved model configuration handling for MCP integrations ([#250](https://github.com/haiphucnguyen/askimo/pull/250)) - Added **settings guides** and **secret visibility toggles** in the UI to make configuration easier and cleLow3/9/2026
v1.2.20### Summary This release improves the chat experience with better layout on large screens, automatic AI session titles, and smoother message history loading. ## What's Changed - Improved **UI layout for large monitors**, making Askimo more comfortable to use on wide and high-resolution displays ([#247](https://github.com/haiphucnguyen/askimo/pull/247)) - Added **AI-generated session titles** automatically after creating a new chat session ([#248](https://github.com/haiphucnguyen/askimo/pLow3/6/2026
v1.2.19## Summary This release introduces two major enhancements. First, the project panel now supports adding and managing reference material directly from the UI, improving the workflow for users who need to incorporate external documents or files into their projects. Second, the core embedding logic has been refactored: embedding model construction is now handled by provider factories, accompanied by a new token‑limit API, centralized RAG utilities, and improved test isolation. ## What changeLow3/2/2026
v1.2.18### Summary This release improves the chat experience visually and ensures project knowledge stays current by triggering indexing when you open a project. ## What's Changed - Improved **chat styling** for a cleaner and more consistent look, and automatically **trigger project indexing when entering the project view** to keep knowledge up to date ([#244](https://github.com/haiphucnguyen/askimo/pull/244)) **Full Changelog**: https://github.com/haiphucnguyen/askimo/compare/v1.2.17...vLow2/25/2026
v1.2.17### Summary This release adds **terminal and image model support**, improves **RAG source management**, and makes MCP integrations more flexible. It also strengthens indexing reliability and gives users better control over project workflows. ## What's Changed - Added support for **template variables in MCP server integrations**, making integrations more flexible and reusable ([#236](https://github.com/haiphucnguyen/askimo/pull/236)) - Introduced a **RAG sources tree and side panel** foLow2/23/2026
v1.2.16### Summary This release improves onboarding and UI consistency, and enhances the reliability and flexibility of tool execution across Askimo. ## What's Changed - Added MCP server templates and initial tool provider integration (Phase 1), expanding support for external tools and services ([#227](https://github.com/haiphucnguyen/askimo/pull/227)) - Standardized button components and updated icon colors for a more consistent UI theme ([#229](https://github.com/haiphucnguyen/askimo/pull/2Low2/16/2026
v1.2.15### Summary This release makes Askimo more flexible in different network setups and adds a more personal, guided onboarding experience for new users. ## What's Changed - Added **configurable proxy support** across the desktop app and AI providers, making it easier to run Askimo in restricted or custom network environments ([#224](https://github.com/haiphucnguyen/askimo/pull/224)) - Introduced **user profile onboarding and personalization**, helping Askimo adapt to individual preferenceLow2/2/2026
v1.2.14### Summary This update improves **CLI stability and compatibility** when running as a native image, and updated the temperature setting with more user friendly approach ## What's Changed - Improved **native image configuration** in the CLI for better **JVM interoperability** ([#223](https://github.com/haiphucnguyen/askimo/pull/223)) **Full Changelog**: https://github.com/haiphucnguyen/askimo/compare/v.1.2.13...v1.2.14Low1/31/2026
v.1.2.13### Summary This update adds a safety net with backup and restore, and improves reliability when handling extracted content. ## What's Changed - Added **backup and restore** to the desktop app, so you can easily save and recover your data and settings ([#220](https://github.com/haiphucnguyen/askimo/pull/220)) - Made the chat input **auto-resize and manually adjustable**, giving you more room to write longer messages ([#221](https://github.com/haiphucnguyen/askimo/pull/221)) - Fixed anLow1/29/2026
v1.2.12### Summary This release expands RAG capabilities with URL-based knowledge sources, improves chat and project navigation, completes localization coverage for non-English languages, support preferred AI response language and strengthens platform support with improved Linux distribution for both arm64 and x64, as well as added support for macOS Intel. ## What's Changed - Added **URL knowledge source support** to RAG, including UI, indexing, and event handling, allowing web pages to be useLow1/26/2026
v1.2.11## What's Changed * chore(licensing): update license by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/211 **Full Changelog**: https://github.com/haiphucnguyen/askimo/compare/v1.2.10...v1.2.11Low1/19/2026
v1.2.10### Summary This release supports **vision support**, gives users finer control over **response sampling and caching**, and makes chat interactions more intutive. ## What's Changed - Added image-aware user messages with proper cache invalidation, improving vision-related chat accuracy ([#207](https://github.com/haiphucnguyen/askimo/pull/207)) - Added sampling controls and a cache invalidation dialog, giving users more control over response behavior ([#208](https://github.com/haiphucnguLow1/18/2026
v1.2.9### Summary This release improves **UI stability**, makes **model configuration clearer**, and strengthens the **RAG indexing architecture** for better extensibility and reliability. ## What's Changed - Fixed several **minor UI issues** to improve overall stability and polish ([#202](https://github.com/haiphucnguyen/askimo/pull/202)) ([#205](https://github.com/haiphucnguyen/askimo/pull/205)) - Refactored **model configuration** to use a nested `models` structure for clearer organizatioLow1/14/2026
v1.2.8### Summary This release adds support for **Mermaid charts**, makes it easier to **retry chat responses**, and introduces **more shortcuts and view actions** to improve navigation across sessions and projects. ## What's Changed - Replaced legacy chart renderers with **Mermaid-based chart rendering**, improving consistency and maintainability ([#198](https://github.com/haiphucnguyen/askimo/pull/198)) - Added a **regenerate response flow** and **error event handling** in chat to improve Low1/12/2026
v1.2.7### Summary This release adds **telemetry and session metrics** to help better understand how Askimo is used ## What's Changed - Added **session metrics and telemetry integration**, enabling better insight into session behavior and usage patterns ([#197](https://github.com/haiphucnguyen/askimo/pull/197)) **Full Changelog**: https://github.com/haiphucnguyen/askimo/compare/v1.2.6...v1.2.7Low1/7/2026
v1.2.6### Summary This release improves **RAG accuracy**, gives users clearer control over **conversation style**, and allows running AI models **without requiring tool support**, making chats more flexible and predictable. ## What's Changed - Added **RAG support for files**, allowing documents to be indexed and used directly in retrieval-based answers ([#193](https://github.com/haiphucnguyen/askimo/pull/193)) - Refactored the **chat session service** to use execution mode from the app conteLow1/6/2026
v1.2.5### Summary This release improves **startup reliability and execution flow** and allows Askimo to **use content from URLs directly in chat** for more informed responses. ## What's Changed - Overhauled **AppContext initialization** and **execution mode handling** to improve startup reliability and execution flow ([#190](https://github.com/haiphucnguyen/askimo/pull/190)) - Made several **minor improvements** across documentation, CLI initialization, and test setup for better developer expeLow1/3/2026
v1.2.4### Summary This release makes it much easier to **search across your chat history** with a new global session search, and adds **built-in chart rendering (8 chart types)** to support chart-related questions with clear visual answers, and other small improvements ## What's Changed - Migrated **AppContextFactory** to a singleton-based **AppContext** and updated the **RAG retriever API** for a simpler and more consistent architecture ([#186](https://github.com/haiphucnguyen/askimo/pull/18Low1/2/2026
v1.2.3### Summary This release improves the **usability and transparency of RAG**, making citations easier to understand, files easier to access, and project-based indexing more reliable across chat sessions. ## What's Changed - Added a setting to **show absolute file paths in RAG citations**, making it easier to locate referenced files ([#182](https://github.com/haiphucnguyen/askimo/pull/182)) - Improved **RAG indexing and project session integration** for better consistency and reliability (Low12/30/2025
v1.2.2### Summary This release improves the **stability and accuracy of RAG**, enhances search quality across large knowledge bases, and raises overall AI response quality by adapting the context window size to the capabilities of different AI models. ## What's Changed - Added **advanced RAG configuration** and **embedding model settings** to give more control over indexing and retrieval ([#179](https://github.com/haiphucnguyen/askimo/pull/179)) - Introduced **adaptive context window sizing*Low12/30/2025
v1.2.1## What's Changed - Refactored the chat message builder to improve structure and reliability [#176](https://github.com/haiphucnguyen/askimo/pull/176) - RAG indexing now emits indexing events and enriches chunks with line-level metadata, improving traceability [#177](https://github.com/haiphucnguyen/askimo/pull/177) - Hybrid retrieval and citation behavior are now configurable, giving more control over RAG responses [#178](https://github.com/haiphucnguyen/askimo/pull/178) *Low12/28/2025
v1.2.0This release focuses on improving project-based workflows and overall stability. It introduces project-scoped chat sessions with Lucene-powered RAG, refines session organization and indexing behavior, and includes several usability and reliability improvements. macOS builds are now properly signed and notarized to provide a smoother and more trustworthy installation experience. --- ## 📁 Project-Based Sessions & RAG - Added **project-based chat sessions**, allowing conversations to be sLow12/26/2025
v1.1.4This update improves chat reliability and memory handling by fixing attachment and message edit behavior, enhancing chat memory with support for Excel file types, and adding robust exception handling for failed chat messages to ensure a more stable and predictable user experience. * Fix attachment handling and message editing to ensure chat updates behave correctly. [#152](https://github.com/haiphucnguyen/askimo/pull/152) * Improve chat memory with enhanced handling and added support for ELow12/12/2025
v1.1.3🚀 What's New * 📎 File Attachments & Enhanced Chat Model Add persisted file attachments and DTO-based messages for improved reliability and structured chat handling [#149](https://github.com/haiphucnguyen/askimo/pull/149) * 🧠 Token-Aware Chat Memory Introduce token-aware session memory, enabling smarter context retention and efficient prompt management [ #150](https://github.com/haiphucnguyen/askimo/pull/150) * 🧪 Improved Test Coverage Strengthened summarization and paginatiLow12/10/2025
v1.1.2🚀 What's New 🧮 LaTeX Support & Chat Enhancements Add LaTeX rendering and feedback entrypoint in the desktop chat interface — [#146](https://github.com/haiphucnguyen/askimo/pull/146) ⚙️ Improved Settings Navigation Introduce a sidebar-based settings layout for clearer and more intuitive configuration — [#147](https://github.com/haiphucnguyen/askimo/pull/147) 💬 Personalization & Exporting Add customizable chat avatars and session export to enhance user personalization and workLow12/7/2025
v1.1.1## Askimo Application ### Installation For installation instructions, please visit: - **Desktop**: https://askimo.chat/docs/desktop/installation/ - **CLI**: https://askimo.chat/docs/cli/installation/ ### Checksums Verify your download using the SHA256SUMS.txt file. 🚀 What’s New 🔧 Logging Improvements Added developer event log controls and safe configuration logging, making debugging easier while protecting sensitive data. ([#144](https://github.com/haiphucnguyen/askimo/Low12/5/2025
v1.1.0# 🚀 Askimo v1.1.0 — Localization, Multi-Chat, and Local AI Support This release introduces multi-language support, LocalAI/LM Studio integrations, multi-chat session management, and overall enhancements across both the CLI and Desktop versions of Askimo. --- ## ✨ Highlights ### 🌍 Localization & Internationalization - Add localization support and language settings — [#118](https://github.com/haiphucnguyen/askimo/pull/118) - Fix localization issues — [#120](https://github.com/haiLow12/4/2025
v1.0.0### Installation For installation instructions, please visit: - **Desktop**: https://askimo.chat/docs/desktop/installation/ - **CLI**: https://askimo.chat/docs/cli/installation/ ### Checksums Verify your download using the SHA256SUMS.txt file. ## Askimo Release Notes This release delivers a major upgrade to the Askimo chat and desktop experience, with new workflow features, stronger customization, and improved CLI and infrastructure support. ## ✨ Highlights - Organize Low11/23/2025
v0.2.0This release marks a major milestone for Askimo, introducing powerful new features, improved CLI experience, and enhanced integration capabilities. ## Key improvements include: * Dynamic CLI command framework with multi-line input and pagination * Integrated RAG (Retrieval-Augmented Generation) indexing with PostgreSQL and file watchers * Recipe system overhaul with external arguments and YAML support * Session intelligence with context summarization * Anthropic Claude providerLow11/10/2025
v0.1.2## What's Changed * Gemini support by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/20 **Full Changelog**: https://github.com/haiphucnguyen/askimo/compare/v0.1.1...v0.1.2Low8/25/2025
v0.1.1Support users install askimo via Homebrew, Scoop and Docker **Full Changelog**: https://github.com/haiphucnguyen/askimo/compare/v0.1.0...v0.1.1Low8/25/2025
v0.1.0## What's Changed * Add license headers by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/16 * Update license file and link by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/17 * Fix issue that ollama models can not call functions with langchain4j by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/19 * Allow user can install askimo via homebrew **Full Changelog**: https://github.com/haiphucnguyen/askimo/compare/v0.0.3...v0.1.0Low8/24/2025
v0.0.3## What's Changed * Local file tools and terminal rich text renderer by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/13 * Support X AI by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/14 * Update README and minor bug fixes by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/15 **Full Changelog**: https://github.com/haiphucnguyen/askimo/compare/v0.0.2...v0.0.3Low8/23/2025
v0.0.2## What's Changed * Add the first web mode for Askimo by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/1 * Refactor askimo packages into core, cli and web by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/2 * Simplify the AI service using langchain4j AIServices, and implement the simple web chat by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/3 * Fix Graalvm proxy issue by @haiphucnguyen in https://github.com/haiphucnguyen/askimo/pull/4 * ILow8/18/2025
v0.0.1Askimo is now available as an open-source command-line AI assistant! 🎉 This first release includes everything you need to start chatting with AI models directly from your terminal: ## Features * Interactive REPL — Start a chat session with streaming responses. * Pipe & File Input — Use Askimo in shell pipelines: ``` cat logs.txt | askimo "Summarize the key issues" ``` * Multi-provider support — Works with OpenAI, Ollama (extensible for more). * Session-based config — API keysLow8/16/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

GeminiWatermarkRemover🌊 Remove watermarks from Gemini AI images quickly and effortlessly with a browser-based tool that requires no server dependencies.main@2026-06-07
CoWork-OSOperating System for your personal AI Agents with Security-first approach. Multi-channel (WhatsApp, Telegram, Discord, Slack, iMessage), multi-provider (Claude, GPT, Gemini, Ollama), fully self-hostedv0.5.48
py-gptDesktop AI Assistant powered by GPT-5, GPT-4, o1, o3, Gemini, Claude, Ollama, DeepSeek, Perplexity, Grok, Bielik, chat, vision, voice, RAG, image and video generation, agents, tools, MCP, plugins, spev2.7.12
claude-blocker🛡️ Block distracting websites when Claude Code is in use, ensuring focused work sessions and minimizing interruptions.main@2026-06-07
claude-team-mcp🤖 Orchestrate AI models like GPT and Claude for seamless collaboration in multi-agent development tasks with the Claude Team MCP Server.master@2026-06-07

More in MCP Servers

PlanExeCreate a plan from a description in minutes
automagik-genieSelf-evolving AI agent orchestration framework with Model Context Protocol support
agentroveYour own Claude Code UI, sandbox, in-browser VS Code, terminal, multi-provider support (Anthropic, OpenAI, GitHub Copilot, OpenRouter), custom skills, and MCP servers.
ProxmoxMCP-PlusEnhanced Proxmox MCP server with advanced virtualization management and full OpenAPI integration.