| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-03-09 | 13.7 kB | |
| v1.9.1 source code.tar.gz | 2026-03-09 | 85.1 MB | |
| v1.9.1 source code.zip | 2026-03-09 | 85.4 MB | |
| Totals: 3 Items | 170.5 MB | 0 | |
AGiXT v1.9.1 Release Notes
Release Date: March 9, 2026 Commits since v1.9.0: 131 Diff: 122 files changed, 57,084 insertions, 4,406 deletions
AGiXT v1.9.1 is a major feature release that introduces deployable multi-platform bots, a collaborative group chat system, a modernized authentication flow, 15+ new extensions, and significant infrastructure improvements across the platform.
Highlights
- Deployable Bots across 12 messaging and communication platforms
- Collaborative Chats with group conversations, channels, threads, reactions, and @mention agent routing
- Authentication Overhaul with username/password login, optional MFA, and SSO preservation
- 15+ New Extensions including Notion, Perplexity, Spotify, Home Assistant, Reddit, and more
- Academic Research abilities for searching arXiv, Semantic Scholar, and PubMed
- OAuth Refactor splitting monolithic providers into granular, service-specific extensions
- Thinking Model Support with improved handling of reasoning/thinking token patterns
New Features
Deployable Multi-Platform Bots (#1657)
AGiXT now includes a full bot deployment system allowing companies to deploy AI-powered bots across 12 messaging and communication platforms with multi-tenant support:
| Platform | Description |
|---|---|
| Discord | Full Discord bot with slash commands and user linking |
| Telegram | BotFather-compatible bot with user verification |
| Business API integration with phone-based user linking | |
| Microsoft Teams | Teams bot framework integration |
| Slack | Workspace bot with event-driven messaging |
| Facebook Messenger | Page-based bot with webhook handling |
| X (Twitter) | Direct message and mention-based bot |
| GitHub | Issue and PR comment-based bot |
| Google Email | Gmail-based conversational bot |
| Microsoft Email | Outlook-based conversational bot |
| SendGrid Email | Transactional email bot via SendGrid |
| Twilio SMS | SMS-based conversational bot |
Key capabilities:
- Multi-tenant architecture — each company configures its own bot credentials and tokens
- Central Bot Registry (
BotManagerRegistry) for lifecycle management (start, stop, restart) - User linking — platform users link to AGiXT accounts for personalized context
- Webhook endpoints for incoming messages from each platform
- Company-scoped bot management API endpoints for full CRUD operations
- Bot conversations route to AGiXT agents with per-user context preservation
Collaborative Group Chat System (#1665)
A Discord-like group chat experience built directly into AGiXT with real-time messaging:
- Conversation types:
group,dm,threadin addition to standard conversations - Channel categories for organizing group conversations
- Threaded replies with parent message linking
- @mention agent routing — mention
@AgentNamein a group chat to route the message to a specific agent - Emoji reactions on messages with per-user toggle tracking
- Message pinning for important messages in conversations
- Sender tracking — every message records the sender with user info included in responses
- Company and user avatars with dedicated upload/retrieval endpoints
- WebSocket enhancements for real-time group chat with sender identification
New database models: ConversationParticipant, MessageReaction, with new fields on Conversation (type, company_id, parent_id, category) and Message (sender_user_id).
Authentication System Overhaul (#1646)
Replaced the magic-link-only authentication with a traditional username/password system while preserving backward compatibility:
- Password-based registration and login with argon2 password hashing
- Optional MFA (TOTP) via pyotp for two-factor authentication
- User profile fields — timezone and phone number captured at registration
- Terms of Service acceptance tracking during signup
- Magic link login preserved as an alternative authentication method
- Onboarding flow with flags to guide new users through initial setup
- Database migrations for new User model columns (password hash, MFA secret, phone, timezone, ToS)
- Updated endpoint tests for the new authentication flow
OAuth Provider Refactor (#1650)
Split monolithic OAuth providers into granular, service-specific extensions for better permission scoping:
Google:
google_sso.py— Authentication onlygoogle_calendar.py— Calendar managementgoogle_email.py— Gmail integrationgoogle_marketing.py— Google Ads and marketing
Microsoft:
microsoft_sso.py— Authentication onlymicrosoft_calendar.py— Outlook calendarmicrosoft_email.py— Outlook emailmicrosoft_onedrive.py— OneDrive file managementmicrosoft_sharepoint.py— SharePoint integration
Social/Identity:
github_sso.py,linkedin_sso.py,meta_sso.py
Each extension manages its own OAuth scopes and token lifecycle, with an SSO_ONLY flag distinguishing authentication-only extensions from full-featured ones.
New Extensions
Notion (#1671)
Full Notion workspace integration with OAuth:
- Pages: Search, create, update properties, archive, restore, and read content (recursive block tree)
- Databases: List, query with filters/sorts, create, and update schemas
- Blocks: CRUD operations on Notion blocks with rich text parsing
- Comments: Get and add comments on pages and discussion threads
- Users: List workspace users and get bot user info
- Block-to-markdown formatting for seamless content extraction
Perplexity (#1669)
Real-time web-grounded AI search and research via Perplexity's APIs:
- Agent API — query AI models (OpenAI, Anthropic, Google, xAI, Perplexity Sonar) with integrated web search
- Search API — structured web search results with domain filtering, language targeting, and recency controls
- Presets:
fast-search,pro-search,deep-research,advanced-deep-research - 17+ models across 5 providers with citation-backed responses
Ten Additional Extensions (#1672)
| Extension | Capabilities |
|---|---|
| Airtable | Base/table CRUD, record queries, field management |
| Dropbox | File upload/download, folder management, sharing, search |
| Home Assistant | Smart home control — lights, switches, climate, scenes, automations |
| Obsidian | Vault management, note CRUD, search, tags, link exploration |
| Browse subreddits, search posts/comments, submit, vote | |
| Spotify | Playback control, search, playlists, library, recommendations |
| Todoist | Task/project CRUD, labels, due dates, priorities |
| Trello | Board/list/card management, labels, members, checklists |
| YouTube | Video search, channel info, playlist management, transcript retrieval |
| Zapier Webhooks | Trigger Zapier zaps via webhooks for workflow automation |
GitHub Copilot Improvement (#1668)
- Fall back to user input when the prompt is empty in the Ask GitHub Copilot command
Academic Research Abilities (#1658)
Four new research commands added to essential abilities:
| Command | Source | Description |
|---|---|---|
search_arxiv |
arXiv.org | Search physics, math, CS, and biology preprints with metadata saved as markdown |
search_semantic_scholar |
Semantic Scholar | Find papers with citation counts, influential citations, and open access PDF links |
search_pubmed_central |
PubMed Central | Search open access biomedical and life sciences full-text articles |
download_paper_pdf |
Any URL | Download PDFs with optional conversion to markdown via pdfplumber |
All commands support save_to_workspace for organizing research files into the agent's workspace.
Domain Availability Check (#1655)
- New
check_domain_availabilityfunction in essential abilities for checking domain registration status
Discord Bot Integration (#1647)
- Multi-tenant Discord bot framework with per-company bot token management
- User linking between Discord accounts and AGiXT users
- Webhook-based message routing to AGiXT agents
Improvements
Agent Execution
- Continuation loop improvements — better break points, exit condition handling, and increased execution limits for complex multi-step tasks
- Command selection caching for faster repeated command lookups
- Improved execution context handling across continuation loops
- Stop token support for cleaner model output termination
- Overlapping inference cleanup to prevent duplicate processing
Streaming & Output
- Thinking model support — proper handling of
<think>,<thinking>, and other reasoning token patterns - Thinking stream yielding — stream thinking tokens to clients in real-time
- Improved time to first token for faster response initiation
- Better streaming output formatting and delivery
- Analysis output improvements for structured result presentation
Infrastructure
- Health check and notification endpoints (#1663) — user notification management and health monitoring improvements
- Feedback endpoint (
POST /v1/feedback) — authenticated bug reports, feature requests, and general feedback routed to Discord with priority-based color coding - Extension cache improvements with hub-aware caching and UUID conversion
- Pricing info caching for faster tier calculations
- Async database seeding for faster startup
- URL safety checks and normalization across the platform
- Server config improvements for better deployment flexibility
Authentication & Authorization
- User reactivation (#1667) — automatically reactivate users when credits are issued to their company
- SSO password generation — randomly generate passwords for SSO-created accounts
- Trial credit improvements — better trial credit issuing and domain tracking
- OAuth client_id detection fix for shared-credential extensions
- Provider hierarchy improvements for cleaner authentication fallback chains
Extensions Framework
- Extension context API — new
get_extension_contextfor richer extension metadata - Categories cleanup and improved extension categorization
- Extension settings exposed as named parameters for WhatsApp, Telegram, Raydium, and Solana wallet
- Web search command fix (#1651) — improved reliability and result handling
- Essential abilities cleanup (#1653) — reduced code duplication and improved maintainability
Billing & Payments
- Stripe billing expansion with expanded payment service capabilities
- Company extension command and setting management via new database models
- Personal Access Tokens with per-agent and per-company scoping
Other
- Vision work improvements for better image processing
- File handling improvements in workspace operations
- WebSocket ID tracking for connection management
- Audio diarization handling with speaker persistence in completions
- Frontend chat redirect —
/chatredirect to APP_URI for tray icon chat button - Team agent modes for multi-agent collaboration
- Message splitting improvements for long responses
- Dependency updates across requirements files
- Docker configuration updates
Bug Fixes
- Fixed agent continuation loop exit issues causing premature termination
- Fixed double execution of certain operations
- Fixed web search command reliability issues
- Fixed extension cache invalidation with hub-based extensions
- Fixed OAuth client_id detection for shared-credential extensions
- Fixed import ordering and dependency issues
- Fixed null company ID handling in various endpoints
- Fixed code injection vulnerabilities in provider configuration
- Fixed orphan conversation handling
- Fixed file path handling for folder-based operations
- Fixed decryption handling for encrypted extension settings
- Fixed address handling in wallet operations
- Fixed CodeQL security warnings
Migration Notes
- Database migrations are included for new models and fields — they will be applied automatically on server restart
- New dependencies added:
argon2-cffi,pyotp(for MFA),pdfplumber(for PDF processing), and additional packages in docker-requirements.txt - OAuth extensions — existing OAuth configurations will continue to work; new granular extensions can be enabled per-service for finer permission control
- Bot deployment — requires platform-specific API keys/tokens configured per company through the management API