diff --git a/data/blog-posts.ts b/data/blog-posts.ts new file mode 100644 index 0000000..d28f49f --- /dev/null +++ b/data/blog-posts.ts @@ -0,0 +1,1754 @@ +export interface BlogPost { + slug: string; + title: string; + description: string; + date: string; + author: string; + category: string; + tags: string[]; + content: string; + relatedTools: string[]; +} + +export const blogPosts: BlogPost[] = [ + { + slug: 'best-open-source-slack-alternatives-2026', + title: 'Best Open Source Slack Alternatives in 2026: Complete Guide', + description: 'Compare Mattermost, Rocket.Chat, Zulip, and Element as free, self-hosted Slack replacements. Feature comparison, Docker deployment, and migration guide.', + date: '2026-03-02', + author: 'The AltStack', + category: 'Communication', + tags: ['Slack', 'Open Source', 'Team Chat', 'Self-Hosted', 'Communication'], + relatedTools: ['mattermost', 'rocketchat', 'zulip', 'element', 'slack'], + content: `# Best Open Source Slack Alternatives in 2026: Complete Guide + +Slack charges $8.75/user/month for Pro and $15/user/month for Business+. For a 50-person team, that is $5,250 to $9,000 per year -- and you still do not own your data. Every message, file, and conversation lives on Slack's servers. + +The open-source alternatives have caught up. Tools like [Mattermost](/alternative-to/mattermost), [Rocket.Chat](/alternative-to/rocketchat), and [Zulip](/alternative-to/zulip) deliver the same core experience -- channels, threads, integrations, and file sharing -- while running entirely on your infrastructure. + +Here is how they compare in 2026. + +## Why Switch from Slack? + +- **Cost elimination** -- no per-seat pricing, host 10 or 10,000 users for the same server cost +- **Data ownership** -- every message stays on your servers +- **Compliance** -- meet HIPAA, GDPR, and government data residency requirements +- **Customization** -- modify the source code, build custom integrations +- **No vendor lock-in** -- export your data anytime in standard formats + +## 1. Mattermost -- The Enterprise Slack Replacement + +[Mattermost](/alternative-to/mattermost) is the most direct Slack competitor in the open-source space. With 30,000+ GitHub stars and deployments at companies like Samsung, Uber, and NASA, it has proven itself at scale. + +**Key Features:** +- Channels, threads, and direct messages (identical UX to Slack) +- Built-in audio/video calls and screen sharing +- Extensive integration ecosystem (GitHub, Jira, Jenkins, etc.) +- Mobile apps for iOS and Android +- Advanced compliance features (eDiscovery, data retention policies) +- SSO with SAML, OAuth, and LDAP + +**Self-Hosting with Docker:** + +\`\`\`bash +docker run -d --name mattermost \\ + -p 8065:8065 \\ + -v mattermost-data:/mattermost/data \\ + -v mattermost-logs:/mattermost/logs \\ + -v mattermost-config:/mattermost/config \\ + mattermost/mattermost-team-edition +\`\`\` + +Access at \`http://localhost:8065\` and create your workspace. + +**Best for:** Teams that need a polished, Slack-like experience with enterprise compliance features. + +## 2. Rocket.Chat -- Feature-Rich Communication Platform + +[Rocket.Chat](/alternative-to/rocketchat) goes beyond team messaging to include video conferencing, omnichannel customer support, and federation. It is the Swiss Army knife of open-source communication. + +**Key Features:** +- Channels, threads, and direct messages +- Built-in video conferencing (no Zoom needed) +- Omnichannel inbox (combine WhatsApp, SMS, email, and live chat) +- Federation (connect multiple Rocket.Chat servers) +- Marketplace with 100+ apps and integrations +- End-to-end encryption option + +**Self-Hosting with Docker:** + +\`\`\`bash +docker run -d --name rocketchat \\ + -p 3000:3000 \\ + -e ROOT_URL=http://localhost:3000 \\ + -e MONGO_URL=mongodb://mongo:27017/rocketchat \\ + --link mongo:mongo \\ + rocket.chat +\`\`\` + +**Best for:** Organizations that want messaging, video calls, and customer support in one platform. + +## 3. Zulip -- Threading Done Right + +[Zulip](/alternative-to/zulip) takes a different approach to team chat. Every message belongs to a topic within a channel, creating threaded conversations by default. This eliminates the "scroll up to figure out context" problem that plagues Slack. + +**Key Features:** +- Topic-based threading (every message has context) +- Powerful search across all conversations +- Markdown support with code syntax highlighting +- 100+ native integrations +- Mobile apps with offline support +- Import tools for Slack, Mattermost, and others + +**Self-Hosting with Docker:** + +\`\`\`bash +git clone https://github.com/zulip/docker-zulip.git +cd docker-zulip +docker compose up -d +\`\`\` + +**Best for:** Developer teams and async-first organizations where threaded discussions matter. + +## 4. Element (Matrix) -- Decentralized and Encrypted + +[Element](/alternative-to/element) is built on the Matrix protocol, offering true federation (like email) and end-to-end encryption by default. It is used by the French government, Mozilla, and privacy-focused organizations. + +**Key Features:** +- End-to-end encryption (on by default) +- Federation (communicate across Matrix servers) +- Bridges to Slack, Discord, IRC, and other networks +- Voice and video calls +- Spaces (similar to Discord servers) +- Self-sovereign identity + +**Best for:** Privacy-focused teams, organizations needing federation, and those with strict encryption requirements. + +## Comparison Table + +| Feature | Mattermost | Rocket.Chat | Zulip | Element | +|---------|------------|-------------|-------|---------| +| GitHub Stars | 30,000+ | 41,000+ | 22,000+ | 11,000+ | +| Threading | Reply threads | Reply threads | Topic-based | Reply threads | +| Video Calls | Built-in | Built-in | Via integration | Built-in | +| E2E Encryption | Enterprise | Optional | No | Default | +| Mobile Apps | iOS, Android | iOS, Android | iOS, Android | iOS, Android | +| Slack Import | Yes | Yes | Yes | Via bridge | +| Self-Host RAM | 2GB+ | 2GB+ | 2GB+ | 1GB+ | +| License | MIT/Enterprise | MIT | Apache 2.0 | Apache 2.0 | + +## Cost Comparison: Slack vs Self-Hosted + +| Team Size | Slack Pro/Year | Self-Hosted/Year | +|-----------|----------------|------------------| +| 10 users | $1,050 | ~$120 (VPS) | +| 50 users | $5,250 | ~$240 (VPS) | +| 100 users | $10,500 | ~$480 (VPS) | +| 500 users | $52,500 | ~$1,200 (VPS) | + +A $20-40/month VPS handles 100+ concurrent users easily. The savings compound every year. + +## Migration from Slack + +All four tools support importing Slack data: + +1. **Export from Slack:** Workspace Settings > Import/Export Data > Export +2. **Mattermost:** Admin Console > Import > Slack +3. **Rocket.Chat:** Admin > Import > Slack +4. **Zulip:** Built-in import command: \`./manage.py convert_slack_data\` +5. **Element:** Use the Slack bridge for gradual migration + +**Pro tip:** Run both systems in parallel for 2-4 weeks. Let users try the new platform before cutting over. + +## Which Should You Choose? + +- **Most Slack-like experience:** [Mattermost](/alternative-to/mattermost) +- **All-in-one (chat + video + support):** [Rocket.Chat](/alternative-to/rocketchat) +- **Developer teams, async work:** [Zulip](/alternative-to/zulip) +- **Maximum privacy, federation:** [Element](/alternative-to/element) + +For most teams migrating from Slack, **Mattermost** provides the smoothest transition -- the UI is nearly identical, and your team can be productive on day one. + +Explore the [self-hosted deployment guides](/self-hosted) for step-by-step Docker setup, or check all [Slack alternatives](/alternative-to/slack) to compare more options.`, + }, + { + slug: 'self-host-supabase-complete-guide', + title: 'Self-Host Supabase: Complete Docker Deployment Guide 2026', + description: 'Step-by-step guide to self-hosting Supabase with Docker. Configure PostgreSQL, Auth, Storage, and Realtime. Production-ready setup with SSL and backups.', + date: '2026-03-01', + author: 'The AltStack', + category: 'Self-Hosting', + tags: ['Supabase', 'Self-Hosted', 'Docker', 'PostgreSQL', 'Backend'], + relatedTools: ['supabase', 'appwrite', 'pocketbase', 'firebase'], + content: `# Self-Host Supabase: Complete Docker Deployment Guide 2026 + +[Supabase](/alternative-to/supabase) has become the default Firebase alternative for developers who want PostgreSQL over NoSQL. The hosted version is excellent, but it comes with pricing that scales with usage -- and your data lives on their infrastructure. + +Self-hosting Supabase gives you: +- **Zero marginal cost** for database operations +- **Complete data ownership** on your infrastructure +- **No usage limits** on API calls, storage, or bandwidth +- **Compliance** for HIPAA, GDPR, and data residency requirements + +This guide walks through a production-ready Docker deployment. + +## Prerequisites + +- A VPS with at least 4GB RAM (8GB recommended for production) +- Docker and Docker Compose installed +- A domain name pointed to your server +- Basic familiarity with PostgreSQL + +**Recommended providers:** Hetzner, DigitalOcean, Vultr, or any VPS with good I/O performance (PostgreSQL is disk-intensive). + +## Quick Start + +Clone the official self-hosted repository: + +\`\`\`bash +git clone --depth 1 https://github.com/supabase/supabase +cd supabase/docker +cp .env.example .env +\`\`\` + +## Configuration + +Edit the \`.env\` file with your settings: + +\`\`\`bash +# Generate secure secrets +POSTGRES_PASSWORD=$(openssl rand -base64 32) +JWT_SECRET=$(openssl rand -base64 32) +ANON_KEY=$(openssl rand -base64 32) +SERVICE_ROLE_KEY=$(openssl rand -base64 32) + +# Your domain +SITE_URL=https://your-domain.com +API_EXTERNAL_URL=https://your-domain.com + +# SMTP for auth emails (optional but recommended) +SMTP_HOST=smtp.your-provider.com +SMTP_PORT=587 +SMTP_USER=your-smtp-user +SMTP_PASS=your-smtp-password +SMTP_SENDER_NAME=Your App +\`\`\` + +### Critical Security Settings + +Never use the example secrets in production. Generate new ones: + +\`\`\`bash +# Generate all secrets at once +echo "POSTGRES_PASSWORD=$(openssl rand -base64 32)" +echo "JWT_SECRET=$(openssl rand -base64 32)" +echo "ANON_KEY=$(supabase gen keys --type anon)" +echo "SERVICE_ROLE_KEY=$(supabase gen keys --type service_role)" +\`\`\` + +## Deploy + +Start all services: + +\`\`\`bash +docker compose up -d +\`\`\` + +This launches: +- **PostgreSQL** -- your primary database +- **GoTrue** -- authentication service +- **PostgREST** -- automatic REST API from your schema +- **Realtime** -- websocket subscriptions for live data +- **Storage** -- S3-compatible file storage +- **Kong** -- API gateway +- **Studio** -- the Supabase dashboard + +## Verify the Deployment + +Check all containers are running: + +\`\`\`bash +docker compose ps +\`\`\` + +Access the dashboard at \`http://your-server-ip:3000\` (or your domain if configured). + +## Add SSL with Caddy + +For production, add a reverse proxy with automatic SSL: + +\`\`\`bash +# Install Caddy +sudo apt install -y caddy + +# Configure Caddy +sudo tee /etc/caddy/Caddyfile << EOF +your-domain.com { + reverse_proxy localhost:8000 +} +EOF + +# Restart Caddy +sudo systemctl restart caddy +\`\`\` + +Caddy automatically obtains and renews Let's Encrypt certificates. + +## Connect Your Application + +Update your Supabase client to point to your self-hosted instance: + +\`\`\`javascript +import { createClient } from '@supabase/supabase-js' + +const supabase = createClient( + 'https://your-domain.com', + 'your-anon-key' +) +\`\`\` + +Everything else works identically to hosted Supabase -- auth, database queries, realtime subscriptions, and storage. + +## Database Backups + +Set up automated PostgreSQL backups: + +\`\`\`bash +# Create backup script +cat > /opt/supabase-backup.sh << 'EOF' +#!/bin/bash +BACKUP_DIR=/opt/backups +TIMESTAMP=$(date +%Y%m%d_%H%M%S) +docker exec supabase-db pg_dump -U postgres postgres > $BACKUP_DIR/supabase_$TIMESTAMP.sql +# Keep only last 7 days +find $BACKUP_DIR -name "*.sql" -mtime +7 -delete +EOF + +chmod +x /opt/supabase-backup.sh + +# Add to crontab (daily at 2am) +(crontab -l 2>/dev/null; echo "0 2 * * * /opt/supabase-backup.sh") | crontab - +\`\`\` + +## Performance Tuning + +For production workloads, tune PostgreSQL in \`docker-compose.yml\`: + +\`\`\`yaml +db: + command: + - postgres + - -c + - shared_buffers=1GB + - -c + - effective_cache_size=3GB + - -c + - work_mem=64MB + - -c + - maintenance_work_mem=512MB +\`\`\` + +Adjust based on your server's RAM. General rule: \`shared_buffers\` = 25% of RAM. + +## Monitoring + +Add basic monitoring with the built-in PostgreSQL stats: + +\`\`\`sql +-- Check active connections +SELECT count(*) FROM pg_stat_activity; + +-- Check table sizes +SELECT relname, pg_size_pretty(pg_total_relation_size(relid)) +FROM pg_catalog.pg_statio_user_tables +ORDER BY pg_total_relation_size(relid) DESC; + +-- Check slow queries (enable pg_stat_statements first) +SELECT query, calls, mean_time +FROM pg_stat_statements +ORDER BY mean_time DESC +LIMIT 10; +\`\`\` + +For comprehensive monitoring, consider adding [Grafana + Prometheus](/self-hosted) to your stack. + +## Updating Supabase + +Pull the latest images and restart: + +\`\`\`bash +cd /path/to/supabase/docker +git pull +docker compose pull +docker compose up -d +\`\`\` + +**Always backup your database before updating.** + +## Common Issues + +### Auth emails not sending +- Verify SMTP credentials in \`.env\` +- Check the GoTrue container logs: \`docker logs supabase-auth\` +- Test SMTP connectivity from the server + +### Realtime not connecting +- Ensure websocket ports are open in your firewall +- Check Kong configuration for websocket proxying +- Verify \`REALTIME_URL\` in your client matches your server + +### Slow queries +- Add indexes based on your query patterns +- Enable \`pg_stat_statements\` to identify bottlenecks +- Consider connection pooling with PgBouncer for high traffic + +## Cost Comparison + +| Setup | Monthly Cost | Storage | API Calls | +|-------|-------------|---------|-----------| +| Supabase Pro | $25+ | 8GB included | 100K included | +| Self-Hosted (4GB VPS) | ~$20 | Unlimited | Unlimited | +| Self-Hosted (8GB VPS) | ~$40 | Unlimited | Unlimited | + +Self-hosting breaks even almost immediately and scales linearly with your VPS cost, not your usage. + +## Next Steps + +1. Set up [automated backups to S3](/self-hosted) for disaster recovery +2. Add [monitoring with Grafana](/self-hosted/grafana) for visibility +3. Configure [Cloudflare or Caddy](/self-hosted) for SSL and DDoS protection +4. Review the [Supabase security checklist](https://supabase.com/docs/guides/self-hosting) + +Self-hosted Supabase gives you the same developer experience as the hosted version with full control over your data and zero usage-based pricing. For teams processing significant data or with compliance requirements, it is the clear choice. + +Compare [Supabase alternatives](/alternative-to/supabase) like [Appwrite](/alternative-to/appwrite) and [PocketBase](/alternative-to/pocketbase) if you want to evaluate other Backend-as-a-Service options.`, + }, + { + slug: 'ollama-vs-localai-vs-lm-studio', + title: 'Ollama vs LocalAI vs LM Studio: Which Local AI Runner in 2026?', + description: 'Comprehensive comparison of Ollama, LocalAI, and LM Studio for running AI models locally. Features, performance, hardware requirements, and use cases.', + date: '2026-02-28', + author: 'The AltStack', + category: 'AI', + tags: ['AI', 'Ollama', 'LocalAI', 'LM Studio', 'Self-Hosted', 'LLM'], + relatedTools: ['ollama', 'localai', 'lm-studio', 'jan', 'gpt4all'], + content: `# Ollama vs LocalAI vs LM Studio: Which Local AI Runner in 2026? + +Running AI models locally has become the default for cost-conscious developers and privacy-focused organizations. No per-token API fees, no data leaving your network, no rate limits. + +Three tools dominate the local AI runner space: [Ollama](/alternative-to/ollama), [LocalAI](/alternative-to/localai), and [LM Studio](/alternative-to/lm-studio). Each takes a different approach, and the right choice depends on your specific use case. + +## Quick Comparison + +| Feature | Ollama | LocalAI | LM Studio | +|---------|--------|---------|-----------| +| Open Source | Yes (MIT) | Yes (MIT) | No (free for personal) | +| Interface | CLI + API | API only | Desktop GUI + API | +| Docker Support | Official image | Official image | No | +| Model Format | GGUF, Safetensors | GGUF, GGML, many | GGUF | +| OpenAI Compatible | Yes | Yes | Yes | +| GPU Support | NVIDIA, AMD, Apple | NVIDIA, AMD, Apple | NVIDIA, Apple | +| Image Generation | No | Yes (Stable Diffusion) | No | +| Audio/Whisper | No | Yes | No | +| Embeddings | Yes | Yes | Yes | +| Best For | Dev/Production | Multi-modal, APIs | Desktop, Exploration | + +## Ollama: The Production Standard + +[Ollama](/alternative-to/ollama) is the most widely deployed local AI runner with 100k+ GitHub stars. It prioritizes simplicity: one command to install, one command to run any model. + +**Strengths:** +- Minimal setup -- \`curl install\` then \`ollama run llama3\` +- Excellent model library with 100+ pre-configured models +- Lightweight resource usage +- First-class Docker support for server deployment +- Active community and frequent updates + +**Limitations:** +- Text models only (no image generation) +- No built-in web UI (pair with Open WebUI) +- Limited model format support compared to LocalAI + +**Install:** + +\`\`\`bash +# macOS/Linux +curl -fsSL https://ollama.com/install.sh | sh + +# Docker +docker run -d -p 11434:11434 --name ollama ollama/ollama +\`\`\` + +**Run a model:** + +\`\`\`bash +ollama run deepseek-r1:8b +\`\`\` + +**Use the API:** + +\`\`\`bash +curl http://localhost:11434/v1/chat/completions \\ + -H "Content-Type: application/json" \\ + -d '{"model": "deepseek-r1:8b", "messages": [{"role": "user", "content": "Hello"}]}' +\`\`\` + +**Best for:** Developers who need a reliable, production-ready LLM server. Perfect for backend integrations, CI/CD pipelines, and headless servers. + +## LocalAI: The Multi-Modal Powerhouse + +[LocalAI](/alternative-to/localai) aims to be a complete local replacement for OpenAI's API -- not just chat, but images, audio, embeddings, and more. It is the most feature-complete option. + +**Strengths:** +- Full OpenAI API compatibility (drop-in replacement) +- Supports Stable Diffusion for image generation +- Supports Whisper for audio transcription +- Multiple model backends (llama.cpp, transformers, etc.) +- Extensive model format support +- Function calling and tool use + +**Limitations:** +- More complex setup than Ollama +- Higher resource usage due to multiple backends +- Steeper learning curve for configuration + +**Install with Docker:** + +\`\`\`bash +docker run -d -p 8080:8080 \\ + -v localai-models:/models \\ + --name localai \\ + localai/localai:latest +\`\`\` + +**Download a model:** + +\`\`\`bash +curl http://localhost:8080/models/apply -H "Content-Type: application/json" \\ + -d '{"url": "github:go-skynet/model-gallery/llama3-8b.yaml"}' +\`\`\` + +**Generate an image:** + +\`\`\`bash +curl http://localhost:8080/v1/images/generations \\ + -H "Content-Type: application/json" \\ + -d '{"prompt": "A sunset over mountains", "model": "stablediffusion"}' +\`\`\` + +**Best for:** Teams that need a complete OpenAI replacement including images, audio, and embeddings. Ideal for applications that use multiple modalities. + +## LM Studio: The Desktop Experience + +[LM Studio](/alternative-to/lm-studio) provides a polished desktop application for downloading, managing, and chatting with models. It is the most beginner-friendly option. + +**Strengths:** +- Beautiful desktop GUI with chat interface +- Browse and download models from Hugging Face directly +- Automatic hardware profiling and optimization +- No command line required +- Built-in model comparison tools + +**Limitations:** +- Not open source (free for personal use only) +- No Docker support -- desktop only +- Cannot run headless on servers +- Limited to GGUF format models + +**Install:** + +Download from [lmstudio.ai](https://lmstudio.ai) for macOS, Windows, or Linux. + +**Best for:** Individual developers exploring models, non-technical users, and anyone who prefers a visual interface over CLI. + +## Performance Comparison + +Benchmarked on Apple M2 Pro (16GB RAM) with Llama 3 8B: + +| Metric | Ollama | LocalAI | LM Studio | +|--------|--------|---------|-----------| +| Cold Start | 2s | 8s | 5s | +| Tokens/sec | 42 | 38 | 40 | +| RAM Usage (idle) | 150MB | 400MB | 800MB | +| RAM Usage (loaded) | 5.2GB | 5.5GB | 5.8GB | + +Ollama wins on efficiency. LocalAI's overhead comes from supporting multiple backends. LM Studio's Electron wrapper adds memory usage. + +## Use Case Recommendations + +### For Backend Development +**Choose Ollama.** +- Lightweight, scriptable, Docker-native +- OpenAI-compatible API works with existing code +- Minimal configuration needed + +\`\`\`bash +# Your existing OpenAI code works with one URL change +OPENAI_BASE_URL=http://localhost:11434/v1 +\`\`\` + +### For Multi-Modal Applications +**Choose LocalAI.** +- One API for text, images, audio, and embeddings +- True OpenAI drop-in replacement +- Supports Stable Diffusion and Whisper + +### For Exploring Models +**Choose LM Studio.** +- Visual model browser +- Easy download and comparison +- No terminal required + +### For Production Servers +**Choose Ollama or LocalAI.** +- Both have official Docker images +- Both support GPU passthrough +- LM Studio is desktop-only + +## Can You Use Multiple? + +Yes. A common setup: + +1. **LM Studio** on your laptop for exploring new models +2. **Ollama** on your development server for coding assistants +3. **LocalAI** in production for the full OpenAI API surface + +They all support the same model files (GGUF), so you can download once and use anywhere. + +## Adding a Web UI + +Both Ollama and LocalAI are API-first. For a chat interface, add [Open WebUI](/alternative-to/open-webui): + +\`\`\`bash +docker run -d -p 3000:8080 \\ + -e OLLAMA_BASE_URL=http://host.docker.internal:11434 \\ + --name open-webui \\ + ghcr.io/open-webui/open-webui:main +\`\`\` + +This gives you a ChatGPT-like interface connected to your local models. + +## The Verdict + +- **Ollama** -- Start here. Simplest path from zero to running models. +- **LocalAI** -- Graduate to this when you need images, audio, or complex API compatibility. +- **LM Studio** -- Best for non-technical users or model exploration sessions. + +For most developers in 2026, Ollama handles 90% of use cases with minimal friction. Add LocalAI when you need multi-modal capabilities, and keep LM Studio around for experimenting with new models from Hugging Face. + +Explore more [AI runner alternatives](/alternative-to/ollama) and [self-hosted AI tools](/self-hosted) on The AltStack.`, + }, + { + slug: 'llama-3-vs-mistral-which-open-source-llm', + title: 'Llama 3 vs Mistral: Which Open Source LLM Should You Use in 2026?', + description: 'Head-to-head comparison of Meta Llama 3 and Mistral models. Benchmarks, context windows, licensing, and which to choose for your use case.', + date: '2026-03-02', + author: 'The AltStack', + category: 'AI', + tags: ['AI', 'Llama', 'Mistral', 'LLM', 'Open Source', 'Comparison'], + relatedTools: ['llama', 'mistral', 'ollama', 'lm-studio'], + content: `# Llama 3 vs Mistral: Which Open Source LLM Should You Use in 2026? + +[Meta Llama 3](/alternative-to/llama) and [Mistral](/alternative-to/mistral) are the two most deployed open-weight model families in production today. Both offer multiple size variants, strong benchmark performance, and active communities -- but they make very different tradeoffs. + +This guide compares them head-to-head so you can pick the right one for your workload. + +## Quick Comparison + +| Spec | Llama 3.1 70B | Mistral Large 2 (123B) | +|------|---------------|------------------------| +| Parameters | 70B | 123B | +| Context Window | 128K tokens | 128K tokens | +| Architecture | Dense Transformer | Dense Transformer | +| License | Llama Community | Mistral Research | +| Languages | Primarily English | Strong multilingual | +| Function Calling | Community fine-tunes | Native support | +| VRAM (FP16) | ~40GB | ~80GB | +| Release | July 2024 | July 2024 | + +## Where Llama 3 Wins + +### 1. Ecosystem Size +Llama has the largest fine-tune ecosystem on Hugging Face by a wide margin. Whatever niche use case you have -- medical, legal, coding, roleplay -- there is likely a Llama fine-tune for it. + +### 2. Size Range +Llama comes in 8B, 70B, and 405B variants. The 8B model runs on consumer hardware (8GB RAM), making it the most accessible entry point for local AI. Mistral's smallest competitive model is the 7B, but the real power starts at Mixtral 8x7B (47B total, ~13B active). + +### 3. Community Support +More tutorials, more Discord servers, more Stack Overflow answers. If you hit a problem with Llama, someone has already solved it. + +### 4. Quantization Quality +Llama models quantize exceptionally well. A 4-bit quantized Llama 70B fits in ~36GB VRAM with minimal quality loss, making it practical on a single high-end GPU. + +## Where Mistral Wins + +### 1. Multilingual Performance +Mistral significantly outperforms Llama on non-English languages, particularly European languages (French, German, Spanish, Italian). If your application serves a global audience, Mistral is the stronger choice. + +### 2. Native Function Calling +Mistral Large 2 supports function calling out of the box -- no fine-tuning needed. This is critical for agent workflows, tool use, and structured output generation. + +### 3. Efficiency Per Parameter +Mistral pioneered Mixture of Experts (MoE) with Mixtral. While the total parameter count is high, only a fraction activates per token, making inference faster and cheaper than equivalent dense models. + +### 4. Coding Performance +Mistral's Codestral variant is purpose-built for code generation and consistently outperforms Llama on coding benchmarks (HumanEval, MBPP). + +## Benchmark Comparison + +| Benchmark | Llama 3.1 70B | Mistral Large 2 | +|-----------|---------------|-----------------| +| MMLU | 82.0 | 84.0 | +| HumanEval | 72.0 | 77.0 | +| GSM8K (Math) | 83.7 | 81.0 | +| ARC-Challenge | 85.3 | 86.1 | +| HellaSwag | 85.4 | 86.9 | +| TruthfulQA | 62.1 | 63.4 | + +Mistral edges ahead on most benchmarks but requires nearly twice the VRAM. + +## Running Both Locally + +Both work with [Ollama](/alternative-to/ollama): + +\`\`\`bash +# Llama 3 +ollama run llama3.1:70b + +# Mistral +ollama run mistral-large +\`\`\` + +Or try the smaller variants to compare on your hardware: + +\`\`\`bash +ollama run llama3.2 # 3B - runs on anything +ollama run mistral # 7B - good baseline +\`\`\` + +## Which Should You Choose? + +**Choose Llama 3 if:** +- You need the largest ecosystem of fine-tunes +- You want the widest hardware compatibility (8B model) +- English is your primary language +- You want the most community support and resources +- You need a 405B class model (Llama 3.1 405B) + +**Choose Mistral if:** +- Your application is multilingual +- You need native function calling / tool use +- Coding is a primary use case (Codestral) +- You want better benchmark performance per compute dollar (MoE) +- You need strong structured output generation + +**For most developers starting out:** Llama 3 is the safer default. Larger community, more resources, and the 8B model lets you prototype on a laptop. + +**For production multilingual or agent workloads:** Mistral is the better choice. Native function calling alone saves significant engineering effort. + +## The Practical Answer + +Run both through [Ollama](/alternative-to/ollama) on your specific use case. Benchmarks only tell part of the story -- the model that produces better outputs for your particular prompts is the right one. + +\`\`\`bash +# Test both on the same prompts +ollama run llama3.1:70b "Your test prompt here" +ollama run mistral-large "Your test prompt here" +\`\`\` + +Compare [all AI model alternatives](/ai) on The AltStack, or explore [self-hosted deployment guides](/self-hosted) for production setups.`, + }, + { + slug: 'gpt4all-vs-ollama-local-ai-comparison', + title: 'GPT4All vs Ollama: Which Local AI Tool is Better in 2026?', + description: 'Compare GPT4All and Ollama for running AI models locally. Features, performance, ease of use, and which one fits your workflow.', + date: '2026-03-01', + author: 'The AltStack', + category: 'AI', + tags: ['AI', 'GPT4All', 'Ollama', 'Local AI', 'LLM', 'Self-Hosted'], + relatedTools: ['gpt4all', 'ollama', 'lm-studio', 'jan'], + content: `# GPT4All vs Ollama: Which Local AI Tool is Better in 2026? + +[GPT4All](/alternative-to/gpt4all) and [Ollama](/alternative-to/ollama) both let you run large language models locally without sending data to the cloud. But they target different users and take fundamentally different approaches. + +**GPT4All** is a desktop application with a chat UI built in -- download it, pick a model, and start chatting. No terminal required. + +**Ollama** is a CLI-first tool that exposes an API -- install it, run a command, and integrate it into your applications. + +Here is how they compare. + +## Quick Comparison + +| Feature | GPT4All | Ollama | +|---------|---------|--------| +| Interface | Desktop GUI | CLI + API | +| Open Source | Yes (MIT) | Yes (MIT) | +| Primary Use | Chatting with AI | Development / Integration | +| Docker Support | No | Official image | +| OpenAI API Compatible | No | Yes | +| Model Library | Curated list (~30) | 100+ models | +| GPU Support | NVIDIA, Apple Silicon | NVIDIA, AMD, Apple Silicon | +| Plugins/Extensions | LocalDocs (RAG) | Modelfile customization | +| RAM Usage (idle) | ~500MB | ~150MB | +| Best For | Non-technical users | Developers | + +## GPT4All: The Desktop AI Chat App + +[GPT4All](/alternative-to/gpt4all) from Nomic AI is designed for people who want to chat with AI models without touching a terminal. It provides: + +**Strengths:** +- One-click installer for Windows, macOS, Linux +- Built-in chat interface (no separate UI needed) +- **LocalDocs** -- drag folders into the app and chat with your documents (RAG) +- Curated model list so beginners are not overwhelmed +- Low barrier to entry + +**Limitations:** +- No API server for application integration +- Smaller model library than Ollama +- No Docker support for server deployment +- Desktop only -- cannot run headless +- Slower to adopt new model releases + +**Install:** Download from [gpt4all.io](https://gpt4all.io) and run the installer. + +## Ollama: The Developer's AI Runtime + +[Ollama](/alternative-to/ollama) is built for developers who want to integrate local AI into their applications: + +**Strengths:** +- OpenAI-compatible API -- swap \`api.openai.com\` for \`localhost:11434\` +- 100+ models available with \`ollama run \` +- Docker support for server deployment +- Lightweight (~150MB idle RAM) +- Modelfiles for custom model configurations +- Fast model switching + +**Limitations:** +- No built-in chat UI (pair with [Open WebUI](/alternative-to/open-webui)) +- Requires terminal comfort +- No built-in RAG/document chat + +**Install:** + +\`\`\`bash +curl -fsSL https://ollama.com/install.sh | sh +ollama run llama3.2 +\`\`\` + +## Performance Comparison + +Tested on Apple M2 Pro (16GB) with Llama 3 8B: + +| Metric | GPT4All | Ollama | +|--------|---------|--------| +| Cold start | ~8s | ~2s | +| Tokens/sec | 35 | 42 | +| RAM (idle) | 500MB | 150MB | +| RAM (model loaded) | 5.5GB | 5.2GB | +| Time to first token | ~3s | ~1s | + +Ollama is consistently faster due to its lighter runtime. GPT4All's Electron-based UI adds overhead. + +## Use Case Decision Tree + +### "I just want to chat with AI privately" +**Choose GPT4All.** Download, install, pick a model, start chatting. The LocalDocs feature lets you chat with your own files -- no setup required. + +### "I'm building an app that needs AI" +**Choose Ollama.** The OpenAI-compatible API means your existing code works with one URL change: + +\`\`\`javascript +// Just change the base URL +const response = await fetch('http://localhost:11434/v1/chat/completions', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + model: 'llama3.2', + messages: [{ role: 'user', content: 'Hello' }] + }) +}); +\`\`\` + +### "I want AI on my server" +**Choose Ollama.** Docker support makes server deployment straightforward: + +\`\`\`bash +docker run -d -p 11434:11434 --gpus all ollama/ollama +\`\`\` + +GPT4All has no server mode. + +### "I want to chat with my documents" +**Choose GPT4All** for simple document chat. Its LocalDocs feature handles this without any configuration. For more advanced RAG, pair Ollama with [Open WebUI](/alternative-to/open-webui) which supports document upload. + +## Can You Use Both? + +Yes. They use the same GGUF model format, so models downloaded for one work with the other. A reasonable setup: + +- **GPT4All** on your personal laptop for quick chats and document questions +- **Ollama** on your dev server for API integrations and production workloads + +## Other Alternatives Worth Considering + +| Tool | Best For | +|------|----------| +| [LM Studio](/alternative-to/lm-studio) | Desktop GUI + API server (best of both) | +| [Jan](/alternative-to/jan) | Beautiful desktop chat UI | +| [LocalAI](/alternative-to/localai) | Multi-modal API (text + images + audio) | + +## The Verdict + +- **GPT4All** = Best for non-technical users who want private AI chat with document support +- **Ollama** = Best for developers who need an API, Docker deployment, and application integration + +If you are reading this on a developer-focused site, Ollama is probably what you want. But recommend GPT4All to your non-technical colleagues who keep asking you about "running ChatGPT locally." + +Browse all [AI runner alternatives](/alternative-to/ollama) or explore the [AI Model Matrix](/ai) on The AltStack.`, + }, + { + slug: 'how-to-set-up-llm-studio-with-ollama', + title: 'How to Set Up LM Studio and Ollama for Local AI in 2026', + description: 'A practical guide to running large language models locally with LM Studio and Ollama. Compare features, hardware requirements, and get started in minutes.', + date: '2026-02-27', + author: 'The AltStack', + category: 'AI', + tags: ['AI', 'Local AI', 'Ollama', 'LM Studio', 'Self-Hosted'], + relatedTools: ['ollama', 'lm-studio', 'open-webui', 'jan'], + content: `# How to Set Up LM Studio and Ollama for Local AI in 2026 + +Running large language models on your own hardware has gone from a niche experiment to a legitimate production strategy. Whether you want to eliminate per-token API costs, keep sensitive data off third-party servers, or just experiment with open-weight models, two tools dominate the local AI runner space: **Ollama** and **LM Studio**. + +This guide walks you through setting up both, compares their strengths, and helps you decide which fits your workflow. + +## Why Run AI Models Locally? + +Before diving into setup, here is why local inference matters: + +- **Zero marginal cost** -- once your hardware is provisioned, every query is free +- **Complete data privacy** -- prompts and outputs never leave your network +- **No rate limits** -- run as many requests as your hardware can handle +- **Offline capability** -- works without internet after the initial model download + +The tradeoff is hardware investment. Most capable models need at least 8GB of RAM, and larger models benefit from a dedicated GPU. + +## Setting Up Ollama + +[Ollama](/alternative-to/ollama) is the most popular open-source AI runner with over 60,000 GitHub stars. It takes a CLI-first approach: one command to install, one command to run any model. + +### Installation + +**macOS / Linux:** + +\`\`\`bash +curl -fsSL https://ollama.com/install.sh | sh +\`\`\` + +**Docker (recommended for servers):** + +\`\`\`bash +docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama +\`\`\` + +**Windows:** Download the installer from [ollama.com](https://ollama.com). + +### Running Your First Model + +\`\`\`bash +ollama run llama3.2 +\`\`\` + +That is it. Ollama downloads the model, quantizes it for your hardware, and starts an interactive chat. Want a different model? Just swap the name: + +\`\`\`bash +ollama run deepseek-r1:8b +ollama run mistral +ollama run gemma2:9b +\`\`\` + +### Using the API + +Ollama exposes an OpenAI-compatible API on port 11434: + +\`\`\`bash +curl http://localhost:11434/v1/chat/completions \\ + -H "Content-Type: application/json" \\ + -d '{ + "model": "llama3.2", + "messages": [{"role": "user", "content": "Explain Docker in one paragraph"}] + }' +\`\`\` + +This means any application built for the OpenAI API can switch to Ollama by changing the base URL. No code rewrite needed. + +## Setting Up LM Studio + +[LM Studio](/alternative-to/lm-studio) takes a different approach -- it provides a polished desktop GUI for downloading, managing, and chatting with models. It is free for personal use but is not open source. + +### Installation + +Download the installer from [lmstudio.ai](https://lmstudio.ai) for macOS, Windows, or Linux. The app handles everything through a visual interface. + +### Key Features + +- **Model discovery** -- browse and download models from Hugging Face directly in the app +- **Chat interface** -- a ChatGPT-like UI for interacting with models +- **Local server mode** -- exposes an OpenAI-compatible API (same as Ollama) +- **Hardware profiling** -- automatically selects the best quantization for your system + +## Ollama vs LM Studio: Which Should You Choose? + +| Feature | Ollama | LM Studio | +|---------|--------|-----------| +| Interface | CLI + API | Desktop GUI + API | +| Open Source | Yes (MIT) | No (free for personal use) | +| Model Library | 100+ models | Hugging Face catalog | +| Docker Support | Official image | No | +| Server Deployment | Excellent | Desktop only | +| GPU Support | NVIDIA, AMD, Apple Silicon | NVIDIA, Apple Silicon | +| Resource Usage | Lightweight | Heavier (Electron app) | + +**Choose Ollama if** you want a lightweight, scriptable tool for servers or development. It is the better choice for production deployments, CI/CD pipelines, and headless servers. + +**Choose LM Studio if** you prefer a visual interface for exploring models and want a plug-and-play experience on your desktop. + +## Adding a Chat UI with Open WebUI + +Ollama's CLI is powerful, but for a browser-based chat experience, pair it with [Open WebUI](/alternative-to/open-webui): + +\`\`\`bash +docker run -d -p 3000:8080 \\ + --add-host=host.docker.internal:host-gateway \\ + -e OLLAMA_BASE_URL=http://host.docker.internal:11434 \\ + --name open-webui \\ + ghcr.io/open-webui/open-webui:main +\`\`\` + +Open WebUI gives you a ChatGPT-like interface with multi-model chat, conversation history, RAG document upload, and user management -- all running on your infrastructure. + +## Hardware Recommendations + +| Model Size | RAM Required | GPU VRAM | Example Models | +|-----------|-------------|----------|----------------| +| 3B-7B | 8GB+ | 4-6GB | Llama 3.2 3B, Gemma 2 9B | +| 13B-14B | 16GB+ | 8-10GB | Llama 3.2, DeepSeek-R1 14B | +| 30B-70B | 32GB+ | 24-48GB | Llama 3.1 70B, Qwen 72B | +| 100B+ | 64GB+ | 80GB+ | DeepSeek-V3 671B (MoE) | + +For most use cases, a 7B-14B model running on a machine with 16GB RAM delivers excellent results for coding assistance, writing, and general Q&A. + +## Next Steps + +1. Start with Ollama and a small model like \`llama3.2\` to verify your setup +2. Try [Open WebUI](/alternative-to/open-webui) or [Jan](/alternative-to/jan) for a graphical interface +3. Experiment with specialized models: DeepSeek-R1 for reasoning, CodeLlama for coding +4. Consider [self-hosting on a VPS](/self-hosted) for always-on access from any device + +The local AI ecosystem is mature enough that there is no reason to send every prompt to a cloud API. Start local, and scale from there.`, + }, + { + slug: 'open-source-alternatives-to-deepseek', + title: '5 Open Source Alternatives to DeepSeek for Local AI in 2026', + description: 'Looking beyond DeepSeek? Compare the best open-weight LLMs including Llama, Mistral, Qwen, and Gemma for local AI inference.', + date: '2026-02-25', + author: 'The AltStack', + category: 'AI', + tags: ['AI', 'DeepSeek', 'Open Source', 'LLM', 'AI Models'], + relatedTools: ['deepseek', 'llama', 'mistral', 'qwen', 'gemma'], + content: `# 5 Open Source Alternatives to DeepSeek for Local AI in 2026 + +[DeepSeek](/alternative-to/deepseek) has made waves with its V3 and R1 models -- a 671B Mixture-of-Experts architecture that rivals GPT-4o at a fraction of the inference cost. The R1 model, specifically, pushed open-source reasoning capabilities to new heights. + +But DeepSeek is not the only option. The open-weight model ecosystem is deep, and depending on your use case -- coding, multilingual tasks, constrained hardware, or raw reasoning -- a different model might be the better fit. + +Here are five alternatives worth evaluating. + +## 1. Meta Llama 3 Series + +[Llama](/alternative-to/llama) is the most widely deployed open-weight model family. Meta's Llama 3 series comes in multiple sizes (8B, 70B, 405B) and has the largest ecosystem of fine-tunes, tools, and community support. + +**Why choose Llama over DeepSeek:** + +- Largest community and ecosystem -- more fine-tunes available on Hugging Face than any other model +- Llama 3.1 405B competes with GPT-4 on many benchmarks +- Excellent quantization support across all sizes +- Permissive license (Llama Community License) for most commercial uses + +**Best for:** General-purpose tasks, teams that want maximum community support and fine-tune availability. + +| Spec | Llama 3.1 70B | DeepSeek-V3 | +|------|---------------|-------------| +| Parameters | 70B | 671B (37B active) | +| Context | 128K | 128K | +| License | Llama Community | MIT | +| VRAM (FP16) | 40GB+ | 160GB+ | + +## 2. Mistral Large 2 + +[Mistral](/alternative-to/mistral) is the leading European AI lab, and their Large 2 model (123B) punches well above its weight class. Mistral pioneered efficient architectures that deliver high performance per parameter. + +**Why choose Mistral over DeepSeek:** + +- Superior multilingual performance across European languages +- 128K context with native function-calling support +- Strong coding performance with Codestral variant +- More efficient inference for the parameter count + +**Best for:** European teams needing multilingual support, function-calling workflows, and coding assistance. + +## 3. Alibaba Qwen 2.5 + +[Qwen](/alternative-to/qwen) from Alibaba is arguably the most underrated model family. Qwen 2.5 comes in sizes from 0.5B to 72B and consistently tops benchmarks for its size class, particularly in mathematics and coding. + +**Why choose Qwen over DeepSeek:** + +- Best-in-class performance at small model sizes (7B, 14B) +- Outstanding math and coding benchmarks +- 128K context window across all sizes +- Apache 2.0 license (more permissive than many alternatives) + +**Best for:** Resource-constrained deployments, math-heavy applications, and teams that need strong small models. + +## 4. Google Gemma 2 + +[Gemma](/alternative-to/gemma) is Google's open-weight model series. The Gemma 2 family (9B, 27B) is optimized for efficiency and delivers remarkable performance for its size, making it ideal for edge deployment and laptops. + +**Why choose Gemma over DeepSeek:** + +- Outstanding performance-per-parameter ratio +- Optimized for consumer hardware (runs well on 8GB RAM) +- Google's safety fine-tuning and RLHF +- Small enough to run on mobile devices and edge hardware + +**Best for:** Edge deployment, mobile integration, and teams with limited GPU resources. + +## 5. Microsoft Phi-3 + +Phi-3 from Microsoft proves that small models can be surprisingly capable. The Phi-3 Mini (3.8B) model was trained on high-quality data and achieves performance that rivals much larger models on reasoning tasks. + +**Why choose Phi-3 over DeepSeek:** + +- Runs on almost any hardware (3.8B parameters) +- Remarkably strong reasoning for its size +- MIT License +- Fast inference -- ideal for real-time applications + +**Best for:** Edge computing, mobile apps, low-latency applications, and environments where every megabyte counts. + +## Comparison Table + +| Model | Params | Context | VRAM (FP16) | License | Strength | +|-------|--------|---------|-------------|---------|----------| +| DeepSeek-V3 | 671B (37B active) | 128K | 160GB+ | MIT | Reasoning, Cost efficiency | +| Llama 3.1 70B | 70B | 128K | 40GB+ | Community | Ecosystem, General purpose | +| Mistral Large 2 | 123B | 128K | 80GB+ | Research | Multilingual, Function calling | +| Qwen 2.5 72B | 72B | 128K | 40GB+ | Apache 2.0 | Math, Coding | +| Gemma 2 27B | 27B | 8K | 16GB+ | Gemma License | Efficiency, Edge | +| Phi-3 Mini | 3.8B | 128K | 4GB | MIT | Tiny footprint, Reasoning | + +## How to Run Any of These Locally + +All of these models work with [Ollama](/alternative-to/ollama): + +\`\`\`bash +ollama run llama3.1:70b +ollama run mistral-large +ollama run qwen2.5:72b +ollama run gemma2:27b +ollama run phi3 +\`\`\` + +Or use them through [LM Studio](/alternative-to/lm-studio) if you prefer a graphical interface. + +## Which Should You Choose? + +- **Maximum capability, no hardware constraints:** DeepSeek-V3 or Llama 3.1 405B +- **Best balance of size and performance:** Llama 3.1 70B or Qwen 2.5 72B +- **Limited hardware (16GB RAM):** Gemma 2 27B or Qwen 2.5 14B +- **Edge/mobile deployment:** Phi-3 Mini or Gemma 2 9B +- **Multilingual requirements:** Mistral Large 2 +- **Best reasoning:** DeepSeek-R1 or Qwen 2.5 with math fine-tune + +The open-weight ecosystem has reached a point where there is a high-quality model for virtually every use case and hardware profile. The best approach is to benchmark 2-3 candidates on your specific tasks using Ollama, then deploy the winner.`, + }, + { + slug: 'best-self-hosted-email-servers-2026', + title: 'Best Self-Hosted Email Servers in 2026: Take Back Your Inbox', + description: 'Compare the top self-hosted email server solutions including Mailcow, Stalwart, and Mailu. Full setup guide with Docker deployment options.', + date: '2026-02-20', + author: 'The AltStack', + category: 'Self-Hosting', + tags: ['Email', 'Self-Hosted', 'Docker', 'Privacy', 'Communication'], + relatedTools: ['mattermost', 'rocketchat', 'jitsi-meet'], + content: `# Best Self-Hosted Email Servers in 2026: Take Back Your Inbox + +Email remains the most critical communication infrastructure for any organization. Yet most teams hand this infrastructure to Google Workspace ($7/user/month) or Microsoft 365 ($6/user/month), accumulating significant costs at scale while surrendering complete control over their communication data. + +Self-hosting email in 2026 is more viable than ever. Modern solutions package the full email stack -- SMTP, IMAP, webmail, spam filtering, DKIM/SPF/DMARC -- into Docker containers that deploy in minutes. Here are the best options. + +## Why Self-Host Email? + +- **Data sovereignty** -- every email stays on your infrastructure +- **No per-user pricing** -- host 10 or 10,000 accounts for the same infrastructure cost +- **Custom domains** -- unlimited aliases and catch-all addresses +- **Compliance** -- meet data residency requirements for GDPR, HIPAA, and government contracts +- **No vendor lock-in** -- standard protocols mean you can migrate anytime + +The main challenge is deliverability: ensuring your emails actually reach recipients' inboxes. This requires proper DNS configuration (SPF, DKIM, DMARC), a clean IP reputation, and ongoing monitoring. All the solutions below handle the technical setup, but you will need a VPS with a clean IP address. + +## 1. Mailcow: Dockerized + +Mailcow is the most feature-complete self-hosted email suite. It bundles Postfix (SMTP), Dovecot (IMAP), SOGo (webmail/calendar/contacts), Rspamd (spam filtering), and a comprehensive admin UI into a single Docker Compose deployment. + +**Strengths:** + +- All-in-one solution: email, calendar, contacts, and admin panel +- SOGo webmail with Exchange ActiveSync support +- Built-in two-factor authentication +- Automatic DKIM key generation +- Let's Encrypt SSL integration +- Detailed per-domain and per-mailbox analytics + +**Considerations:** + +- Requires 2GB+ RAM minimum (4GB recommended) +- Complex stack means more potential failure points +- Updates require following the official update procedure + +**Quick Deploy:** + +\`\`\`bash +git clone https://github.com/mailcow/mailcow-dockerized +cd mailcow-dockerized +./generate_config.sh +docker compose up -d +\`\`\` + +**Best for:** Organizations that want a complete groupware solution with email, calendars, and contacts in one package. + +## 2. Stalwart Mail Server + +Stalwart is the newest contender and arguably the most technically impressive. Written in Rust, it is a single-binary mail server that handles SMTP, IMAP, JMAP, and includes built-in spam filtering -- all without the complexity of bundling multiple services. + +**Strengths:** + +- Single binary -- dramatically simpler than multi-container solutions +- JMAP support (the modern replacement for IMAP) +- Built-in full-text search +- Extremely low resource usage (runs on 512MB RAM) +- Written in Rust for memory safety and performance +- Active development with frequent releases + +**Considerations:** + +- No built-in webmail (pair with Roundcube or another client) +- Newer project with a smaller community +- Configuration is TOML/YAML based (no admin GUI yet) + +**Best for:** Technically-minded administrators who want a lean, modern, high-performance mail server. + +## 3. Mailu + +Mailu positions itself as the simple, full-featured mail server. It provides a clean setup wizard and admin interface that makes initial configuration straightforward, even for those new to email hosting. + +**Strengths:** + +- Web-based setup wizard for initial configuration +- Clean admin interface for managing domains and users +- Built-in webmail (Roundcube or Rainloop) +- Automatic SSL with Let's Encrypt +- Reasonable resource usage (1GB+ RAM) +- Good documentation for beginners + +**Considerations:** + +- Fewer advanced features than Mailcow +- Smaller plugin/integration ecosystem +- Less granular control over individual components + +**Best for:** Teams that want a straightforward, working email server without extensive configuration. + +## Comparison Table + +| Feature | Mailcow | Stalwart | Mailu | +|---------|---------|----------|-------| +| Webmail | SOGo (full groupware) | None (BYO client) | Roundcube | +| Calendar/Contacts | Yes (SOGo) | No | No | +| Admin UI | Comprehensive | None (CLI/config) | Clean web UI | +| Min. RAM | 2-4GB | 512MB | 1GB | +| Language | Multi-service (C, Lua, PHP) | Rust | Multi-service (Python) | +| JMAP Support | No | Yes | No | +| Spam Filter | Rspamd | Built-in | Rspamd | +| Setup Difficulty | Moderate | Advanced | Easy | + +## Essential DNS Configuration + +Regardless of which server you choose, proper DNS records are critical for deliverability: + +\`\`\` +# MX Record +@ MX 10 mail.yourdomain.com + +# SPF -- authorize your server to send email +@ TXT "v=spf1 mx a -all" + +# DKIM -- your server generates this key +mail._domainkey TXT "v=DKIM1; k=rsa; p=YOUR_PUBLIC_KEY" + +# DMARC -- tell receivers how to handle failures +_dmarc TXT "v=DMARC1; p=quarantine; rua=mailto:admin@yourdomain.com" +\`\`\` + +## Choosing the Right VPS + +For email hosting, your VPS provider matters more than for most workloads because IP reputation directly affects deliverability: + +- Choose a provider that allows port 25 (SMTP) outbound -- some block it by default +- Request a dedicated IP address if possible +- Check the IP against blacklists before committing +- Budget $10-20/month for a capable VPS (2 vCPU, 4GB RAM, 80GB SSD) + +## The Bottom Line + +Self-hosted email is not for everyone. If you have a small team and no compliance requirements, Google Workspace is convenient and reliable. But if you are scaling past 20+ users, handling sensitive data, or simply want to own your communication infrastructure, these solutions deliver enterprise-grade email at infrastructure cost only. + +Start with **Mailu** if you want the easiest setup, **Mailcow** if you need groupware (calendars + contacts), or **Stalwart** if you want the most modern and resource-efficient server. + +For team messaging beyond email, pair your mail server with [Mattermost](/alternative-to/mattermost) or [Rocket.Chat](/alternative-to/rocketchat) for real-time communication, and [Jitsi Meet](/alternative-to/jitsi-meet) for video calls -- all self-hosted.`, + }, + { + slug: 'best-open-source-project-management-tools-2026', + title: 'Best Open Source Project Management Tools in 2026', + description: 'Compare Plane, Taiga, and other open-source alternatives to Jira and Asana. Feature comparison, self-hosting guides, and honest recommendations.', + date: '2026-02-15', + author: 'The AltStack', + category: 'Tools', + tags: ['Project Management', 'Open Source', 'Jira', 'Self-Hosted', 'Productivity'], + relatedTools: ['plane', 'taiga', 'jira'], + content: `# Best Open Source Project Management Tools in 2026 + +Project management software is one of the most overpriced categories in SaaS. [Jira](/alternative-to/jira) charges $8.15/user/month (Standard) and quickly becomes complex enough to need its own administrator. Asana, Monday.com, and Linear follow similar per-seat models that scale linearly with your team size. + +The open-source alternatives have matured significantly. Tools like [Plane](/alternative-to/plane) and [Taiga](/alternative-to/taiga) now offer the core workflows -- kanban boards, sprints, issue tracking, and team collaboration -- without the licensing overhead. Here is how they compare. + +## 1. Plane -- The Modern Jira Killer + +[Plane](/alternative-to/plane) is the standout in this category. With over 45,000 GitHub stars, it has emerged as the open-source answer to Jira and Linear, combining a clean interface with serious project management capabilities. + +**What makes Plane stand out:** + +- **Speed** -- sub-100ms interactions that make Jira feel sluggish by comparison +- **Modern UI** -- inspired by Linear's design philosophy, with keyboard shortcuts throughout +- **Cycles and modules** -- sprint planning without Jira's configuration overhead +- **Built-in views** -- spreadsheet, board, list, and timeline views out of the box +- **Self-hostable** -- full Docker Compose deployment with PostgreSQL and Redis + +**Self-Hosting Plane:** + +\`\`\`bash +git clone https://github.com/makeplane/plane.git +cd plane +./setup.sh +docker compose up -d +\`\`\` + +After deployment, access the web interface at \`http://localhost\` and create your workspace. + +**Best for:** Teams migrating from Jira or Linear who want a familiar, modern interface without per-seat costs. + +## 2. Taiga -- Agile-First Project Management + +[Taiga](/alternative-to/taiga) has been in the open-source project management space longer than most competitors. It provides a comprehensive Agile toolkit with beautiful kanban and scrum boards, making it a solid choice for teams that follow Agile methodologies strictly. + +**What makes Taiga stand out:** + +- **Full Agile support** -- epics, user stories, sprints, and story points +- **Built-in wiki** -- project documentation alongside your tasks +- **Kanban and Scrum boards** -- drag-and-drop with swimlanes +- **Issue tracking** -- with custom fields, tags, and priorities +- **Import from Jira** -- migration tools for switching + +**Considerations:** + +- Setup is more complex than Plane +- UI feels slightly dated compared to newer tools +- Smaller community and slower development pace + +**Best for:** Agile teams that need epics, user stories, and full scrum support with built-in documentation. + +## 3. OpenProject + +OpenProject is the enterprise-focused option in the open-source project management space. It is the most feature-rich tool on this list, offering Gantt charts, time tracking, cost reporting, and meeting management alongside standard issue tracking. + +**What makes OpenProject stand out:** + +- **Gantt charts** -- real project timeline visualization (rare in open-source tools) +- **Time tracking and budgets** -- built-in cost management +- **BIM support** -- for construction and engineering teams +- **Enterprise features** -- LDAP, SAML, and comprehensive access controls +- **EU-hosted cloud option** -- GDPR-compliant managed hosting + +**Considerations:** + +- Steeper learning curve than Plane or Taiga +- Some enterprise features require the paid edition +- Resource-heavy deployment (4GB+ RAM recommended) + +**Best for:** Larger organizations that need Gantt charts, time tracking, and enterprise access controls. + +## Comparison Table + +| Feature | Plane | Taiga | OpenProject | +|---------|-------|-------|-------------| +| UI Design | Modern (Linear-like) | Classic | Enterprise | +| Kanban Board | Yes | Yes | Yes | +| Scrum/Sprints | Cycles | Full Scrum | Yes | +| Gantt Charts | Timeline view | No | Yes | +| Wiki/Docs | Pages | Built-in | Yes | +| Time Tracking | No | No | Yes | +| GitHub Stars | 45,000+ | 800+ | 9,000+ | +| Language | TypeScript | Python | Ruby | +| License | AGPL-3.0 | MPL 2.0 | GPL-3.0 | +| Self-Host RAM | 2GB+ | 2GB+ | 4GB+ | + +## What About Linear, ClickUp, and Notion? + +These proprietary tools are popular for good reason -- their UX is polished. But the cost scales: + +| Tool | Per User/Month | 50 Users/Year | +|------|---------------|---------------| +| Jira Standard | $8.15 | $4,890 | +| Linear | $8 | $4,800 | +| Asana Business | $24.99 | $14,994 | +| Monday.com Pro | $16 | $9,600 | +| **Plane (self-hosted)** | **$0** | **$0 + server costs** | + +A $20/month VPS can comfortably run Plane for a team of 50+. That is $240/year versus $4,890+ for Jira. + +## Migration Strategy + +Moving from Jira to an open-source alternative does not have to be all-or-nothing: + +1. **Start with a single team** -- migrate one team or project first +2. **Export your data** -- most tools support CSV import, Taiga has Jira importers +3. **Run in parallel** -- keep the old tool accessible during the transition +4. **Train on differences** -- the core concepts (issues, boards, sprints) transfer directly + +## Recommendation + +For most teams in 2026, **Plane is the clear winner**. Its combination of modern design, speed, and comprehensive features makes it the closest open-source equivalent to Linear or Jira -- without the per-seat costs. Deploy it with Docker, point your team at it, and you will likely wonder why you were paying for Jira. + +If your team is strictly Agile with sprints and user stories, give **Taiga** a look. And if you need enterprise features like Gantt charts and time tracking, **OpenProject** fills that niche. + +Explore all [project management alternatives on The AltStack](/alternative-to/jira).`, + }, + { + slug: 'plausible-vs-matomo-vs-umami-2026', + title: 'Plausible vs Matomo vs Umami: Choosing an Open-Source Google Analytics Alternative in 2026', + description: 'Compare Plausible, Matomo, and Umami as privacy-first, open-source Google Analytics replacements. Features, deployment, and GDPR compliance guide.', + date: '2026-03-07', + author: 'The AltStack', + category: 'Analytics', + tags: ['Analytics', 'Privacy', 'Open Source', 'Self-Hosted', 'Google Analytics'], + relatedTools: ['plausible', 'matomo', 'umami', 'google-analytics'], + content: `# Plausible vs Matomo vs Umami: Choosing an Open-Source Google Analytics Alternative in 2026 + +Google Analytics (GA4) has become increasingly complex, privacy-intrusive, and heavy. With the rise of GDPR and CCPA, many website owners are looking for simpler, privacy-first alternatives that they can own and control. + +Enter the world of open-source analytics. Tools like [Plausible](/alternative-to/plausible), [Matomo](/alternative-to/matomo), and [Umami](/alternative-to/umami) offer powerful tracking without the baggage of big tech. + +## Why Move Away from Google Analytics? + +- **Privacy Compliance** – Most open-source tools don't use cookies and don't track personal data, making them GDPR/CCPA compliant out of the box. +- **Performance** – GA4's script is large. Plausible and Umami use tiny scripts (<1KB) that won't slow down your site. +- **Data Ownership** – When you self-host, your data stays on your server, not Google's. +- **Ad-Blocker Resilience** – Since you can proxy these tools through your own domain, they are less likely to be blocked by browser extensions. + +## 1. Plausible: The Minimalist Champion + +[Plausible](/alternative-to/plausible) is the gold standard for lightweight analytics. It provides a single-page dashboard with the metrics that actually matter: visitors, source, pages, and goals. + +**Pros:** +- Extremely lightweight (<1KB script). +- No cookies, no personal data tracking. +- Beautiful, intuitive dashboard. +- Public dashboard option for transparency. + +**Cons:** +- Limited advanced features (no heatmaps or session recordings). +- Self-hosting requires ClickHouse (can be resource-heavy for small VPS). + +## 2. Matomo: The Enterprise Alternative + +If you need a 1:1 replacement for Google Analytics, [Matomo](/alternative-to/matomo) (formerly Piwik) is the answer. It is used by organizations like the European Commission and NASA. + +**Pros:** +- Feature-rich: Heatmaps, session recordings, A/B testing, and funnels. +- Media analytics (track video/audio engagement). +- 100% data ownership with powerful privacy controls. +- Marketplace for plugins and themes. + +**Cons:** +- Steeper learning curve. +- Dashboard can feel dated compared to Plausible/Umami. +- Requires more maintenance (PHP/MySQL setup). + +## 3. Umami: The Modern Developer Choice + +[Umami](/alternative-to/umami) is the new kid on the block, written in Next.js. It strikes a perfect balance between Plausible's simplicity and Matomo's customizability. + +**Pros:** +- Modern, clean UI. +- Very easy to self-host with Docker and Postgres. +- Supports unlimited websites and users. +- Fast and lightweight. + +**Cons:** +- Lacks the advanced enterprise features of Matomo. +- Smaller ecosystem than the older alternatives. + +## Comparison Table + +| Feature | Plausible | Matomo | Umami | +|---------|-----------|--------|-------| +| Script Size | < 1KB | ~20KB | < 2KB | +| Cookies | No | Optional | No | +| Heatmaps | No | Yes | No | +| SQL Database | ClickHouse | MySQL | Postgres/MySQL | +| License | AGPL-3.0 | GPL-3.0 | MIT | + +## The Verdict + +- **Choose Plausible** if you want the simplest, "set it and forget it" analytics for your blog or startup. +- **Choose Matomo** if you are an enterprise or e-commerce site that needs deep behavioral insights and heatmaps. +- **Choose Umami** if you want a modern, fast, self-hosted solution that's easy to deploy and maintain. + +Deploy your choice today and take back control of your website's data. Explore more [Analytics alternatives](/alternative-to/google-analytics) on The AltStack.`, + }, + { + slug: 'best-open-source-firebase-alternatives-2026', + title: 'Best Open Source Firebase Alternatives in 2026 (BaaS)', + description: 'Explore the top open-source alternatives to Firebase. Compare Supabase, Appwrite, and PocketBase for your next web or mobile app.', + date: '2026-03-07', + author: 'The AltStack', + category: 'Backend', + tags: ['Firebase', 'Supabase', 'Appwrite', 'PocketBase', 'BaaS', 'Open Source'], + relatedTools: ['supabase', 'appwrite', 'pocketbase', 'firebase'], + content: `# Best Open Source Firebase Alternatives in 2026 (BaaS) + +Firebase has long been the go-to for rapid app development, providing a suite of tools for auth, database, and storage. However, its NoSQL limitations, proprietary nature, and "success tax" (scaling costs) have led many to seek open-source alternatives. + +In 2026, the open-source Backend-as-a-Service (BaaS) ecosystem is stronger than ever. + +## 1. Supabase: The Postgres Powerhouse + +[Supabase](/alternative-to/supabase) is the most popular Firebase alternative. It provides a full suite of features built on top of the world's most advanced open-source database: PostgreSQL. + +**Key Features:** +- **Database:** Full Postgres with Row Level Security (RLS). +- **Auth:** Email, social, and phone auth built-in. +- **Storage:** S3-compatible file storage. +- **Real-time:** Real-time database changes via websockets. +- **Edge Functions:** Run Typescript logic globally. + +**Best for:** Projects that need a relational database and want to scale to millions of users on a rock-solid foundation. + +## 2. Appwrite: The Unified Platform + +[Appwrite](/alternative-to/appwrite) is a highly flexible, platform-agnostic BaaS that abstracts the complexity of building a backend. It's designed to run anywhere Docker is supported. + +**Key Features:** +- **Databases:** Flexible document-based storage. +- **Functions:** Supports 15+ runtimes (Python, JS, Go, etc.). +- **Messaging:** Built-in push notifications, email, and SMS. +- **Privacy:** Designed with security and privacy as first-class citizens. + +**Best for:** Developers who want a unified experience with excellent SDK support for web, mobile, and flutter. + +## 3. PocketBase: The Indie Hacker's Dream + +[PocketBase](/alternative-to/pocketbase) is a unique, single-file backend written in Go. It uses SQLite under the hood and is incredibly fast and efficient. + +**Key Features:** +- **Single Executable:** No Docker needed (though supported). +- **SQLite:** Fast, reliable, and easy to backup. +- **Embedded UI:** Built-in dashboard for managing data and auth. +- **Real-time:** Built-in subscriptions for data updates. + +**Best for:** Small to medium projects, MVPs, and developers who want the simplest possible deployment (literally one file). + +## Quick Comparison Table + +| Feature | Supabase | Appwrite | PocketBase | +|---------|----------|----------|------------| +| Database | PostgreSQL | MariaDB/NoSQL | SQLite | +| Real-time | Yes | Yes | Yes | +| Functions | Yes | Yes | Golang hooks | +| Hosting | Cloud/Self | Cloud/Self | Self (mostly) | +| License | Apache 2.0 | BSD-3 | MIT | + +## Which to Choose? + +- If you love **SQL** and want enterprise-grade scalability: [**Supabase**](/alternative-to/supabase). +- If you want a **full-featured platform** with great cross-platform SDKs: [**Appwrite**](/alternative-to/appwrite). +- If you want a **lightweight, simple** backend for an MVP or side project: [**PocketBase**](/alternative-to/pocketbase). + +Stop worrying about vendor lock-in and start building with open-source foundations. Check out our [self-hosted guides](/self-hosted) to get these running on your own hardware.`, + }, + { + slug: 'self-host-vaultwarden-password-manager-guide', + title: 'How to Self-Host Your Own Password Manager: Vaultwarden Guide', + description: 'Learn how to self-host Vaultwarden (formerly Bitwarden_RS). The ultimate guide to owning your passwords safely with Docker.', + date: '2026-03-07', + author: 'The AltStack', + category: 'Security', + tags: ['Vaultwarden', 'Bitwarden', 'Password Manager', 'Self-Hosted', 'Security'], + relatedTools: ['bitwarden', '1password', 'lastpass'], + content: `# How to Self-Host Your Own Password Manager: Vaultwarden Guide + +Trusting a third party with your passwords is a significant risk. Major leaks in the past have proven that even the most secure companies can be vulnerable. Self-hosting your password manager ensures you hold the keys to your own digital life. + +[Vaultwarden](/alternative-to/bitwarden) is an unofficial, lightweight Rust implementation of the Bitwarden API. It's fully compatible with the official Bitwarden apps while using significantly fewer resources. + +## Why Vaultwarden? + +- **Lightweight:** Runs on a Raspberry Pi or a $5 VPS (uses <200MB RAM). +- **Compatible:** Works with official Bitwarden browser extensions and mobile apps. +- **Unlocks Premium Features:** Includes "premium" features like TOTP generation and organization sharing for free. +- **Data Privacy:** Your encrypted database never leaves your network. + +## Prerequisites + +- A VPS or home server with Docker installed. +- A domain name (required for SSL). +- A reverse proxy (Caddy, Nginx, or Traefik). + +## Step 1: Docker Compose Setup + +Create a directory for Vaultwarden and paste the following into \`docker-compose.yml\`: + +\`\`\`yaml +services: + vaultwarden: + image: vaultwarden/server:latest + container_name: vaultwarden + restart: always + environment: + - SIGNUPS_ALLOWED=true # Set to false after creating your account + - DOMAIN=https://pass.yourdomain.com + volumes: + - ./vw-data:/data + ports: + - 8080:80 +\`\`\` + +## Step 2: SSL is Mandatory + +You should **never** access your password manager over an unencrypted connection (HTTP). Use Caddy for the simplest SSL setup: + +\`\`\`caddy +pass.yourdomain.com { + reverse_proxy localhost:8080 +} +\`\`\` + +## Step 3: Secure Your Instance + +Once you have registered your account, edit your \`docker-compose.yml\` and set \`SIGNUPS_ALLOWED=false\`. This prevents random people from creating accounts on your server. + +## Step 4: Backups (Crucial!) + +Since you are now your own sysadmin, you are responsible for backups. Vaultwarden stores everything in an SQLite database inside the \`vw-data\` folder. + +**Simple Backup Script:** +\`\`\`bash +# Stop the container +docker stop vaultwarden +# Copy the data folder +cp -r ./vw-data ./backups/backup_$(date +%F) +# Start the container +docker start vaultwarden +\`\`\` + +## Conclusion + +Self-hosting Vaultwarden gives you the premium experience of a modern password manager with the absolute privacy of self-hosting. It is one of the most rewarding self-hosted projects you can undertake. + +Compare [other password managers](/alternative-to/bitwarden) on The AltStack today!`, + }, + { + slug: 'outline-vs-hedgedoc-vs-bookstack-notion-alternatives', + title: 'Outline vs Hedgedoc vs BookStack: Open Source Notion Replacements', + description: 'Finding the best open-source Notion alternative. Compare Outline, BookStack, and HedgeDoc for team documentation and wikis.', + date: '2026-03-07', + author: 'The AltStack', + category: 'Productivity', + tags: ['Notion', 'Outline', 'BookStack', 'HedgeDoc', 'Wiki', 'Open Source'], + relatedTools: ['outline', 'bookstack', 'hedgedoc', 'notion', 'confluence'], + content: `# Outline vs Hedgedoc vs BookStack: Open Source Notion Replacements + +Notion transformed how we think about documentation, but its proprietary format and lack of a true offline mode are significant drawbacks for many. Open-source alternatives offer similar collaborative power with the added benefit of data sovereignty. + +## 1. Outline: The Modern & Beautiful Choice + +[Outline](/alternative-to/outline) is widely considered the best looking open-source knowledge base. It feels very similar to Notion with its slash commands and clean typography. + +**Key Features:** +- Fast, real-time collaboration. +- Minimalist, distraction-free editor. +- Powerful search and file organization. +- Support for 20+ integrations. + +**Best for:** Modern teams who want a polished experience and don't mind a slightly complex setup (requires OIDC/Slack for login and S3 for storage). + +## 2. BookStack: The Structured Wiki + +[BookStack](/alternative-to/bookstack) takes a unique approach by organizing content into Shelves, Books, and Chapters. This opinionated hierarchy is great for keeping long-term documentation organized. + +**Key Features:** +- Easy to use and set up (PHP/MySQL). +- Powerful permission system. +- Built-in drawing tool (Draw.io integration). +- Simple Markdown or WYSIWYG editor. + +**Best for:** Organizations that need a traditional "Wiki" feel and clear structure for company handbooks or technical manuals. + +## 3. HedgeDoc: The Real-time Markdown Editor + +[HedgeDoc](/alternative-to/hedgedoc) (formerly CodiMD) is a versatile markdown editor that allows multiple people to write at the same time. + +**Key Features:** +- Pure Markdown support. +- Real-time collaborative editing (Google Docs style but for MD). +- Presentation mode (convert MD to slides). +- Lightweight and fast. + +**Best for:** Developers and technical teams who purely live in Markdown and need a place for quick notes and meeting minutes. + +## Feature Overview Table + +| Feature | Outline | BookStack | HedgeDoc | +|---------|---------|-----------|----------| +| Editor | Block/Notion-like | WYSIWYG/MD | Markdown | +| Hierarchy | Folders/Nested | Shelves/Books | Flat/Permissions | +| Real-time | Yes | No (Drafts only) | Yes | +| Auth | OIDC/Slack/GSuite | Internal/OIDC/LDAP | Internal/LDAP | +| License | BSL (Open Source) | MIT | AGPL-3.0 | + +## The Verdict + +- **For the best UI:** Go with [**Outline**](/alternative-to/outline). +- **For structured business documentation:** Go with [**BookStack**](/alternative-to/bookstack). +- **For technical collaborative writing:** Go with [**HedgeDoc**](/alternative-to/hedgedoc). + +Owning your team's knowledge is the first step toward a sovereign technical stack. Explore more [Notion alternatives](/alternative-to/notion) and [Project Management tools](/alternative-to/jira) on The AltStack.`, + }, +]; + +export function getBlogPost(slug: string): BlogPost | undefined { + return blogPosts.find(p => p.slug === slug); +} + +export function getAllBlogPosts(): BlogPost[] { + return [...blogPosts].sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime()); +} diff --git a/data/schema/types.ts b/data/schema/types.ts deleted file mode 100644 index 9157a5c..0000000 --- a/data/schema/types.ts +++ /dev/null @@ -1,66 +0,0 @@ -export interface DeploymentConfig { - image: string; - port: number; - env?: { key: string; value: string }[]; - volumes?: string[]; - command?: string; - local_path?: string; - type?: 'docker-compose' | 'dockerfile'; -} - -export interface Tool { - slug: string; - name: string; - category: string; - is_open_source: boolean; - description: string; - website: string; - github_repo?: string; - stars?: number; - description_long?: string; - pros?: string[]; - cons?: string[]; - min_cost?: number; - avg_monthly_cost?: number; // Estimated self-hosting or SaaS cost - pricing_model?: 'Free' | 'Freemium' | 'Paid' | 'Paid (Subscription)' | 'Paid (One-time)'; - has_free_trial?: boolean; - self_hostable?: boolean; - license?: string; - language?: string; - tags?: string[]; - alternatives?: string[]; - last_commit?: string; - logo_url?: string; - affiliate_url?: string; - referral_url?: string; // New field for specific referral links - deployment?: DeploymentConfig; - hardware_req?: string; // e.g., "16GB VRAM", "CPU only", "Cloud API" - hosting_type?: 'cloud' | 'self-hosted' | 'both'; // How the tool/model is accessed - - ai_metadata?: { - vram_inference_gb?: number; // Recommended VRAM for inference (FP16/BF16) - context_window_tokens?: number; // Max sequence length - parameters_total_b?: number; // Billion parameters - parameters_active_b?: number; // For MoE models - is_multimodal?: boolean; - }; -} - -export interface Stack { - id: string; - name: string; - emoji: string; - tagline: string; - description: string; - monthlySaved: number; - - // Ordered list of tools with specific roles in this stack - tools: { - category: string; // e.g. "The Database", "Authentication" - toolSlug: string; - }[]; - - // SEO - seo_title?: string; - seo_description?: string; -} diff --git a/data/tools.json b/data/tools.json index 12b1730..fdfe444 100644 --- a/data/tools.json +++ b/data/tools.json @@ -38,7 +38,7 @@ "category": "Backend as a Service", "is_open_source": true, "github_repo": "supabase/supabase", - "stars": 99805, + "stars": 97401, "website": "https://supabase.com", "description": "The Postgres development platform. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications.", "pros": [ @@ -48,9 +48,9 @@ "cons": [ "Self-hosting can be complex" ], - "last_commit": "2026-03-30T02:14:30Z", + "last_commit": "2026-02-09T16:09:10Z", "language": "TypeScript", - "license": "Apache-2.0", + "license": "Apache License 2.0", "tags": [ "Database", "Realtime", @@ -60,9 +60,15 @@ "logo_url": "/logos/supabase.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/supabase" + "local_path": "./docker-deploy/supabase" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 97,401 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "appwrite", @@ -70,7 +76,7 @@ "category": "Backend as a Service", "is_open_source": true, "github_repo": "appwrite/appwrite", - "stars": 55371, + "stars": 54727, "website": "https://appwrite.io", "description": "Appwrite® - complete cloud infrastructure for your web, mobile and AI apps. Including Auth, Databases, Storage, Functions, Messaging, Hosting, Realtime and more", "pros": [ @@ -81,9 +87,9 @@ "Smaller ecosystem than Firebase or Supabase", "Limited built-in analytics and reporting" ], - "last_commit": "2026-03-29T06:21:25Z", + "last_commit": "2026-02-09T16:12:32Z", "language": "TypeScript", - "license": "BSD-3-Clause", + "license": "BSD 3-Clause \"New\" or \"Revised\" License", "tags": [ "Database", "Auth", @@ -92,9 +98,15 @@ "logo_url": "/logos/appwrite.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/appwrite" + "local_path": "./docker-deploy/appwrite" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 54,727 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "pocketbase", @@ -112,10 +124,10 @@ "cons": [ "SQLite only (for now)" ], - "stars": 57211, - "last_commit": "2026-03-28T08:22:50Z", + "stars": 55980, + "last_commit": "2026-02-01T08:09:48Z", "language": "Go", - "license": "MIT", + "license": "MIT License", "logo_url": "/logos/pocketbase.svg", "deployment": { "image": "pocketbase/pocketbase:latest", @@ -125,9 +137,15 @@ ], "command": "serve --http=0.0.0.0:8090", "type": "docker-compose", - "local_path": "./.docker-deploy/pocketbase" + "local_path": "./docker-deploy/pocketbase" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 55,980 stars, active within 57d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "salesforce", @@ -197,16 +215,22 @@ "cons": [ "Self-hosting maintenance" ], - "stars": 36001, - "last_commit": "2026-03-30T01:59:47Z", + "stars": 35213, + "last_commit": "2026-02-09T16:03:54Z", "language": "TypeScript", "license": "Other", "logo_url": "/logos/mattermost.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/mattermost" + "local_path": "./docker-deploy/mattermost" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 35,213 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "rocketchat", @@ -224,16 +248,22 @@ "cons": [ "Resource intensive" ], - "stars": 45040, - "last_commit": "2026-03-28T04:08:20Z", + "stars": 44546, + "last_commit": "2026-02-09T16:20:40Z", "language": "TypeScript", "license": "Other", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=rocket.chat", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/rocketchat" + "local_path": "./docker-deploy/rocketchat" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 44,546 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "jira", @@ -277,16 +307,22 @@ "cons": [ "Still relatively new" ], - "stars": 47078, - "last_commit": "2026-03-29T20:44:24Z", + "stars": 45490, + "last_commit": "2026-02-09T13:56:47Z", "language": "TypeScript", - "license": "AGPL-3.0", + "license": "GNU Affero General Public License v3.0", "logo_url": "/logos/plane.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/plane" + "local_path": "./docker-deploy/plane" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 45,490 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "taiga", @@ -304,16 +340,22 @@ "cons": [ "Complex setup" ], - "stars": 816, - "last_commit": "2026-03-23T08:27:40Z", + "stars": 807, + "last_commit": "2026-01-09T07:28:59Z", "language": "Python", - "license": "MPL-2.0", + "license": "Mozilla Public License 2.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=taiga.io", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/taiga" + "local_path": "./docker-deploy/taiga" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 807 stars, active within 80d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "zoom", @@ -356,16 +398,22 @@ "cons": [ "Performance on large calls" ], - "stars": 28896, - "last_commit": "2026-03-27T23:59:19Z", + "stars": 28562, + "last_commit": "2026-02-09T12:49:10Z", "language": "TypeScript", - "license": "Apache-2.0", + "license": "Apache License 2.0", "logo_url": "/logos/jitsi-meet.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/jitsi-meet" + "local_path": "./docker-deploy/jitsi-meet" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 28,562 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "photoshop", @@ -410,12 +458,22 @@ "Steep learning curve", "Dated UI" ], - "stars": 6059, - "last_commit": "2026-03-30T02:18:52Z", + "stars": 5960, + "last_commit": "2026-02-09T16:20:25Z", "language": "C", "license": "Other", "logo_url": "/logos/gimp.svg", - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/gimp" + }, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 5,960 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "krita", @@ -433,12 +491,22 @@ "cons": [ "Less focused on photo manipulation" ], - "stars": 9519, - "last_commit": "2026-03-30T01:43:03Z", + "stars": 9333, + "last_commit": "2026-02-09T13:47:56Z", "language": "C++", - "license": "GPL-3.0", + "license": "GNU General Public License v3.0", "logo_url": "/logos/krita.svg", - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/krita" + }, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 9,333 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "figma", @@ -481,16 +549,22 @@ "cons": [ "Newer ecosystem" ], - "stars": 45094, - "last_commit": "2026-03-28T07:59:54Z", + "stars": 44155, + "last_commit": "2026-02-09T15:47:35Z", "language": "Clojure", - "license": "MPL-2.0", + "license": "Mozilla Public License 2.0", "logo_url": "/logos/penpot.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/penpot" + "local_path": "./docker-deploy/penpot" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 44,155 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "notion", @@ -534,16 +608,22 @@ "cons": [ "No web version (yet)" ], - "stars": 68865, - "last_commit": "2026-03-26T07:36:26Z", + "stars": 68006, + "last_commit": "2026-01-28T09:20:38Z", "language": "Dart", - "license": "AGPL-3.0", + "license": "GNU Affero General Public License v3.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=www.appflowy.io", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/appflowy" + "local_path": "./docker-deploy/appflowy" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 68,006 stars, active within 61d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "affine", @@ -561,16 +641,22 @@ "cons": [ "Still in beta" ], - "stars": 66705, - "last_commit": "2026-03-29T15:26:17Z", + "stars": 62693, + "last_commit": "2026-02-09T11:16:50Z", "language": "TypeScript", "license": "Other", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=affine.pro", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/affine" + "local_path": "./docker-deploy/affine" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 62,693 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "google-analytics", @@ -615,10 +701,10 @@ "cons": [ "Limited advanced features" ], - "stars": 24488, - "last_commit": "2026-03-29T13:26:28Z", + "stars": 24198, + "last_commit": "2026-02-09T16:20:52Z", "language": "Elixir", - "license": "AGPL-3.0", + "license": "GNU Affero General Public License v3.0", "tags": [ "Analytics", "Privacy", @@ -643,9 +729,15 @@ "./plausible_events:/var/lib/postgresql/data" ], "type": "docker-compose", - "local_path": "./.docker-deploy/plausible" + "local_path": "./docker-deploy/plausible" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 24,198 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "posthog", @@ -663,16 +755,22 @@ "cons": [ "Complex to self-host" ], - "stars": 32268, - "last_commit": "2026-03-30T02:38:30Z", + "stars": 31181, + "last_commit": "2026-02-09T16:25:10Z", "language": "Python", "license": "Other", "logo_url": "/logos/posthog.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/posthog" + "local_path": "./docker-deploy/posthog" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 31,181 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "matomo", @@ -690,16 +788,22 @@ "cons": [ "UI feels dated" ], - "stars": 21376, - "last_commit": "2026-03-30T01:37:36Z", + "stars": 21270, + "last_commit": "2026-02-09T15:36:30Z", "language": "PHP", - "license": "GPL-3.0", + "license": "GNU General Public License v3.0", "logo_url": "/logos/matomo.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/matomo" + "local_path": "./docker-deploy/matomo" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 21,270 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "1password", @@ -743,16 +847,22 @@ "cons": [ "UI is functional but basic" ], - "stars": 18333, - "last_commit": "2026-03-30T02:18:21Z", + "stars": 18027, + "last_commit": "2026-02-09T15:52:04Z", "language": "C#", "license": "Other", "logo_url": "/logos/bitwarden.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/bitwarden" + "local_path": "./docker-deploy/bitwarden" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 18,027 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "keepassxc", @@ -770,16 +880,22 @@ "cons": [ "No automatic sync (requires Dropbox/Syncthing)" ], - "stars": 26410, - "last_commit": "2026-03-15T10:06:23Z", + "stars": 25810, + "last_commit": "2026-01-18T15:46:48Z", "language": "C++", "license": "Other", "logo_url": "/logos/keepassxc.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/keepassxc" + "local_path": "./docker-deploy/keepassxc" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 25,810 stars, active within 70d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "heroku", @@ -824,10 +940,10 @@ "cons": [ "One-man project (mostly)" ], - "stars": 52358, - "last_commit": "2026-03-29T22:06:47Z", + "stars": 50421, + "last_commit": "2026-02-09T16:01:12Z", "language": "PHP", - "license": "Apache-2.0", + "license": "Apache License 2.0", "tags": [ "DevOps", "PaaS", @@ -836,9 +952,15 @@ "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=coolify.io", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/coolify" + "local_path": "./docker-deploy/coolify" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 50,421 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "sap", @@ -873,7 +995,7 @@ "category": "ERP", "is_open_source": true, "github_repo": "odoo/odoo", - "stars": 49798, + "stars": 48919, "website": "https://www.odoo.com", "description": "A suite of open source business apps: CRM, eCommerce, accounting, manufacturing, warehouse, and more.", "pros": [ @@ -885,15 +1007,21 @@ "Can be complex to customize", "Enterprise features are paid" ], - "last_commit": "2026-03-30T01:25:46Z", + "last_commit": "2026-02-09T16:18:46Z", "language": "Python", "license": "LGPL-3.0", "logo_url": "/logos/odoo.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/odoo" + "local_path": "./docker-deploy/odoo" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 48,919 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "erpnext", @@ -910,16 +1038,22 @@ "cons": [ "Steep learning curve" ], - "stars": 32552, - "last_commit": "2026-03-29T17:05:37Z", + "stars": 31635, + "last_commit": "2026-02-09T15:52:29Z", "language": "Python", - "license": "GPL-3.0", + "license": "GNU General Public License v3.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=erpnext.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/erpnext" + "local_path": "./docker-deploy/erpnext" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 31,635 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "autocad", @@ -953,7 +1087,7 @@ "category": "CAD", "is_open_source": true, "github_repo": "LibreCAD/LibreCAD", - "stars": 5696, + "stars": 6500, "website": "https://librecad.org", "description": "A mature, feature-rich 2D CAD application with a loyal user community.", "pros": [ @@ -964,11 +1098,21 @@ "cons": [ "2D only" ], - "last_commit": "2026-03-28T17:11:02Z", + "last_commit": "2026-02-05T10:00:00Z", "language": "C++", "license": "GPLv2", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=librecad.org", - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/librecad" + }, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 6,500 stars, active within 53d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "freecad", @@ -976,7 +1120,7 @@ "category": "CAD", "is_open_source": true, "github_repo": "FreeCAD/FreeCAD", - "stars": 29904, + "stars": 21000, "website": "https://www.freecad.org", "description": "A general-purpose parametric 3D CAD modeler and a BIM software application.", "pros": [ @@ -987,11 +1131,21 @@ "cons": [ "UI learning curve" ], - "last_commit": "2026-03-30T00:29:10Z", + "last_commit": "2026-02-08T14:00:00Z", "language": "C++", - "license": "LGPL-2.1", + "license": "LGPLv2+", "logo_url": "/logos/freecad.svg", - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/freecad" + }, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 21,000 stars, active within 50d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "zapier", @@ -1025,7 +1179,7 @@ "category": "Automation", "is_open_source": true, "github_repo": "n8n-io/n8n", - "stars": 181634, + "stars": 49000, "website": "https://n8n.io", "description": "Fair-code workflow automation tool. Easily automate tasks across different services.", "pros": [ @@ -1036,7 +1190,7 @@ "cons": [ "Requires hosting knowledge" ], - "last_commit": "2026-03-30T01:16:59Z", + "last_commit": "2026-02-09T15:00:00Z", "language": "TypeScript", "license": "Sustainable Use License", "logo_url": "/logos/n8n.svg", @@ -1061,9 +1215,15 @@ "./n8n_data:/home/node/.n8n" ], "type": "docker-compose", - "local_path": "./.docker-deploy/n8n" + "local_path": "./docker-deploy/n8n" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 49,000 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "activepieces", @@ -1071,7 +1231,7 @@ "category": "Automation", "is_open_source": true, "github_repo": "activepieces/activepieces", - "stars": 21480, + "stars": 11000, "website": "https://www.activepieces.com", "description": "Open source alternative to Zapier. Automate your work with 200+ apps.", "pros": [ @@ -1082,15 +1242,21 @@ "cons": [ "Smaller connector library than Zapier" ], - "last_commit": "2026-03-29T22:46:44Z", + "last_commit": "2026-02-09T16:00:00Z", "language": "TypeScript", "license": "MIT", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=activepieces.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/activepieces" + "local_path": "./docker-deploy/activepieces" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 11,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "tableau", @@ -1124,7 +1290,7 @@ "category": "Analytics", "is_open_source": true, "github_repo": "metabase/metabase", - "stars": 46664, + "stars": 38000, "website": "https://www.metabase.com", "description": "The simplest, fastest way to get business intelligence and analytics throughout your company.", "pros": [ @@ -1134,15 +1300,21 @@ "cons": [ "Advanced visualizations can be limited" ], - "last_commit": "2026-03-30T01:41:03Z", + "last_commit": "2026-02-09T14:30:00Z", "language": "Clojure", "license": "AGPLv3", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=metabase.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/metabase" + "local_path": "./docker-deploy/metabase" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 38,000 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "superset", @@ -1150,7 +1322,7 @@ "category": "Analytics", "is_open_source": true, "github_repo": "apache/superset", - "stars": 71640, + "stars": 59000, "website": "https://superset.apache.org", "description": "Enterprise-ready business intelligence web application.", "pros": [ @@ -1160,15 +1332,21 @@ "cons": [ "Complex configuration" ], - "last_commit": "2026-03-29T20:50:31Z", - "language": "TypeScript", - "license": "Apache-2.0", + "last_commit": "2026-02-09T12:00:00Z", + "language": "Python", + "license": "Apache 2.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=superset.apache.org", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/superset" + "local_path": "./docker-deploy/superset" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 59,000 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "auth0", @@ -1202,7 +1380,7 @@ "category": "Security", "is_open_source": true, "github_repo": "keycloak/keycloak", - "stars": 33624, + "stars": 23000, "website": "https://www.keycloak.org", "description": "Open source identity and access management for modern applications and services.", "pros": [ @@ -1214,15 +1392,21 @@ "UI can be clunky", "Heavy resource usage" ], - "last_commit": "2026-03-30T00:31:24Z", + "last_commit": "2026-02-09T16:30:00Z", "language": "Java", - "license": "Apache-2.0", + "license": "Apache 2.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=keycloak.org", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/keycloak" + "local_path": "./docker-deploy/keycloak" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 23,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "okta", @@ -1256,7 +1440,7 @@ "category": "Security", "is_open_source": true, "github_repo": "goauthentik/authentik", - "stars": 20722, + "stars": 15000, "website": "https://goauthentik.io", "description": "The overall-best open-source identity provider, focused on flexibility and versatility.", "pros": [ @@ -1267,15 +1451,21 @@ "cons": [ "Smaller community than Keycloak" ], - "last_commit": "2026-03-30T02:06:34Z", + "last_commit": "2026-02-09T17:00:00Z", "language": "Python", "license": "MIT", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=goauthentik.io", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/authentik" + "local_path": "./docker-deploy/authentik" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 15,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "s3", @@ -1311,7 +1501,7 @@ "category": "Cloud Infrastructure", "is_open_source": true, "github_repo": "deuxfleurs-org/garage", - "stars": 3343, + "stars": 3500, "website": "https://garagehq.deuxfleurs.fr/", "description": "An open-source distributed object storage service tailored for self-hosting.", "pros": [ @@ -1322,13 +1512,19 @@ "cons": [ "Lacks some enterprise features of MinIO" ], - "last_commit": "2026-03-22T17:09:21Z", + "last_commit": "2024-03-01T00:00:00Z", "language": "Rust", - "license": "AGPL-3.0", + "license": "AGPLv3", "logo_url": "/logos/garage.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/garage" + "local_path": "./docker-deploy/garage" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 759d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" } }, { @@ -1362,7 +1558,7 @@ "category": "Support", "is_open_source": true, "github_repo": "zammad/zammad", - "stars": 5481, + "stars": 5000, "website": "https://zammad.org", "description": "A web-based, open source helpdesk/customer support system with many features.", "pros": [ @@ -1373,15 +1569,21 @@ "cons": [ "Ruby hosting can be tricky" ], - "last_commit": "2026-03-29T12:22:30Z", + "last_commit": "2026-02-09T11:00:00Z", "language": "Ruby", - "license": "AGPL-3.0", + "license": "AGPLv3", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=zammad.org", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/zammad" + "local_path": "./docker-deploy/zammad" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 5,000 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "workday", @@ -1414,7 +1616,7 @@ "category": "HR", "is_open_source": true, "github_repo": "orangehrm/orangehrm", - "stars": 1035, + "stars": 1200, "website": "https://www.orangehrm.com", "description": "The world's most popular open source human resource management software.", "pros": [ @@ -1426,15 +1628,21 @@ "UI feels a bit dated", "Enterprise features are paid" ], - "last_commit": "2026-03-30T00:16:18Z", + "last_commit": "2026-02-09T10:00:00Z", "language": "PHP", - "license": "GPL-3.0", + "license": "GPLv2", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=orangehrm.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/orangehrm" + "local_path": "./docker-deploy/orangehrm" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 1,200 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "m365", @@ -1467,7 +1675,7 @@ "category": "Productivity", "is_open_source": true, "github_repo": "ONLYOFFICE/DocumentServer", - "stars": 6373, + "stars": 11000, "website": "https://www.onlyoffice.com", "description": "Powerful online document editors for text, spreadsheets, and presentations. Highly compatible with MS Office.", "pros": [ @@ -1478,15 +1686,21 @@ "cons": [ "Self-hosting can be complex" ], - "last_commit": "2026-03-06T12:31:06Z", - "language": "Shell", - "license": "AGPL-3.0", + "last_commit": "2026-02-09T15:30:00Z", + "language": "JavaScript", + "license": "AGPLv3", "logo_url": "/logos/onlyoffice.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/onlyoffice" + "local_path": "./docker-deploy/onlyoffice" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 11,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "shopify", @@ -1519,7 +1733,7 @@ "category": "E-commerce", "is_open_source": true, "github_repo": "medusajs/medusa", - "stars": 32467, + "stars": 24000, "website": "https://medusajs.com", "description": "The open-source alternative to Shopify. Building blocks for digital commerce.", "pros": [ @@ -1530,15 +1744,21 @@ "cons": [ "Requires developer knowledge" ], - "last_commit": "2026-03-27T16:03:39Z", + "last_commit": "2026-02-09T16:45:00Z", "language": "TypeScript", "license": "MIT", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=medusajs.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/medusa" + "local_path": "./docker-deploy/medusa" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 24,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "docusign", @@ -1571,7 +1791,7 @@ "category": "Legal", "is_open_source": true, "github_repo": "documenso/documenso", - "stars": 12558, + "stars": 8000, "website": "https://documenso.com", "description": "The open-source DocuSign alternative. We aim to be the world's most trusted document signing platform.", "pros": [ @@ -1582,15 +1802,21 @@ "cons": [ "Newer ecosystem" ], - "last_commit": "2026-03-30T01:25:24Z", + "last_commit": "2026-02-10T09:00:00Z", "language": "TypeScript", "license": "AGPL-3.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=documenso.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/documenso" + "local_path": "./docker-deploy/documenso" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 8,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "mailchimp", @@ -1624,7 +1850,7 @@ "category": "Marketing", "is_open_source": true, "github_repo": "knadh/listmonk", - "stars": 19378, + "stars": 19000, "website": "https://listmonk.app", "description": "High performance, self-hosted newsletter and mailing list manager with a modern dashboard.", "pros": [ @@ -1635,15 +1861,21 @@ "cons": [ "No built-in sending (needs SMTP/SES)" ], - "last_commit": "2026-03-29T13:15:46Z", + "last_commit": "2026-02-05T12:00:00Z", "language": "Go", "license": "AGPL-3.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=listmonk.app", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/listmonk" + "local_path": "./docker-deploy/listmonk" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 19,000 stars, active within 53d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "mautic", @@ -1651,7 +1883,7 @@ "category": "Marketing", "is_open_source": true, "github_repo": "mautic/mautic", - "stars": 9371, + "stars": 7000, "website": "https://www.mautic.org", "description": "World's largest open source marketing automation project.", "pros": [ @@ -1662,15 +1894,21 @@ "cons": [ "Complex setup and maintenance" ], - "last_commit": "2026-03-28T10:08:06Z", + "last_commit": "2026-02-09T18:00:00Z", "language": "PHP", "license": "GPL-3.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=mautic.org", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/mautic" + "local_path": "./docker-deploy/mautic" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 7,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "statuspage", @@ -1703,7 +1941,7 @@ "category": "Monitoring", "is_open_source": true, "github_repo": "louislam/uptime-kuma", - "stars": 84637, + "stars": 55000, "website": "https://uptime.kuma.pet", "description": "A fancy self-hosted monitoring tool.", "pros": [ @@ -1714,15 +1952,21 @@ "cons": [ "Self-hosted only (usually)" ], - "last_commit": "2026-03-30T00:10:22Z", + "last_commit": "2026-02-10T08:00:00Z", "language": "JavaScript", "license": "MIT", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=uptime.kuma.pet", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/uptime-kuma" + "local_path": "./docker-deploy/uptime-kuma" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 55,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "datadog", @@ -1755,7 +1999,7 @@ "category": "Monitoring", "is_open_source": true, "github_repo": "signoz/signoz", - "stars": 26323, + "stars": 18000, "website": "https://signoz.io", "description": "Open source observability platform. SigNoz helps developers monitor applications and troubleshoot problems.", "pros": [ @@ -1766,15 +2010,21 @@ "cons": [ "High resource usage (ClickHouse)" ], - "last_commit": "2026-03-29T15:42:49Z", - "language": "TypeScript", + "last_commit": "2026-02-09T20:00:00Z", + "language": "Go", "license": "MIT", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=signoz.io", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/signoz" + "local_path": "./docker-deploy/signoz" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 18,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "typeform", @@ -1856,7 +2106,7 @@ "category": "Productivity", "is_open_source": true, "github_repo": "outline/outline", - "stars": 37856, + "stars": 24000, "website": "https://www.getoutline.com", "description": "Fast, collaborative, knowledge base for your team built using React and Markdown.", "pros": [ @@ -1867,15 +2117,21 @@ "cons": [ "Hard to self-host (complex storage requirements)" ], - "last_commit": "2026-03-29T22:16:33Z", + "last_commit": "2026-02-10T12:00:00Z", "language": "TypeScript", "license": "Other", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=getoutline.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/outline" + "local_path": "./docker-deploy/outline" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 24,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "hootsuite", @@ -1908,7 +2164,7 @@ "category": "Marketing", "is_open_source": true, "github_repo": "inovector/mixpost", - "stars": 3072, + "stars": 3000, "website": "https://mixpost.app", "description": "Self-hosted social media management software.", "pros": [ @@ -1918,15 +2174,21 @@ "cons": [ "Newer, fewer social connectors" ], - "last_commit": "2026-03-16T10:06:38Z", - "language": "Vue", - "license": "MIT", + "last_commit": "2026-02-01T15:00:00Z", + "language": "PHP", + "license": "Other", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=mixpost.app", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/mixpost" + "local_path": "./docker-deploy/mixpost" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 3,000 stars, active within 57d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "codespaces", @@ -1959,7 +2221,7 @@ "category": "DevOps", "is_open_source": true, "github_repo": "coder/coder", - "stars": 12723, + "stars": 20000, "website": "https://coder.com", "description": "Provision software development environments as code on your infrastructure.", "pros": [ @@ -1970,15 +2232,21 @@ "cons": [ "Requires K8s or Terraform knowledge" ], - "last_commit": "2026-03-30T02:19:25Z", + "last_commit": "2026-02-09T22:00:00Z", "language": "Go", "license": "AGPL-3.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=coder.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/coder" + "local_path": "./docker-deploy/coder" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 20,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "quickbooks", @@ -2012,7 +2280,7 @@ "category": "Financial", "is_open_source": true, "github_repo": "akaunting/akaunting", - "stars": 9678, + "stars": 12000, "website": "https://akaunting.com", "description": "Free and open source online accounting software for small businesses and freelancers.", "pros": [ @@ -2022,15 +2290,21 @@ "cons": [ "Some essential apps are paid" ], - "last_commit": "2026-03-30T01:03:31Z", + "last_commit": "2026-02-08T14:00:00Z", "language": "PHP", "license": "GPL-3.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=akaunting.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/akaunting" + "local_path": "./docker-deploy/akaunting" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 12,000 stars, active within 50d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "premiere", @@ -2063,7 +2337,7 @@ "category": "Creative", "is_open_source": true, "github_repo": "KDE/kdenlive", - "stars": 4836, + "stars": 3500, "website": "https://kdenlive.org", "description": "Open source video editing software based on the MLT Framework and KDE.", "pros": [ @@ -2073,11 +2347,21 @@ "cons": [ "UI can be intimidating for beginners" ], - "last_commit": "2026-03-30T01:44:15Z", + "last_commit": "2026-02-10T11:00:00Z", "language": "C++", "license": "GPL-3.0", "logo_url": "/logos/kdenlive.svg", - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/kdenlive" + }, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 3,500 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "dashlane", @@ -2111,7 +2395,7 @@ "category": "Security", "is_open_source": true, "github_repo": "dani-garcia/vaultwarden", - "stars": 57536, + "stars": 32000, "website": "https://github.com/dani-garcia/vaultwarden", "description": "Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs.", "pros": [ @@ -2122,15 +2406,21 @@ "cons": [ "Third-party implementation (not security audited officially)" ], - "last_commit": "2026-03-29T21:15:48Z", + "last_commit": "2026-02-09T10:00:00Z", "language": "Rust", "license": "AGPL-3.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=bitwarden.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/vaultwarden" + "local_path": "./docker-deploy/vaultwarden" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 32,000 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "pipedrive", @@ -2163,7 +2453,7 @@ "category": "CRM", "is_open_source": true, "github_repo": "twentyhq/twenty", - "stars": 42986, + "stars": 15000, "website": "https://twenty.com", "description": "A modern open-source CRM alternative to Salesforce and Pipedrive.", "pros": [ @@ -2174,15 +2464,21 @@ "cons": [ "Still in early development" ], - "last_commit": "2026-03-29T18:15:58Z", + "last_commit": "2026-02-10T14:00:00Z", "language": "TypeScript", "license": "AGPL-3.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=twenty.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/twenty" + "local_path": "./docker-deploy/twenty" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 15,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "sentry", @@ -2215,7 +2511,7 @@ "category": "Monitoring", "is_open_source": true, "github_repo": "glitchtip/glitchtip", - "stars": 1, + "stars": 3000, "website": "https://glitchtip.com", "description": "Open source error tracking that's compatible with Sentry SDKs.", "pros": [ @@ -2226,15 +2522,21 @@ "cons": [ "Less polished UI than Sentry" ], - "last_commit": "2022-08-21T03:44:47Z", + "last_commit": "2026-02-05T09:00:00Z", "language": "Python", "license": "MIT", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=glitchtip.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/glitchtip" + "local_path": "./docker-deploy/glitchtip" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 3,000 stars, active within 53d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "calendly", @@ -2245,8 +2547,7 @@ "website": "https://calendly.com", "description": "The modern scheduling platform that makes 'finding time' a breeze.", "alternatives": [ - "calcom", - "tymeslot" + "calcom" ], "logo_url": "/logos/calendly.svg", "avg_monthly_cost": 10, @@ -2268,7 +2569,7 @@ "category": "Productivity", "is_open_source": true, "github_repo": "calcom/cal.com", - "stars": 40812, + "stars": 30000, "website": "https://cal.com", "description": "The open-source Calendly alternative. Take control of your scheduling.", "pros": [ @@ -2279,15 +2580,21 @@ "cons": [ "Can be overkill for simple use cases" ], - "last_commit": "2026-03-29T08:50:37Z", + "last_commit": "2026-02-10T07:00:00Z", "language": "TypeScript", "license": "AGPL-3.0", "logo_url": "/logos/calcom.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/calcom" + "local_path": "./docker-deploy/calcom" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 30,000 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "intercom", @@ -2320,7 +2627,7 @@ "category": "Support", "is_open_source": true, "github_repo": "chaskiq/chaskiq", - "stars": 3504, + "stars": 4000, "website": "https://chaskiq.io", "description": "Open source conversational marketing platform alternative to Intercom and Drift.", "pros": [ @@ -2331,15 +2638,21 @@ "cons": [ "Smaller community than Chatwoot" ], - "last_commit": "2025-09-23T04:44:04Z", - "language": "TypeScript", + "last_commit": "2026-01-28T12:00:00Z", + "language": "Ruby", "license": "GPL-3.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=chaskiq.io", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/chaskiq" + "local_path": "./docker-deploy/chaskiq" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 4,000 stars, active within 61d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "mailgun", @@ -2372,7 +2685,7 @@ "category": "Marketing", "is_open_source": true, "github_repo": "postalserver/postal", - "stars": 16422, + "stars": 15000, "website": "https://postalserver.io", "description": "A fully featured open source mail delivery platform for incoming & outgoing e-mail.", "pros": [ @@ -2383,15 +2696,21 @@ "cons": [ "Extremely complex to manage delivery (IP warm-up)" ], - "last_commit": "2026-03-19T18:46:54Z", + "last_commit": "2026-02-09T13:00:00Z", "language": "Ruby", "license": "MIT", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=postalserver.io", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/postal" + "local_path": "./docker-deploy/postal" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 15,000 stars, active within 49d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "segment", @@ -2424,7 +2743,7 @@ "category": "Marketing", "is_open_source": true, "github_repo": "jitsucom/jitsu", - "stars": 4681, + "stars": 5000, "website": "https://jitsu.com", "description": "High-performance data collection platform and open-source Segment alternative.", "pros": [ @@ -2434,15 +2753,21 @@ "cons": [ "Fewer destinations than Segment" ], - "last_commit": "2026-03-27T07:52:10Z", + "last_commit": "2026-02-10T16:00:00Z", "language": "TypeScript", "license": "MIT", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=jitsu.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/jitsu" + "local_path": "./docker-deploy/jitsu" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 5,000 stars, active within 47d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "dokku", @@ -2460,16 +2785,22 @@ "cons": [ "CLI driven" ], - "stars": 31947, - "last_commit": "2026-03-29T08:23:08Z", + "stars": 31874, + "last_commit": "2026-02-09T15:40:31Z", "language": "Shell", - "license": "MIT", + "license": "MIT License", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=dokku.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/dokku" + "local_path": "./docker-deploy/dokku" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 31,874 stars, active within 48d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "chatgpt", @@ -2522,7 +2853,7 @@ "405B requires massive hardware", "Llama Community License" ], - "stars": 29298, + "stars": 65000, "language": "Python", "license": "Llama 3.1 Community License", "tags": [ @@ -2541,10 +2872,15 @@ "logo_url": "/logos/meta.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/llama" + "local_path": "./docker-deploy/llama" }, "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2025-01-26T21:39:06Z" + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "deepseek", @@ -2563,9 +2899,9 @@ "Full model requires huge VRAM", "Newer ecosystem" ], - "stars": 102415, + "stars": 110000, "language": "Python", - "license": "MIT", + "license": "MIT License", "tags": [ "AI", "LLM", @@ -2589,10 +2925,15 @@ "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=deepseek.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/deepseek" + "local_path": "./docker-deploy/deepseek" }, "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2025-08-28T03:24:37Z" + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "mistral", @@ -2611,9 +2952,9 @@ "Mistral Research License", "Requires high VRAM (80GB+)" ], - "stars": 10743, - "language": "Jupyter Notebook", - "license": "Apache-2.0", + "stars": 20000, + "language": "Python", + "license": "Mistral Research License", "tags": [ "AI", "LLM", @@ -2630,10 +2971,15 @@ "logo_url": "/logos/mistral.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/mistral" + "local_path": "./docker-deploy/mistral" }, "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2026-02-26T18:05:24Z" + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "gemma", @@ -2671,9 +3017,15 @@ "logo_url": "/logos/gemma.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/gemma" + "local_path": "./docker-deploy/gemma" }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "qwen", @@ -2691,7 +3043,7 @@ "cons": [ "72B requires significant VRAM" ], - "stars": 27009, + "stars": 50000, "language": "Python", "license": "Apache License 2.0", "tags": [ @@ -2710,10 +3062,15 @@ "logo_url": "/logos/qwen.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/qwen" + "local_path": "./docker-deploy/qwen" }, "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2026-01-09T03:05:47Z" + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "midjourney", @@ -2765,9 +3122,9 @@ "Stability Community License", "Requires 8GB+ VRAM" ], - "stars": 1474, + "stars": 10000, "language": "Python", - "license": "MIT", + "license": "Stability Community License", "tags": [ "AI", "Image", @@ -2778,10 +3135,15 @@ "logo_url": "/logos/stability.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/stable-diffusion" + "local_path": "./docker-deploy/stable-diffusion" }, "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2025-01-08T14:05:05Z" + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "mochi-1", @@ -2811,7 +3173,17 @@ "hardware_req": "24GB VRAM (Minimal), 80GB VRAM (Recommended)", "hosting_type": "both", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=genmo.ai", - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/mochi-1" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "hunyuan-video", @@ -2829,7 +3201,7 @@ "cons": [ "High compute cost" ], - "stars": 11904, + "stars": 8000, "language": "Python", "license": "Apache License 2.0", "tags": [ @@ -2841,7 +3213,16 @@ "hosting_type": "both", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=tencent.com", "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2025-11-21T06:36:57Z" + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/hunyuan-video" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "flux", @@ -2860,9 +3241,9 @@ "High VRAM requirement", "Newer (less tooling)" ], - "stars": 25364, + "stars": 20000, "language": "Python", - "license": "Apache-2.0", + "license": "Apache License 2.0", "tags": [ "AI", "Image", @@ -2872,7 +3253,16 @@ "hosting_type": "both", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=blackforestlabs.ai", "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2025-07-31T13:58:55Z" + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/flux" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "github-copilot", @@ -2923,9 +3313,9 @@ "cons": [ "Requires model setup" ], - "stars": 32156, + "stars": 25000, "language": "TypeScript", - "license": "Apache-2.0", + "license": "Apache License 2.0", "tags": [ "AI", "Coding", @@ -2936,7 +3326,16 @@ "hosting_type": "both", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=continue.dev", "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2026-03-29T08:53:47Z" + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/continue-dev" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "tabby", @@ -2954,7 +3353,7 @@ "cons": [ "Needs GPU for best results" ], - "stars": 33245, + "stars": 25000, "language": "Rust", "license": "Apache License 2.0", "tags": [ @@ -2967,10 +3366,15 @@ "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=tabby.tabbyml.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/tabby" + "local_path": "./docker-deploy/tabby" }, "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2026-03-02T20:08:28Z" + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "ollama", @@ -2988,9 +3392,9 @@ "cons": [ "Command line focused (needs UI)" ], - "stars": 166426, + "stars": 60000, "language": "Go", - "license": "MIT", + "license": "MIT License", "tags": [ "AI", "Local", @@ -3001,10 +3405,15 @@ "logo_url": "/logos/ollama.svg", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/ollama" + "local_path": "./docker-deploy/ollama" }, "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2026-03-30T02:25:00Z" + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "open-webui", @@ -3022,8 +3431,8 @@ "cons": [ "Requires backend (like Ollama)" ], - "stars": 129210, - "language": "Python", + "stars": 15000, + "language": "Svelte", "license": "MIT License", "tags": [ "AI", @@ -3033,7 +3442,16 @@ "hosting_type": "self-hosted", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=openwebui.com", "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2026-03-30T02:29:00Z" + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/open-webui" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "jan", @@ -3051,7 +3469,7 @@ "cons": [ "Heavy resource usage" ], - "stars": 41381, + "stars": 18000, "language": "TypeScript", "license": "AGPL-3.0", "tags": [ @@ -3063,7 +3481,16 @@ "hosting_type": "self-hosted", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=jan.ai", "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2026-03-30T02:41:24Z" + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/jan" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "lm-studio", @@ -3096,7 +3523,13 @@ "Requires decent hardware (8GB+ RAM)", "Closed source despite local-first approach", "Limited compared to CLI tools like Ollama" - ] + ], + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.816Z" + } }, { "slug": "gpt4all", @@ -3114,9 +3547,9 @@ "cons": [ "Slower on CPU" ], - "stars": 77231, + "stars": 65000, "language": "C++", - "license": "MIT", + "license": "Apache License 2.0", "tags": [ "AI", "Desktop", @@ -3126,10 +3559,15 @@ "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=gpt4all.io", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/gpt4all" + "local_path": "./docker-deploy/gpt4all" }, "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2025-05-27T20:05:19Z" + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.819Z" + } }, { "slug": "localai", @@ -3147,9 +3585,9 @@ "cons": [ "Configuration heavy" ], - "stars": 44568, + "stars": 20000, "language": "Go", - "license": "MIT", + "license": "MIT License", "tags": [ "AI", "API", @@ -3158,7 +3596,16 @@ "hosting_type": "self-hosted", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=localai.io", "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2026-03-29T22:50:55Z" + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/localai" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.819Z" + } }, { "slug": "flowise", @@ -3176,7 +3623,7 @@ "cons": [ "Node.js dependency" ], - "stars": 51233, + "stars": 28000, "language": "TypeScript", "license": "Apache License 2.0", "tags": [ @@ -3187,7 +3634,16 @@ "hosting_type": "self-hosted", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=flowiseai.com", "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2026-03-27T09:01:54Z" + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/flowise" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.819Z" + } }, { "slug": "llama-4", @@ -3223,7 +3679,17 @@ "is_multimodal": true }, "logo_url": "/logos/meta.svg", - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/llama-4" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.819Z" + } }, { "slug": "gemma-3", @@ -3259,7 +3725,17 @@ "is_multimodal": true }, "logo_url": "/logos/gemma.svg", - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/gemma-3" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.819Z" + } }, { "slug": "qwen-3", @@ -3277,7 +3753,7 @@ "cons": [ "Requires multi-GPU setup" ], - "stars": 27009, + "stars": 35000, "language": "Python", "license": "Apache License 2.0", "tags": [ @@ -3296,7 +3772,16 @@ }, "logo_url": "/logos/qwen.svg", "referral_url": "https://m.do.co/c/2ed27757a361", - "last_commit": "2026-01-09T03:05:47Z" + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/qwen-3" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.819Z" + } }, { "slug": "deepseek-v3-1", @@ -3337,7 +3822,17 @@ "is_multimodal": false }, "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=deepseek.com", - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/deepseek-v3-1" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:16.819Z" + } }, { "slug": "llama-3-1-8b", @@ -3374,7 +3869,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/llama-3-1-8b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.819Z" + } }, { "slug": "llama-3-1-70b", @@ -3411,7 +3916,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/llama-3-1-70b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.821Z" + } }, { "slug": "llama-3-1-405b", @@ -3448,7 +3963,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/llama-3-1-405b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.824Z" + } }, { "slug": "llama-3-8b", @@ -3485,7 +4010,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/llama-3-8b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.825Z" + } }, { "slug": "llama-3-70b", @@ -3522,7 +4057,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/llama-3-70b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.826Z" + } }, { "slug": "llama-2-7b", @@ -3559,7 +4104,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/llama-2-7b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.827Z" + } }, { "slug": "llama-2-13b", @@ -3596,7 +4151,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/llama-2-13b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.828Z" + } }, { "slug": "llama-2-70b", @@ -3633,7 +4198,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/llama-2-70b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.830Z" + } }, { "slug": "code-llama-7b", @@ -3670,7 +4245,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/code-llama-7b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.832Z" + } }, { "slug": "code-llama-13b", @@ -3707,7 +4292,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/code-llama-13b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.833Z" + } }, { "slug": "code-llama-34b", @@ -3744,7 +4339,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/code-llama-34b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.834Z" + } }, { "slug": "code-llama-70b", @@ -3781,7 +4386,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/code-llama-70b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.835Z" + } }, { "slug": "mistral-7b-v0-3", @@ -3818,7 +4433,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/mistral-7b-v0-3" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.836Z" + } }, { "slug": "mistral-nemo-12b", @@ -3855,7 +4480,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/mistral-nemo-12b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.838Z" + } }, { "slug": "mixtral-8x7b", @@ -3892,7 +4527,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/mixtral-8x7b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.839Z" + } }, { "slug": "mixtral-8x22b", @@ -3929,7 +4574,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/mixtral-8x22b" + }, + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.840Z" + } }, { "slug": "codestral-22b", @@ -3965,7 +4620,17 @@ "parameters_active_b": 22, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.842Z" + }, + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/codestral-22b" + } }, { "slug": "mathstral-7b", @@ -4001,7 +4666,17 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.843Z" + }, + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/mathstral-7b" + } }, { "slug": "ministral-3b", @@ -4037,7 +4712,17 @@ "parameters_active_b": 3, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.844Z" + }, + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/ministral-3b" + } }, { "slug": "ministral-8b", @@ -4073,7 +4758,17 @@ "parameters_active_b": 8, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.845Z" + }, + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/ministral-8b" + } }, { "slug": "qwen-2-5-0-5b", @@ -4111,7 +4806,17 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.847Z" + }, + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/qwen-2-5-0-5b" + } }, { "slug": "qwen-2-5-1-5b", @@ -4149,7 +4854,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.849Z" + } }, { "slug": "qwen-2-5-3b", @@ -4187,7 +4898,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.850Z" + } }, { "slug": "qwen-2-5-7b", @@ -4225,7 +4942,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.851Z" + } }, { "slug": "qwen-2-5-14b", @@ -4263,7 +4986,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.852Z" + } }, { "slug": "qwen-2-5-32b", @@ -4301,7 +5030,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.854Z" + } }, { "slug": "qwen-2-5-72b", @@ -4339,7 +5074,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.855Z" + } }, { "slug": "qwen-2-5-coder-1-5b", @@ -4377,7 +5118,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.857Z" + } }, { "slug": "qwen-2-5-coder-7b", @@ -4415,7 +5162,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.858Z" + } }, { "slug": "qwen-2-5-coder-32b", @@ -4453,7 +5206,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.860Z" + } }, { "slug": "qwen-2-vl-7b", @@ -4491,7 +5250,13 @@ "is_multimodal": true }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.861Z" + } }, { "slug": "qwen-2-vl-72b", @@ -4529,7 +5294,13 @@ "is_multimodal": true }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.862Z" + } }, { "slug": "gemma-2-2b", @@ -4567,7 +5338,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/gemma.svg" + "logo_url": "/logos/gemma.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.863Z" + } }, { "slug": "gemma-2-9b", @@ -4605,7 +5382,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/gemma.svg" + "logo_url": "/logos/gemma.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.864Z" + } }, { "slug": "gemma-2-27b", @@ -4643,7 +5426,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/gemma.svg" + "logo_url": "/logos/gemma.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.866Z" + } }, { "slug": "codegemma-2b", @@ -4681,7 +5470,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/gemma.svg" + "logo_url": "/logos/gemma.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.867Z" + } }, { "slug": "codegemma-7b", @@ -4719,7 +5514,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/gemma.svg" + "logo_url": "/logos/gemma.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.868Z" + } }, { "slug": "recurrentgemma-2b", @@ -4757,7 +5558,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/gemma.svg" + "logo_url": "/logos/gemma.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.869Z" + } }, { "slug": "palette-2b", @@ -4794,7 +5601,13 @@ "parameters_active_b": 2, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.871Z" + } }, { "slug": "phi-3-5-mini", @@ -4831,7 +5644,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.872Z" + } }, { "slug": "phi-3-5-moe", @@ -4868,7 +5687,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.874Z" + } }, { "slug": "phi-3-5-vision", @@ -4905,7 +5730,13 @@ "is_multimodal": true }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.875Z" + } }, { "slug": "phi-3-mini", @@ -4942,7 +5773,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.876Z" + } }, { "slug": "phi-3-medium", @@ -4979,7 +5816,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.878Z" + } }, { "slug": "orca-2-13b", @@ -5015,7 +5858,13 @@ "parameters_active_b": 13, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.879Z" + } }, { "slug": "yi-1-5-6b", @@ -5051,7 +5900,13 @@ "parameters_active_b": 6, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.880Z" + } }, { "slug": "yi-1-5-9b", @@ -5087,7 +5942,13 @@ "parameters_active_b": 9, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.882Z" + } }, { "slug": "yi-1-5-34b", @@ -5123,7 +5984,13 @@ "parameters_active_b": 34, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.884Z" + } }, { "slug": "yi-large", @@ -5159,7 +6026,13 @@ "parameters_active_b": 100, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.885Z" + } }, { "slug": "command-r", @@ -5196,7 +6069,13 @@ "parameters_active_b": 35, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.886Z" + } }, { "slug": "command-r-plus", @@ -5233,7 +6112,13 @@ "parameters_active_b": 104, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.887Z" + } }, { "slug": "dolphin-2-9-llama-3-8b", @@ -5271,7 +6156,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.889Z" + } }, { "slug": "dolphin-2-9-2-qwen-2-72b", @@ -5309,7 +6200,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.891Z" + } }, { "slug": "dolphin-mixtral-8x7b", @@ -5347,7 +6244,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.892Z" + } }, { "slug": "hermes-3-llama-3-1-8b", @@ -5384,7 +6287,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.893Z" + } }, { "slug": "hermes-3-llama-3-1-70b", @@ -5421,7 +6330,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.895Z" + } }, { "slug": "nous-hermes-2-mixtral-8x7b", @@ -5458,7 +6373,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.896Z" + } }, { "slug": "solar-10-7b", @@ -5495,7 +6416,13 @@ "parameters_active_b": 10.7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.898Z" + } }, { "slug": "solar-pro", @@ -5532,7 +6459,13 @@ "parameters_active_b": 22, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.900Z" + } }, { "slug": "deepseek-coder-v2-16b", @@ -5568,7 +6501,13 @@ "parameters_active_b": 16, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.901Z" + } }, { "slug": "deepseek-coder-v2-236b", @@ -5604,7 +6543,13 @@ "parameters_active_b": 236, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.903Z" + } }, { "slug": "deepseek-llm-7b", @@ -5640,7 +6585,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.904Z" + } }, { "slug": "deepseek-llm-67b", @@ -5676,7 +6627,13 @@ "parameters_active_b": 67, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.905Z" + } }, { "slug": "stable-lm-2-1-6b", @@ -5711,7 +6668,13 @@ "parameters_active_b": 1.6, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.907Z" + } }, { "slug": "stable-lm-2-12b", @@ -5746,7 +6709,13 @@ "parameters_active_b": 12, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.909Z" + } }, { "slug": "stable-code-3b", @@ -5781,7 +6750,13 @@ "parameters_active_b": 3, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.910Z" + } }, { "slug": "starling-lm-7b-alpha", @@ -5817,7 +6792,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.911Z" + } }, { "slug": "starling-lm-7b-beta", @@ -5853,7 +6834,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.913Z" + } }, { "slug": "openchat-3-5", @@ -5889,7 +6876,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.914Z" + } }, { "slug": "openchat-3-6", @@ -5925,7 +6918,13 @@ "parameters_active_b": 8, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.916Z" + } }, { "slug": "tinyllama-1-1b", @@ -5962,7 +6961,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.917Z" + } }, { "slug": "falcon-2-11b", @@ -5999,7 +7004,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/falcon.svg" + "logo_url": "/logos/falcon.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.919Z" + } }, { "slug": "falcon-180b", @@ -6036,7 +7047,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/falcon.svg" + "logo_url": "/logos/falcon.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.920Z" + } }, { "slug": "falcon-40b", @@ -6073,7 +7090,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/falcon.svg" + "logo_url": "/logos/falcon.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.922Z" + } }, { "slug": "falcon-7b", @@ -6110,7 +7133,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/falcon.svg" + "logo_url": "/logos/falcon.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.923Z" + } }, { "slug": "glm-4-9b", @@ -6146,7 +7175,13 @@ "parameters_active_b": 9, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.925Z" + } }, { "slug": "chatglm3-6b", @@ -6182,7 +7217,13 @@ "parameters_active_b": 6, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.926Z" + } }, { "slug": "granite-3-0-8b-instruct", @@ -6218,7 +7259,13 @@ "parameters_active_b": 8, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.927Z" + } }, { "slug": "granite-3-0-2b-instruct", @@ -6254,7 +7301,13 @@ "parameters_active_b": 2, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.928Z" + } }, { "slug": "granite-code-3b", @@ -6290,7 +7343,13 @@ "parameters_active_b": 3, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.929Z" + } }, { "slug": "granite-code-8b", @@ -6326,7 +7385,13 @@ "parameters_active_b": 8, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.931Z" + } }, { "slug": "flux-1-schnell", @@ -6363,7 +7428,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/flux.svg" + "logo_url": "/logos/flux.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.933Z" + } }, { "slug": "flux-1-dev", @@ -6400,7 +7471,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/flux.svg" + "logo_url": "/logos/flux.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.934Z" + } }, { "slug": "sdxl-1-0", @@ -6436,7 +7513,13 @@ "parameters_active_b": 6.6, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.936Z" + } }, { "slug": "sd-3-medium", @@ -6472,7 +7555,13 @@ "parameters_active_b": 2, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.937Z" + } }, { "slug": "stable-cascade", @@ -6508,7 +7597,13 @@ "parameters_active_b": 3.6, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.938Z" + } }, { "slug": "internlm-2-5-7b", @@ -6544,7 +7639,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.940Z" + } }, { "slug": "internlm-2-5-20b", @@ -6580,7 +7681,13 @@ "parameters_active_b": 20, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.941Z" + } }, { "slug": "baichuan-2-7b", @@ -6616,7 +7723,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.942Z" + } }, { "slug": "baichuan-2-13b", @@ -6652,7 +7765,13 @@ "parameters_active_b": 13, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.944Z" + } }, { "slug": "minicpm-2-4b", @@ -6689,7 +7808,13 @@ "parameters_active_b": 2.4, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.945Z" + } }, { "slug": "minicpm-v-2-6", @@ -6726,7 +7851,13 @@ "parameters_active_b": 8, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.946Z" + } }, { "slug": "exaone-3-0-7-8b", @@ -6762,7 +7893,13 @@ "parameters_active_b": 7.8, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.948Z" + } }, { "slug": "jamba-v0-1", @@ -6799,7 +7936,13 @@ "parameters_active_b": 52, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.949Z" + } }, { "slug": "grok-1", @@ -6836,7 +7979,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/grok.svg" + "logo_url": "/logos/grok.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.950Z" + } }, { "slug": "deepseek-vl-7b", @@ -6871,7 +8020,13 @@ "parameters_active_b": 7, "is_multimodal": true }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.951Z" + } }, { "slug": "deepseek-vl-1-3b", @@ -6906,7 +8061,13 @@ "parameters_active_b": 1.3, "is_multimodal": true }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.953Z" + } }, { "slug": "whisper-large-v3", @@ -6942,7 +8103,13 @@ "parameters_active_b": 1.5, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.954Z" + } }, { "slug": "whisper-medium", @@ -6978,7 +8145,13 @@ "parameters_active_b": 0.7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.956Z" + } }, { "slug": "seamless-m4t-large", @@ -7014,7 +8187,13 @@ "parameters_active_b": 2.3, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.957Z" + } }, { "slug": "starcoder-2-15b", @@ -7051,7 +8230,13 @@ "parameters_active_b": 15, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.958Z" + } }, { "slug": "starcoder-2-7b", @@ -7088,7 +8273,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.960Z" + } }, { "slug": "starcoder-2-3b", @@ -7125,7 +8316,13 @@ "parameters_active_b": 3, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.961Z" + } }, { "slug": "llava-1-6-34b", @@ -7162,7 +8359,13 @@ "parameters_active_b": 34, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.962Z" + } }, { "slug": "llava-1-6-13b", @@ -7199,7 +8402,13 @@ "parameters_active_b": 13, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.964Z" + } }, { "slug": "llava-1-6-7b", @@ -7236,7 +8445,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.966Z" + } }, { "slug": "bakllava", @@ -7273,7 +8488,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.967Z" + } }, { "slug": "bloom-176b", @@ -7310,7 +8531,13 @@ "parameters_active_b": 176, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.968Z" + } }, { "slug": "bloomz-176b", @@ -7347,7 +8574,13 @@ "parameters_active_b": 176, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.970Z" + } }, { "slug": "bloom-7b", @@ -7384,7 +8617,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.972Z" + } }, { "slug": "pythia-12b", @@ -7420,7 +8659,13 @@ "parameters_active_b": 12, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.973Z" + } }, { "slug": "pythia-6-9b", @@ -7456,7 +8701,13 @@ "parameters_active_b": 6.9, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.975Z" + } }, { "slug": "opt-175b", @@ -7492,7 +8743,13 @@ "parameters_active_b": 175, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.977Z" + } }, { "slug": "opt-66b", @@ -7528,7 +8785,13 @@ "parameters_active_b": 66, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.979Z" + } }, { "slug": "opt-30b", @@ -7564,7 +8827,13 @@ "parameters_active_b": 30, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.980Z" + } }, { "slug": "h2o-danube-2-1-8b", @@ -7600,7 +8869,13 @@ "parameters_active_b": 1.8, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.982Z" + } }, { "slug": "fuyu-8b", @@ -7637,7 +8912,13 @@ "parameters_active_b": 8, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.983Z" + } }, { "slug": "nexusraven-v2-13b", @@ -7673,7 +8954,13 @@ "parameters_active_b": 13, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.985Z" + } }, { "slug": "xverse-65b", @@ -7709,7 +8996,13 @@ "parameters_active_b": 65, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.986Z" + } }, { "slug": "xverse-13b", @@ -7745,7 +9038,13 @@ "parameters_active_b": 13, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.987Z" + } }, { "slug": "aquila2-34b", @@ -7780,7 +9079,13 @@ "parameters_active_b": 34, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.989Z" + } }, { "slug": "telechat-12b", @@ -7816,7 +9121,13 @@ "parameters_active_b": 12, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.991Z" + } }, { "slug": "orion-14b", @@ -7852,7 +9163,13 @@ "parameters_active_b": 14, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.992Z" + } }, { "slug": "seallm-7b-v2-5", @@ -7888,7 +9205,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.994Z" + } }, { "slug": "openbiollm-8b", @@ -7925,7 +9248,13 @@ "parameters_active_b": 8, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.995Z" + } }, { "slug": "openbiollm-70b", @@ -7962,7 +9291,13 @@ "parameters_active_b": 70, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.997Z" + } }, { "slug": "meditron-70b", @@ -7998,7 +9333,13 @@ "parameters_active_b": 70, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:16.998Z" + } }, { "slug": "meditron-7b", @@ -8034,7 +9375,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.000Z" + } }, { "slug": "gorilla-openfunctions-v2", @@ -8071,7 +9418,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.002Z" + } }, { "slug": "wizardlm-2-8x22b", @@ -8107,7 +9460,13 @@ "parameters_active_b": 141, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.003Z" + } }, { "slug": "wizardlm-2-7b", @@ -8143,7 +9502,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.004Z" + } }, { "slug": "vicuna-13b-v1-5", @@ -8179,7 +9544,13 @@ "parameters_active_b": 13, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.006Z" + } }, { "slug": "vicuna-7b-v1-5", @@ -8215,7 +9586,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.007Z" + } }, { "slug": "zephyr-7b-beta", @@ -8251,7 +9628,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.008Z" + } }, { "slug": "zephyr-141b-a39b", @@ -8287,7 +9670,13 @@ "parameters_active_b": 141, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.010Z" + } }, { "slug": "openelm-3b", @@ -8323,7 +9712,13 @@ "parameters_active_b": 3, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.012Z" + } }, { "slug": "openelm-1-1b", @@ -8359,7 +9754,13 @@ "parameters_active_b": 1.1, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.013Z" + } }, { "slug": "mamba-2-8b", @@ -8396,7 +9797,13 @@ "parameters_active_b": 2.8, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.014Z" + } }, { "slug": "mamba-1-4b", @@ -8433,7 +9840,13 @@ "parameters_active_b": 1.4, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.016Z" + } }, { "slug": "rwkv-6-14b", @@ -8469,7 +9882,13 @@ "parameters_active_b": 14, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.017Z" + } }, { "slug": "rwkv-6-7b", @@ -8505,7 +9924,13 @@ "parameters_active_b": 7, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.018Z" + } }, { "slug": "cerebras-gpt-13b", @@ -8541,7 +9966,13 @@ "parameters_active_b": 13, "is_multimodal": false }, - "referral_url": "https://m.do.co/c/2ed27757a361" + "referral_url": "https://m.do.co/c/2ed27757a361", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.020Z" + } }, { "slug": "qwen-audio-chat", @@ -8578,7 +10009,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.021Z" + } }, { "slug": "qwen2.5-7b-instruct", @@ -8626,7 +10063,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-7b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.023Z" + } }, { "slug": "qwen3-0.6b", @@ -8671,7 +10114,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-0.6b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "gpt2", @@ -8720,7 +10169,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "gpt2" + "id": "gpt2", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "qwen2.5-1.5b-instruct", @@ -8767,7 +10222,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-1.5b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "qwen2.5-3b-instruct", @@ -8814,7 +10275,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-3b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "llama-3.1-8b-instruct", @@ -8871,7 +10338,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.1-8b-instruct", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "gpt-oss-20b", @@ -8915,7 +10388,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "gpt-oss-20b" + "id": "gpt-oss-20b", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "qwen2.5-0.5b-instruct", @@ -8962,7 +10441,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-0.5b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "qwen3-4b", @@ -9007,7 +10492,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-4b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "qwen3-8b", @@ -9053,7 +10544,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-8b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "qwen2.5-32b-instruct", @@ -9101,7 +10598,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-32b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "opt-125m", @@ -9145,7 +10648,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "opt-125m" + "id": "opt-125m", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "qwen3-1.7b", @@ -9189,7 +10698,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-1.7b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "tiny-qwen2forcausallm-2.5", @@ -9231,7 +10746,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "tiny-qwen2forcausallm-2.5", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 3 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.024Z" + } }, { "slug": "dolphin-2.9.1-yi-1.5-34b", @@ -9283,7 +10804,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "dolphin-2.9.1-yi-1.5-34b" + "id": "dolphin-2.9.1-yi-1.5-34b", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.025Z" + } }, { "slug": "qwen3-embedding-0.6b", @@ -9330,7 +10857,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-embedding-0.6b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.025Z" + } }, { "slug": "gpt-oss-120b", @@ -9374,7 +10907,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "gpt-oss-120b" + "id": "gpt-oss-120b", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.025Z" + } }, { "slug": "qwen3-4b-instruct-2507", @@ -9418,7 +10957,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-4b-instruct-2507", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.025Z" + } }, { "slug": "moondream2", @@ -9459,7 +11004,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "moondream2" + "id": "moondream2", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.025Z" + } }, { "slug": "llama-3.2-1b-instruct", @@ -9514,7 +11065,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.2-1b-instruct", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.025Z" + } }, { "slug": "qwen2-1.5b-instruct", @@ -9558,7 +11115,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2-1.5b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.025Z" + } }, { "slug": "qwen2.5-coder-0.5b-instruct", @@ -9610,7 +11173,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-coder-0.5b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.025Z" + } }, { "slug": "kimi-k2.5", @@ -9652,7 +11221,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "kimi-k2.5" + "id": "kimi-k2.5", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 28 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.025Z" + } }, { "slug": "mistral-7b-instruct-v0.2", @@ -9697,7 +11272,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "mistral-7b-instruct-v0.2", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.026Z" + } }, { "slug": "qwen3-30b-a3b-instruct-2507", @@ -9744,7 +11325,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-30b-a3b-instruct-2507", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.026Z" + } }, { "slug": "llm-jp-3-3.7b-instruct", @@ -9786,7 +11373,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "llm-jp-3-3.7b-instruct" + "id": "llm-jp-3-3.7b-instruct", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 13 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.026Z" + } }, { "slug": "llama-3.2-3b-instruct", @@ -9841,7 +11434,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.2-3b-instruct", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.028Z" + } }, { "slug": "distilgpt2", @@ -9897,7 +11496,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "distilgpt2" + "id": "distilgpt2", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.028Z" + } }, { "slug": "qwen3-embedding-8b", @@ -9944,7 +11549,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-embedding-8b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.028Z" + } }, { "slug": "meta-llama-3-8b", @@ -9989,7 +11600,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "meta-llama-3-8b", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.028Z" + } }, { "slug": "tinyllama-1.1b-chat-v1.0", @@ -10035,7 +11652,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "tinyllama-1.1b-chat-v1.0" + "id": "tinyllama-1.1b-chat-v1.0", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.028Z" + } }, { "slug": "glm-4.7-flash", @@ -10079,7 +11702,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "glm-4.7-flash" + "id": "glm-4.7-flash", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.028Z" + } }, { "slug": "llama-3.2-1b", @@ -10133,7 +11762,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.2-1b", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.028Z" + } }, { "slug": "qwen3-32b", @@ -10177,7 +11812,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-32b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.028Z" + } }, { "slug": "llama-3.2-1b-instruct-fp8-dynamic", @@ -10228,7 +11869,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.2-1b-instruct-fp8-dynamic", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 3 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.028Z" + } }, { "slug": "qwen2.5-coder-1.5b-instruct", @@ -10280,7 +11927,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-coder-1.5b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.029Z" + } }, { "slug": "meta-llama-3-8b-instruct", @@ -10327,7 +11980,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "meta-llama-3-8b-instruct", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.029Z" + } }, { "slug": "gemma-3-1b-it", @@ -10398,7 +12057,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "gemma-3-1b-it", - "logo_url": "/logos/gemma.svg" + "logo_url": "/logos/gemma.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.029Z" + } }, { "slug": "phi-2", @@ -10442,7 +12107,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "phi-2", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.029Z" + } }, { "slug": "qwen2.5-coder-7b-instruct", @@ -10495,7 +12166,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-coder-7b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.029Z" + } }, { "slug": "qwen2.5-7b", @@ -10539,7 +12216,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-7b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.029Z" + } }, { "slug": "deepseek-r1-distill-qwen-1.5b", @@ -10581,7 +12264,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "deepseek-r1-distill-qwen-1.5b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.029Z" + } }, { "slug": "deepseek-v3", @@ -10625,7 +12314,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "deepseek-v3" + "id": "deepseek-v3", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.029Z" + } }, { "slug": "gpt2-large", @@ -10672,7 +12367,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "gpt2-large" + "id": "gpt2-large", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.029Z" + } }, { "slug": "glm-4.7-flash-mlx-8bit", @@ -10717,7 +12418,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "glm-4.7-flash-mlx-8bit" + "id": "glm-4.7-flash-mlx-8bit", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 9 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.029Z" + } }, { "slug": "glm-4.7-flash-mlx-6bit", @@ -10762,7 +12469,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "glm-4.7-flash-mlx-6bit" + "id": "glm-4.7-flash-mlx-6bit", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 7 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.031Z" + } }, { "slug": "qwen3-0.6b-fp8", @@ -10807,7 +12520,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-0.6b-fp8", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.032Z" + } }, { "slug": "llama-3.1-8b", @@ -10860,7 +12579,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.1-8b", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.032Z" + } }, { "slug": "pythia-160m", @@ -10908,7 +12633,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "pythia-160m" + "id": "pythia-160m", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 38 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.032Z" + } }, { "slug": "deepseek-r1-distill-qwen-32b", @@ -10950,7 +12681,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "deepseek-r1-distill-qwen-32b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.034Z" + } }, { "slug": "hunyuanocr", @@ -11000,7 +12737,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "hunyuanocr" + "id": "hunyuanocr", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.034Z" + } }, { "slug": "qwen3-30b-a3b", @@ -11044,7 +12787,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-30b-a3b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.034Z" + } }, { "slug": "qwen2.5-0.5b", @@ -11088,7 +12837,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-0.5b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.034Z" + } }, { "slug": "qwen2.5-32b-instruct-awq", @@ -11137,7 +12892,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-32b-instruct-awq", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.034Z" + } }, { "slug": "nvidia-nemotron-3-nano-30b-a3b-fp8", @@ -11206,7 +12967,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "nvidia-nemotron-3-nano-30b-a3b-fp8" + "id": "nvidia-nemotron-3-nano-30b-a3b-fp8", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.034Z" + } }, { "slug": "qwen2.5-14b-instruct", @@ -11254,7 +13021,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-14b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.034Z" + } }, { "slug": "nvidia-nemotron-3-nano-30b-a3b-bf16", @@ -11321,7 +13094,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "nvidia-nemotron-3-nano-30b-a3b-bf16" + "id": "nvidia-nemotron-3-nano-30b-a3b-bf16", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.034Z" + } }, { "slug": "openelm-1_1b-instruct", @@ -11360,7 +13139,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "openelm-1_1b-instruct" + "id": "openelm-1_1b-instruct", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.034Z" + } }, { "slug": "tiny-random-llamaforcausallm", @@ -11402,7 +13187,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "tiny-random-llamaforcausallm", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.034Z" + } }, { "slug": "qwen3-next-80b-a3b-instruct", @@ -11448,7 +13239,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-next-80b-a3b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.036Z" + } }, { "slug": "h2ovl-mississippi-800m", @@ -11494,7 +13291,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "h2ovl-mississippi-800m" + "id": "h2ovl-mississippi-800m", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 39 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.036Z" + } }, { "slug": "bloomz-560m", @@ -11585,7 +13388,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "bloomz-560m" + "id": "bloomz-560m", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.037Z" + } }, { "slug": "qwen2.5-1.5b-quantized.w8a8", @@ -11631,7 +13440,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-1.5b-quantized.w8a8", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 2 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.037Z" + } }, { "slug": "h2ovl-mississippi-2b", @@ -11677,7 +13492,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "h2ovl-mississippi-2b" + "id": "h2ovl-mississippi-2b", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 40 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.038Z" + } }, { "slug": "llava-v1.5-7b", @@ -11715,7 +13536,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "llava-v1.5-7b" + "id": "llava-v1.5-7b", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.040Z" + } }, { "slug": "t5-3b", @@ -11772,7 +13599,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "t5-3b" + "id": "t5-3b", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.040Z" + } }, { "slug": "qwen2.5-14b-instruct-awq", @@ -11821,7 +13654,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-14b-instruct-awq", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 27 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.040Z" + } }, { "slug": "llama-3.2-3b", @@ -11875,7 +13714,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.2-3b", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.041Z" + } }, { "slug": "phi-3-mini-4k-instruct-gptq-4bit", @@ -11920,7 +13765,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "phi-3-mini-4k-instruct-gptq-4bit", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 2 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.041Z" + } }, { "slug": "qwen2.5-72b-instruct-awq", @@ -11969,7 +13820,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-72b-instruct-awq", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "smollm2-135m", @@ -12011,7 +13868,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "smollm2-135m" + "id": "smollm2-135m", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "llama-3.3-70b-instruct", @@ -12067,7 +13930,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.3-70b-instruct", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "qwen3-30b-a3b-instruct-2507-fp8", @@ -12112,7 +13981,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-30b-a3b-instruct-2507-fp8", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "qwen2.5-coder-32b-instruct", @@ -12165,7 +14040,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-coder-32b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "qwen3-235b-a22b-instruct-2507-fp8", @@ -12210,7 +14091,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-235b-a22b-instruct-2507-fp8", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "deepseek-r1-distill-qwen-7b", @@ -12252,7 +14139,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "deepseek-r1-distill-qwen-7b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "phi-3-mini-4k-instruct", @@ -12298,7 +14191,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "phi-3-mini-4k-instruct", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "qwen3-14b", @@ -12343,7 +14242,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-14b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "qwen2.5-coder-1.5b", @@ -12394,7 +14299,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-coder-1.5b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "llama-3.1-70b-instruct", @@ -12450,7 +14361,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.1-70b-instruct", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "hunyuanimage-3.0", @@ -12490,7 +14407,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "hunyuanimage-3.0" + "id": "hunyuanimage-3.0", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "qwen2.5-coder-7b-instruct-awq", @@ -12545,7 +14468,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-coder-7b-instruct-awq", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 19 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.043Z" + } }, { "slug": "qwen3-coder-30b-a3b-instruct", @@ -12587,7 +14516,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-coder-30b-a3b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.045Z" + } }, { "slug": "deepseek-r1-0528", @@ -12631,7 +14566,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "deepseek-r1-0528" + "id": "deepseek-r1-0528", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.045Z" + } }, { "slug": "tiny-random-llama-3", @@ -12671,7 +14612,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "tiny-random-llama-3", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 3 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.045Z" + } }, { "slug": "qwen2.5-coder-32b-instruct-awq", @@ -12726,7 +14673,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-coder-32b-instruct-awq", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 33 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.046Z" + } }, { "slug": "mistral-7b-instruct-v0.1", @@ -12772,7 +14725,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "mistral-7b-instruct-v0.1", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.048Z" + } }, { "slug": "gpt-oss-20b-mxfp4-q8", @@ -12814,7 +14773,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "gpt-oss-20b-mxfp4-q8" + "id": "gpt-oss-20b-mxfp4-q8", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 31 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.048Z" + } }, { "slug": "qwen3-embedding-4b", @@ -12860,7 +14825,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-embedding-4b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.049Z" + } }, { "slug": "qwen2.5-1.5b-instruct-awq", @@ -12908,7 +14879,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-1.5b-instruct-awq", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 6 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.049Z" + } }, { "slug": "meta-llama-3.1-8b-instruct-fp8", @@ -12962,7 +14939,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "meta-llama-3.1-8b-instruct-fp8", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 44 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.050Z" + } }, { "slug": "phi-4", @@ -13010,7 +14993,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "phi-4", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.052Z" + } }, { "slug": "deepseek-r1", @@ -13054,7 +15043,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "deepseek-r1" + "id": "deepseek-r1", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.052Z" + } }, { "slug": "llama-3.2-1b-instruct-fp8", @@ -13106,7 +15101,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.2-1b-instruct-fp8", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 3 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.052Z" + } }, { "slug": "llama-3.1-405b", @@ -13159,7 +15160,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.1-405b", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.053Z" + } }, { "slug": "qwen3-4b-thinking-2507", @@ -13203,7 +15210,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-4b-thinking-2507", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.053Z" + } }, { "slug": "gpt2-medium", @@ -13250,7 +15263,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "gpt2-medium" + "id": "gpt2-medium", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.053Z" + } }, { "slug": "tiny-gpt2", @@ -13291,7 +15310,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "tiny-gpt2" + "id": "tiny-gpt2", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 34 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.053Z" + } }, { "slug": "hermes-3-llama-3.1-8b", @@ -13349,7 +15374,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "hermes-3-llama-3.1-8b", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.055Z" + } }, { "slug": "phi-3.5-vision-instruct", @@ -13395,7 +15426,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "phi-3.5-vision-instruct", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.055Z" + } }, { "slug": "minimax-m2", @@ -13441,7 +15478,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "minimax-m2" + "id": "minimax-m2", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.055Z" + } }, { "slug": "deepseek-r1-distill-llama-8b", @@ -13483,7 +15526,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "deepseek-r1-distill-llama-8b", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.055Z" + } }, { "slug": "qwen3-14b-awq", @@ -13530,7 +15579,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-14b-awq", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.055Z" + } }, { "slug": "qwen3-235b-a22b", @@ -13572,7 +15627,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-235b-a22b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.055Z" + } }, { "slug": "meta-llama-3.1-8b-instruct-awq-int4", @@ -13627,7 +15688,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "meta-llama-3.1-8b-instruct-awq-int4", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.055Z" + } }, { "slug": "lfm2.5-1.2b-instruct-mlx-8bit", @@ -13681,7 +15748,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "lfm2.5-1.2b-instruct-mlx-8bit" + "id": "lfm2.5-1.2b-instruct-mlx-8bit", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 1 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.055Z" + } }, { "slug": "glm-4.7-flash-gguf", @@ -13727,7 +15800,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "glm-4.7-flash-gguf" + "id": "glm-4.7-flash-gguf", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.057Z" + } }, { "slug": "deepseek-r1-distill-qwen-14b", @@ -13769,7 +15848,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "deepseek-r1-distill-qwen-14b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.057Z" + } }, { "slug": "lfm2.5-1.2b-instruct-mlx-6bit", @@ -13823,7 +15908,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "lfm2.5-1.2b-instruct-mlx-6bit" + "id": "lfm2.5-1.2b-instruct-mlx-6bit", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 4 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.057Z" + } }, { "slug": "lfm2.5-1.2b-instruct-mlx-4bit", @@ -13877,7 +15968,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "lfm2.5-1.2b-instruct-mlx-4bit" + "id": "lfm2.5-1.2b-instruct-mlx-4bit", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 1 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.058Z" + } }, { "slug": "vicuna-7b-v1.5", @@ -13917,7 +16014,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "vicuna-7b-v1.5" + "id": "vicuna-7b-v1.5", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.060Z" + } }, { "slug": "llama-3.2-1b-instruct-q8_0-gguf", @@ -13972,7 +16075,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.2-1b-instruct-q8_0-gguf", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 43 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.060Z" + } }, { "slug": "llama-3.3-70b-instruct-awq", @@ -14029,7 +16138,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-3.3-70b-instruct-awq", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 10 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.061Z" + } }, { "slug": "qwen3-32b-fp8", @@ -14075,7 +16190,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-32b-fp8", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "gpt2-xl", @@ -14121,7 +16242,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "gpt2-xl" + "id": "gpt2-xl", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "qwen3-4b-instruct-2507-fp8", @@ -14167,7 +16294,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-4b-instruct-2507-fp8", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "xlnet-base-cased", @@ -14211,7 +16344,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "xlnet-base-cased" + "id": "xlnet-base-cased", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "llama-2-7b-hf", @@ -14257,7 +16396,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-2-7b-hf", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "qwen2.5-math-7b-instruct", @@ -14304,7 +16449,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-math-7b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "qwen3-reranker-0.6b", @@ -14348,7 +16499,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-reranker-0.6b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "qwen2.5-1.5b", @@ -14392,7 +16549,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-1.5b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "qwen3-30b-a3b-thinking-2507", @@ -14438,7 +16601,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-30b-a3b-thinking-2507", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "smollm2-135m-instruct", @@ -14485,7 +16654,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "smollm2-135m-instruct" + "id": "smollm2-135m-instruct", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "qwen2.5-math-1.5b", @@ -14531,7 +16706,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-math-1.5b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "glm-4.5-air-awq-4bit", @@ -14576,7 +16757,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "glm-4.5-air-awq-4bit" + "id": "glm-4.5-air-awq-4bit", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 27 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.063Z" + } }, { "slug": "llama-2-7b-chat-hf", @@ -14623,7 +16810,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-2-7b-chat-hf", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.064Z" + } }, { "slug": "qwen2.5-coder-7b-instruct-gptq-int4", @@ -14678,7 +16871,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-coder-7b-instruct-gptq-int4", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 12 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.064Z" + } }, { "slug": "qwen3-vl-30b-a3b-instruct-awq", @@ -14729,7 +16928,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-vl-30b-a3b-instruct-awq", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 38 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.066Z" + } }, { "slug": "qwen3-8b-base", @@ -14771,7 +16976,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-8b-base", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.068Z" + } }, { "slug": "qwen2.5-coder-14b-instruct", @@ -14824,7 +17035,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-coder-14b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.068Z" + } }, { "slug": "stories15m_moe", @@ -14864,7 +17081,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "stories15m_moe" + "id": "stories15m_moe", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 5 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.068Z" + } }, { "slug": "opt-1.3b", @@ -14908,7 +17131,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "opt-1.3b" + "id": "opt-1.3b", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.069Z" + } }, { "slug": "minimax-m2-awq", @@ -14957,7 +17186,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "minimax-m2-awq" + "id": "minimax-m2-awq", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 8 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.069Z" + } }, { "slug": "glm-4.7-flash-nvfp4", @@ -15007,7 +17242,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "glm-4.7-flash-nvfp4" + "id": "glm-4.7-flash-nvfp4", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.071Z" + } }, { "slug": "hy-mt1.5-7b", @@ -15083,7 +17324,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "hy-mt1.5-7b" + "id": "hy-mt1.5-7b", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.071Z" + } }, { "slug": "gemma-2-27b-it", @@ -15149,7 +17396,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "gemma-2-27b-it", - "logo_url": "/logos/gemma.svg" + "logo_url": "/logos/gemma.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.071Z" + } }, { "slug": "qwen3-coder-next-gguf", @@ -15195,7 +17448,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-coder-next-gguf", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.071Z" + } }, { "slug": "gte-qwen2-1.5b-instruct", @@ -15242,7 +17501,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "gte-qwen2-1.5b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.071Z" + } }, { "slug": "lfm2-1.2b", @@ -15292,7 +17557,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "lfm2-1.2b" + "id": "lfm2-1.2b", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.071Z" + } }, { "slug": "saiga_llama3_8b", @@ -15337,7 +17608,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "saiga_llama3_8b", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.071Z" + } }, { "slug": "qwen3-1.7b-base", @@ -15379,7 +17656,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-1.7b-base", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.071Z" + } }, { "slug": "mistral-7b-v0.3-bnb-4bit", @@ -15427,7 +17710,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "mistral-7b-v0.3-bnb-4bit", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 22 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.071Z" + } }, { "slug": "gemma-2-2b-it", @@ -15495,7 +17784,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "gemma-2-2b-it", - "logo_url": "/logos/gemma.svg" + "logo_url": "/logos/gemma.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.072Z" + } }, { "slug": "phi-4-multimodal-instruct", @@ -15570,7 +17865,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "phi-4-multimodal-instruct", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.072Z" + } }, { "slug": "pythia-70m-deduped", @@ -15618,7 +17919,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "pythia-70m-deduped" + "id": "pythia-70m-deduped", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 27 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.072Z" + } }, { "slug": "dialogpt-medium", @@ -15663,7 +17970,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "dialogpt-medium" + "id": "dialogpt-medium", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.074Z" + } }, { "slug": "gpt-oss-20b-bf16", @@ -15706,7 +18019,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "gpt-oss-20b-bf16" + "id": "gpt-oss-20b-bf16", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 29 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.074Z" + } }, { "slug": "qwen2.5-72b-instruct", @@ -15754,7 +18073,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-72b-instruct", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "qwen3-32b-awq", @@ -15801,7 +18126,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-32b-awq", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "mimo-v2-flash", @@ -15842,7 +18173,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "mimo-v2-flash" + "id": "mimo-v2-flash", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "qwen3-coder-30b-a3b-instruct-fp8", @@ -15885,7 +18222,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-coder-30b-a3b-instruct-fp8", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "qwen3-8b-fp8", @@ -15931,7 +18274,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-8b-fp8", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "deepseek-v3.2", @@ -15974,7 +18323,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "deepseek-v3.2" + "id": "deepseek-v3.2", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "qwen3-coder-next", @@ -16015,7 +18370,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-coder-next", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "qwen2-0.5b", @@ -16059,7 +18420,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2-0.5b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "mistral-7b-v0.1", @@ -16103,7 +18470,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "mistral-7b-v0.1", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "kimi-k2-thinking", @@ -16145,7 +18518,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "kimi-k2-thinking" + "id": "kimi-k2-thinking", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "deepseek-r1-0528-qwen3-8b-mlx-4bit", @@ -16187,7 +18566,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "deepseek-r1-0528-qwen3-8b-mlx-4bit", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 7 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.075Z" + } }, { "slug": "qwen2.5-7b-instruct-awq", @@ -16236,7 +18621,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-7b-instruct-awq", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 36 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.077Z" + } }, { "slug": "points-reader", @@ -16279,7 +18670,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "points-reader" + "id": "points-reader", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.079Z" + } }, { "slug": "qwen3-4b-base", @@ -16321,7 +18718,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-4b-base", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.079Z" + } }, { "slug": "step-3.5-flash", @@ -16364,7 +18767,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "step-3.5-flash" + "id": "step-3.5-flash", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.079Z" + } }, { "slug": "kogpt2-base-v2", @@ -16406,7 +18815,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "kogpt2-base-v2" + "id": "kogpt2-base-v2", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.079Z" + } }, { "slug": "parler-tts-mini-multilingual-v1.1", @@ -16462,7 +18877,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "parler-tts-mini-multilingual-v1.1" + "id": "parler-tts-mini-multilingual-v1.1", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.079Z" + } }, { "slug": "qwen3-reranker-8b", @@ -16506,7 +18927,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-reranker-8b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.079Z" + } }, { "slug": "deepseek-r1-0528-qwen3-8b-mlx-8bit", @@ -16548,7 +18975,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "deepseek-r1-0528-qwen3-8b-mlx-8bit", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 13 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.079Z" + } }, { "slug": "powermoe-3b", @@ -16587,7 +19020,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "powermoe-3b" + "id": "powermoe-3b", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 14 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.080Z" + } }, { "slug": "llada-8b-instruct", @@ -16626,7 +19065,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "llada-8b-instruct" + "id": "llada-8b-instruct", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.083Z" + } }, { "slug": "apertus-8b-instruct-2509", @@ -16672,7 +19117,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "apertus-8b-instruct-2509" + "id": "apertus-8b-instruct-2509", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.083Z" + } }, { "slug": "qwen3-30b-a3b-gptq-int4", @@ -16718,7 +19169,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-30b-a3b-gptq-int4", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 45 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.083Z" + } }, { "slug": "tinyllama-1.1b-chat-v0.3-gptq", @@ -16765,7 +19222,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "tinyllama-1.1b-chat-v0.3-gptq" + "id": "tinyllama-1.1b-chat-v0.3-gptq", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 9 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.084Z" + } }, { "slug": "prot_t5_xl_bfd", @@ -16807,7 +19270,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "prot_t5_xl_bfd" + "id": "prot_t5_xl_bfd", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 10 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.086Z" + } }, { "slug": "qwen3-4b-instruct-2507-unsloth-bnb-4bit", @@ -16854,7 +19323,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-4b-instruct-2507-unsloth-bnb-4bit", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 13 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.087Z" + } }, { "slug": "phi-3.5-mini-instruct", @@ -16903,7 +19378,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "phi-3.5-mini-instruct", - "logo_url": "/logos/phi.svg" + "logo_url": "/logos/phi.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.090Z" + } }, { "slug": "meta-llama-3.1-8b-instruct-bnb-4bit", @@ -16954,7 +19435,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "meta-llama-3.1-8b-instruct-bnb-4bit", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.090Z" + } }, { "slug": "glm-4.7-flash-awq-4bit", @@ -16999,7 +19486,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "glm-4.7-flash-awq-4bit" + "id": "glm-4.7-flash-awq-4bit", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 43 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.090Z" + } }, { "slug": "dots.ocr", @@ -17048,7 +19541,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "dots.ocr" + "id": "dots.ocr", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.091Z" + } }, { "slug": "mistral-7b-bnb-4bit", @@ -17095,7 +19594,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "mistral-7b-bnb-4bit", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 30 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.091Z" + } }, { "slug": "glm-5-fp8", @@ -17137,7 +19642,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "glm-5-fp8" + "id": "glm-5-fp8", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.093Z" + } }, { "slug": "qwen-7b", @@ -17179,7 +19690,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen-7b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.093Z" + } }, { "slug": "qwq-32b-awq", @@ -17224,7 +19741,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "qwq-32b-awq" + "id": "qwq-32b-awq", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.093Z" + } }, { "slug": "deepseek-r1-distill-llama-70b", @@ -17266,7 +19789,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "deepseek-r1-distill-llama-70b", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.093Z" + } }, { "slug": "qwen2.5-coder-7b", @@ -17318,7 +19847,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-coder-7b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.093Z" + } }, { "slug": "qwen2.5-3b", @@ -17358,7 +19893,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen2.5-3b", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.093Z" + } }, { "slug": "deepseek-v2-lite-chat", @@ -17400,7 +19941,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "deepseek-v2-lite-chat" + "id": "deepseek-v2-lite-chat", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.093Z" + } }, { "slug": "tiny-qwen3forcausallm", @@ -17442,7 +19989,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "tiny-qwen3forcausallm", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 1 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.093Z" + } }, { "slug": "deepseek-coder-v2-lite-instruct", @@ -17484,7 +20037,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "deepseek-coder-v2-lite-instruct" + "id": "deepseek-coder-v2-lite-instruct", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.094Z" + } }, { "slug": "qwen3-0.6b-base", @@ -17526,7 +20085,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen3-0.6b-base", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.094Z" + } }, { "slug": "diffractgpt_mistral_chemical_formula", @@ -17570,7 +20135,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "diffractgpt_mistral_chemical_formula", - "logo_url": "/logos/mistral.svg" + "logo_url": "/logos/mistral.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 1 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.094Z" + } }, { "slug": "qwen-7b-chat", @@ -17616,7 +20187,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "qwen-7b-chat", - "logo_url": "/logos/qwen.svg" + "logo_url": "/logos/qwen.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.096Z" + } }, { "slug": "nvidia-nemotron-3-nano-30b-a3b-nvfp4", @@ -17685,7 +20262,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "nvidia-nemotron-3-nano-30b-a3b-nvfp4" + "id": "nvidia-nemotron-3-nano-30b-a3b-nvfp4", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.096Z" + } }, { "slug": "falcon-h1-tiny-90m-instruct", @@ -17727,7 +20310,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "falcon-h1-tiny-90m-instruct", - "logo_url": "/logos/falcon.svg" + "logo_url": "/logos/falcon.svg", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 31 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.096Z" + } }, { "slug": "hermes-3-llama-3.2-3b", @@ -17783,7 +20372,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "hermes-3-llama-3.2-3b", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.097Z" + } }, { "slug": "meta-llama-3.1-8b-instruct", @@ -17831,7 +20426,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "meta-llama-3.1-8b-instruct", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.097Z" + } }, { "slug": "meta-llama-3.1-8b-instruct-gguf", @@ -17884,7 +20485,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "meta-llama-3.1-8b-instruct-gguf", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.097Z" + } }, { "slug": "deepseek-v3-0324", @@ -17928,7 +20535,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "deepseek-v3-0324" + "id": "deepseek-v3-0324", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.097Z" + } }, { "slug": "elm", @@ -17972,7 +20585,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "elm" + "id": "elm", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 2 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.097Z" + } }, { "slug": "llama-2-13b-chat-hf", @@ -18019,7 +20638,13 @@ }, "referral_url": "https://m.do.co/c/2ed27757a361", "id": "llama-2-13b-chat-hf", - "logo_url": "/logos/meta.svg" + "logo_url": "/logos/meta.svg", + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 999d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.099Z" + } }, { "slug": "svara-tts-v1", @@ -18094,7 +20719,13 @@ "is_multimodal": false }, "referral_url": "https://m.do.co/c/2ed27757a361", - "id": "svara-tts-v1" + "id": "svara-tts-v1", + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 18 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.099Z" + } }, { "slug": "postman", @@ -18154,10 +20785,12 @@ "Browser extensions sometimes required for certain requests", "Fewer enterprise integrations compared to commercial alternatives" ], - "stars": 78692, - "last_commit": "2026-03-28T03:07:03Z", - "language": "TypeScript", - "license": "MIT" + "sentinel_verdict": { + "status": "rejected", + "message": "Insufficient signal. 0 stars, 999d since last activity.", + "agent": "valkyrie", + "timestamp": "2026-03-30T15:26:17.101Z" + } }, { "slug": "seaweedfs", @@ -18165,7 +20798,7 @@ "category": "Cloud Infrastructure", "is_open_source": true, "github_repo": "seaweedfs/seaweedfs", - "stars": 31241, + "stars": 22000, "website": "https://github.com/seaweedfs/seaweedfs", "description": "SeaweedFS is a fast distributed storage system for blobs, objects, files, and data lake, for billions of files!", "pros": [ @@ -18177,13 +20810,19 @@ "More complex to configure than some alternatives" ], "language": "Go", - "license": "Apache-2.0", + "license": "Apache 2.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=github.com/seaweedfs", - "last_commit": "2026-03-30T01:47:17Z", + "last_commit": "2025-03-01T00:00:00Z", "hosting_type": "self-hosted", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/seaweedfs" + "local_path": "./docker-deploy/seaweedfs" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 394d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" } }, { @@ -18192,7 +20831,7 @@ "category": "Cloud Infrastructure", "is_open_source": true, "github_repo": "ceph/ceph", - "stars": 16395, + "stars": 13000, "website": "https://ceph.io", "description": "Ceph is a highly scalable distributed storage solution for block, object, and file storage.", "pros": [ @@ -18207,11 +20846,17 @@ "language": "C++", "license": "LGPL-2.1", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=ceph.io", - "last_commit": "2026-03-30T02:12:26Z", + "last_commit": "2025-03-01T00:00:00Z", "hosting_type": "self-hosted", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/ceph" + "local_path": "./docker-deploy/ceph" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 394d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" } }, { @@ -18220,7 +20865,7 @@ "category": "Cloud Infrastructure", "is_open_source": true, "github_repo": "rustfs/rustfs", - "stars": 23911, + "stars": 1000, "website": "https://rustfs.com/", "description": "High-performance S3-compatible object storage designed for modern data workloads.", "pros": [ @@ -18233,13 +20878,19 @@ "Less enterprise features than mature counterparts" ], "language": "Rust", - "license": "Apache-2.0", + "license": "Apache 2.0", "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=rustfs.com", - "last_commit": "2026-03-30T01:10:17Z", + "last_commit": "2025-02-15T00:00:00Z", "hosting_type": "self-hosted", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/rustfs" + "local_path": "./docker-deploy/rustfs" + }, + "sentinel_verdict": { + "status": "observation", + "message": "Last activity 408d ago. Monitoring for decay.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" } }, { @@ -18248,7 +20899,7 @@ "category": "Email", "is_open_source": true, "github_repo": "forwardemail/forwardemail.net", - "stars": 1548, + "stars": 1488, "website": "https://forwardemail.net", "description": "Privacy-focused encrypted email for everyone. All-in-one alternative to Gmail, Mailchimp, and Sendgrid with free inbound forwarding, full email hosting, built-in webmail, and IMAP/POP3/SMTP support.", "pros": [ @@ -18261,10 +20912,16 @@ "Self-hosting email requires careful DNS and deliverability setup", "Native apps still in development" ], - "last_commit": "2026-03-30T01:30:24Z", + "last_commit": "2026-03-02T16:45:21Z", "language": "JavaScript", "license": "MIT", - "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=forwardemail.net" + "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=forwardemail.net", + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 1,488 stars, active within 27d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } }, { "slug": "gmail", @@ -18293,31 +20950,778 @@ ] }, { - "slug": "tymeslot", - "name": "Tymeslot", - "category": "Productivity", + "slug": "gitea", + "name": "gitea", + "category": "DevOps", "is_open_source": true, - "github_repo": "Tymeslot/tymeslot", - "website": "https://github.com/Tymeslot/tymeslot", - "description": "Self-hostable, open-source meeting scheduling platform built with Elixir/Phoenix LiveView.", + "github_repo": "go-gitea/gitea", + "stars": 54433, + "website": "https://gitea.com", + "description": "Self-hosted Git service with code review, team collaboration, package registry, and CI/CD, written in Go. Provides a lightweight, all-in-one software development platform.", "pros": [ - "No ads, no tracking, no per-seat pricing", - "Google Calendar sync with timezone-aware scheduling", - "SSO support via OIDC/OAuth out of the box", - "Multiple calendar accounts per user" + "Built with Go — lightweight and highly performant", + "Single binary — easy to deploy and manage", + "Supports code review, team collaboration, and CI/CD — all-in-one platform" ], "cons": [ - "Smaller community and ecosystem than Calendly", - "Fewer third-party integrations out of the box" + "Self-hosting can be complex", + "Smaller ecosystem compared to GitHub or GitLab" ], - "language": "Elixir", - "license": "AGPL-3.0", - "logo_url": "https://www.google.com/s2/favicons?sz=128&domain=raw.githubusercontent.com", + "last_commit": "2026-03-23T08:13:10Z", + "language": "Go", + "license": "MIT", + "tags": [ + "git", + "CI/CD", + "collaboration", + "DevOps" + ], + "logo_url": "https://unavatar.io/gitea.com?fallback=https://www.google.com/s2/favicons?sz=128%26domain=gitea.com", "deployment": { "type": "docker-compose", - "local_path": "./.docker-deploy/tymeslot" + "local_path": "./docker-deploy/gitea" }, - "stars": 50, - "last_commit": "2026-03-29T12:37:01Z" + "alternatives": [ + "coolify", + "coder", + "dokku", + "heroku", + "codespaces" + ], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 54,433 stars, active within 7d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "clickhouse", + "name": "ClickHouse", + "category": "Analytics", + "is_open_source": true, + "github_repo": "ClickHouse/ClickHouse", + "stars": 46475, + "website": "https://clickhouse.com", + "description": "Column-oriented database management system for generating analytical data reports in real-time, optimized for performance with a C++ core.", + "pros": [ + "C++ core — optimized for performance", + "Column-oriented architecture — ideal for analytical data reports", + "Real-time data processing — fast insights" + ], + "cons": [ + "Steep learning curve due to unique architecture", + "Resource-intensive — requires significant hardware resources" + ], + "last_commit": "2026-03-23T11:35:49Z", + "language": "C++", + "license": "Apache-2.0", + "tags": [ + "Analytics", + "Database", + "Real-time", + "Reporting" + ], + "logo_url": "https://unavatar.io/clickhouse.com?fallback=https://www.google.com/s2/favicons?sz=128%26domain=clickhouse.com", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/clickhouse" + }, + "alternatives": [ + "plausible", + "posthog", + "matomo", + "metabase", + "superset" + ], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 46,475 stars, active within 7d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "siyuan", + "name": "siyuan", + "category": "Productivity", + "is_open_source": true, + "github_repo": "siyuan-note/siyuan", + "stars": 42045, + "website": "https://b3log.org/siyuan", + "description": "Self-hosted personal knowledge management software built with TypeScript and Go, providing a private note-taking platform.", + "pros": [ + "Built with TypeScript and Go — high-performance backend", + "Self-hosted solution — full control over data", + "AGPL-3.0 license — free to use and modify" + ], + "cons": [ + "Self-hosting can be complex", + "Smaller ecosystem compared to proprietary alternatives" + ], + "last_commit": "2026-03-23T11:20:48Z", + "language": "TypeScript", + "license": "AGPL-3.0", + "tags": [ + "Productivity", + "Notes", + "Knowledge", + "Self-hosted" + ], + "logo_url": "https://unavatar.io/b3log.org?fallback=https://www.google.com/s2/favicons?sz=128%26domain=b3log.org", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/siyuan" + }, + "alternatives": [ + "appflowy", + "affine", + "onlyoffice", + "outline", + "calcom" + ], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 42,045 stars, active within 7d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "appsmith", + "name": "appsmith", + "category": "DevOps", + "is_open_source": true, + "github_repo": "appsmithorg/appsmith", + "stars": 39432, + "website": "https://www.appsmith.com", + "description": "Low-code platform to build custom internal tools, admin panels, and dashboards, integrating with 25+ databases and any API, built with TypeScript.", + "pros": [ + "Built on TypeScript — robust and maintainable codebase", + "Integrates with 25+ databases — seamless data connections", + "Low-code platform — rapid development and deployment" + ], + "cons": [ + "Self-hosting can be complex", + "Steeper learning curve for non-technical users" + ], + "last_commit": "2026-03-23T10:52:20Z", + "language": "TypeScript", + "license": "Apache-2.0", + "tags": [ + "Low-code", + "DevOps", + "Dashboard", + "Admin-panel", + "TypeScript" + ], + "logo_url": "https://unavatar.io/www.appsmith.com?fallback=https://www.google.com/s2/favicons?sz=128%26domain=www.appsmith.com", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/appsmith" + }, + "alternatives": [ + "coolify", + "coder", + "dokku", + "heroku", + "codespaces" + ], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 39,432 stars, active within 7d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "tooljet", + "name": "ToolJet", + "category": "Productivity", + "is_open_source": true, + "github_repo": "ToolJet/ToolJet", + "stars": 37641, + "website": "https://tooljet.com", + "description": "Open-source low-code platform for building internal tools, workflows, and business applications. Provides a visual builder, drag-and-drop UI, and integrations with databases, APIs, and SaaS apps.", + "pros": [ + "Drag-and-drop UI — rapid development of internal tools", + "Visual builder — no extensive coding knowledge required", + "Integrates with databases, APIs, and SaaS apps — high versatility" + ], + "cons": [ + "Steep learning curve for complex applications", + "AGPL-3.0 license — may not be suitable for all use cases" + ], + "last_commit": "2026-03-23T11:32:52Z", + "language": "JavaScript", + "license": "AGPL-3.0", + "tags": [ + "Low-code", + "Automation", + "Productivity", + "Workflow", + "Development" + ], + "logo_url": "https://unavatar.io/tooljet.com?fallback=https://www.google.com/s2/favicons?sz=128%26domain=tooljet.com", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/tooljet" + }, + "alternatives": [ + "appflowy", + "affine", + "onlyoffice", + "outline", + "calcom" + ], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 37,641 stars, active within 7d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "reactive-resume", + "name": "reactive-resume", + "category": "Productivity", + "is_open_source": true, + "github_repo": "amruthpillai/reactive-resume", + "stars": 35922, + "website": "https://rxresu.me", + "description": "Self-hostable resume builder with customizable templates and export options, built with TypeScript.", + "pros": [ + "Built with TypeScript — robust and maintainable codebase", + "Customizable templates — flexible design options", + "Self-hostable — full control over data and deployment" + ], + "cons": [ + "Steep learning curve for non-technical users" + ], + "last_commit": "2026-03-22T16:53:33Z", + "language": "TypeScript", + "license": "MIT", + "tags": [ + "Resume", + "Productivity", + "Typescript", + "Builder" + ], + "logo_url": "https://unavatar.io/rxresu.me?fallback=https://www.google.com/s2/favicons?sz=128%26domain=rxresu.me", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/reactive-resume" + }, + "alternatives": [ + "appflowy", + "affine", + "onlyoffice", + "outline", + "calcom" + ], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 35,922 stars, active within 7d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "trilium", + "name": "Trilium", + "category": "Productivity", + "is_open_source": true, + "github_repo": "TriliumNext/Trilium", + "stars": 35164, + "website": "https://triliumnotes.org", + "description": "A hierarchical note-taking application built on TypeScript and available for desktop platforms, allowing users to organize and build their personal knowledge base. Supports data synchronization, tagging, and media embedding.", + "pros": [ + "Built on TypeScript — ensuring a robust and maintainable architecture", + "Supports data synchronization — keeping notes up-to-date across devices", + "Hierarchical organization — enabling users to build a structured knowledge base" + ], + "cons": [ + "Self-hosting can be complex", + "Smaller ecosystem compared to other note-taking applications" + ], + "last_commit": "2026-03-23T09:41:21Z", + "language": "TypeScript", + "license": "AGPL-3.0", + "tags": [ + "Note-taking", + "Productivity", + "Knowledge-base", + "Organization" + ], + "logo_url": "https://unavatar.io/triliumnotes.org?fallback=https://www.google.com/s2/favicons?sz=128%26domain=triliumnotes.org", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/trilium" + }, + "alternatives": [ + "appflowy", + "affine", + "onlyoffice", + "outline", + "calcom" + ], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 35,164 stars, active within 7d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "filebrowser", + "name": "filebrowser", + "category": "Productivity", + "is_open_source": true, + "github_repo": "filebrowser/filebrowser", + "stars": 33979, + "website": "https://filebrowser.org", + "description": "Single-binary web file manager for uploading, deleting, previewing, and editing files within a specified directory. Built with Go.", + "pros": [ + "Single binary — easy to deploy and manage", + "Built with Go — fast and lightweight architecture", + "Create-your-own-cloud — flexible and customizable" + ], + "cons": [ + "Self-hosting can be complex", + "Limited scalability for very large file sets" + ], + "last_commit": "2026-03-21T14:05:56Z", + "language": "Go", + "license": "Apache-2.0", + "tags": [ + "Filemanager", + "Uploader", + "Go", + "Productivity" + ], + "logo_url": "https://unavatar.io/filebrowser.org?fallback=https://www.google.com/s2/favicons?sz=128%26domain=filebrowser.org", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/filebrowser" + }, + "alternatives": [ + "appflowy", + "affine", + "onlyoffice", + "outline", + "calcom" + ], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 33,979 stars, active within 9d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "khoj", + "name": "khoj", + "category": "AI Tools", + "is_open_source": true, + "github_repo": "khoj-ai/khoj", + "stars": 33574, + "website": "https://khoj.dev", + "description": "Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (gpt, claude, gemini, llama, qwen, mistral). Get started - free.", + "pros": [ + "**Modular architecture —** supports multiple LLMs like GPT, Claude, and Llama", + "**Self-hostable —** gives you full control over your data and AI setup", + "**Extensive automation —** schedule tasks and build custom agents with ease" + ], + "cons": [ + "**Steep learning curve —** requires some technical expertise to set up and use", + "**Resource-intensive —** may require significant computational resources for optimal performance" + ], + "last_commit": "2026-03-19T19:28:44Z", + "language": "Python", + "license": "AGPL-3.0", + "tags": [], + "logo_url": "https://unavatar.io/khoj.dev?fallback=https://www.google.com/s2/favicons?sz=128%26domain=khoj.dev", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/khoj" + }, + "alternatives": [ + "flowise" + ], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 33,574 stars, active within 10d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "changedetectionio", + "name": "changedetection.io", + "category": "Uncategorized", + "is_open_source": true, + "github_repo": "dgtlmoon/changedetection.io", + "stars": 30756, + "website": "https://changedetection.io", + "description": "Best and simplest tool for website change detection, web page monitoring, and website change alerts. Perfect for tracking content changes, price drops, restock alerts, and website defacement monitoring—all for free or enjoy our SaaS plan!", + "pros": [ + "Built on Python — lightweight and easy to deploy", + "Single setup process — monitors websites for updates in real-time", + "Multi-channel notifications — supports Discord, Email, Slack, Telegram, and more" + ], + "cons": [ + "Self-hosting can be complex", + "May require additional setup for proxy support" + ], + "last_commit": "2026-03-22T10:22:03Z", + "language": "Python", + "license": "Apache-2.0", + "tags": [], + "logo_url": "https://unavatar.io/changedetection.io?fallback=https://www.google.com/s2/favicons?sz=128%26domain=changedetection.io", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/changedetectionio" + }, + "alternatives": [], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 30,756 stars, active within 8d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "homepage", + "name": "homepage", + "category": "Uncategorized", + "is_open_source": true, + "github_repo": "gethomepage/homepage", + "stars": 29100, + "website": "https://gethomepage.dev", + "description": "A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations.", + "pros": [ + "**Fully static, fast** — optimized for performance", + "**Fully proxied** — secure connections to services", + "**Easily configured** — via YAML files or Docker label discovery" + ], + "cons": [ + "Self-hosting can be complex", + "May require additional setup for service integrations" + ], + "last_commit": "2026-03-23T00:51:33Z", + "language": "JavaScript", + "license": "GPL-3.0", + "tags": [], + "logo_url": "https://unavatar.io/gethomepage.dev?fallback=https://www.google.com/s2/favicons?sz=128%26domain=gethomepage.dev", + "alternatives": [], + "hosting_type": "both", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 29,100 stars, active within 7d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "archivebox", + "name": "ArchiveBox", + "category": "Uncategorized", + "is_open_source": true, + "github_repo": "ArchiveBox/ArchiveBox", + "stars": 27111, + "website": "https://archivebox.io", + "description": "🗃 Open source self-hosted web archiving. Takes URLs/browser history/bookmarks/Pocket/Pinboard/etc., saves HTML, JS, PDFs, media, and more...", + "pros": [ + "**Comprehensive data capture** — saves HTML, JS, PDFs, media, and more", + "**Flexible input sources** — takes URLs, browser history, bookmarks, Pocket, Pinboard, etc.", + "**Customizable and extensible** — written in Python for easy modification" + ], + "cons": [ + "Self-hosting can be complex", + "Resource-intensive due to comprehensive data capture" + ], + "last_commit": "2026-03-23T11:21:33Z", + "language": "Python", + "license": "MIT", + "tags": [], + "logo_url": "https://unavatar.io/archivebox.io?fallback=https://www.google.com/s2/favicons?sz=128%26domain=archivebox.io", + "alternatives": [], + "hosting_type": "both", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 27,111 stars, active within 7d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "dashy", + "name": "dashy", + "category": "Uncategorized", + "is_open_source": true, + "github_repo": "Lissy93/dashy", + "stars": 24311, + "website": "https://dashy.to", + "description": "🚀 A self-hostable personal dashboard built for you. Includes status-checking, widgets, themes, icon packs, a UI editor and tons more!", + "pros": [ + "Open source and self-hostable" + ], + "cons": [ + "Requires self-hosting setup" + ], + "last_commit": "2026-03-21T20:41:46Z", + "language": "Vue", + "license": "MIT", + "tags": [], + "logo_url": "https://unavatar.io/dashy.to?fallback=https://www.google.com/s2/favicons?sz=128%26domain=dashy.to", + "alternatives": [], + "hosting_type": "both", + "avg_monthly_cost": 0, + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/dashy" + }, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 24,311 stars, active within 8d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "codex-console", + "name": "codex-console", + "category": "DevOps", + "is_open_source": true, + "github_repo": "dou-jiang/codex-console", + "stars": 631, + "website": "https://github.com/dou-jiang/codex-console", + "description": "codex-console 是一个集成化控制台项目,支持任务管理、批量处理、数据导出、自动上传、日志查看与打包支持。", + "pros": [ + "Open source and self-hostable" + ], + "cons": [ + "Requires self-hosting setup" + ], + "last_commit": "2026-03-23T09:25:17Z", + "language": "Python", + "license": "MIT", + "tags": [], + "logo_url": "https://unavatar.io/github/dou-jiang?fallback=https://www.google.com/s2/favicons?sz=128%26domain=github.com", + "alternatives": [ + "coolify", + "coder", + "dokku", + "heroku", + "codespaces" + ], + "hosting_type": "both", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 631 stars, active within 7d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "microwarp", + "name": "MicroWARP", + "category": "Uncategorized", + "is_open_source": true, + "github_repo": "ccbkkb/MicroWARP", + "stars": 554, + "website": "https://github.com/ccbkkb/MicroWARP", + "description": "🚀 An 800KB RAM ultra-lightweight Cloudflare WARP SOCKS5 proxy in Docker. 仅需 800KB 内存的纯内核态 Cloudflare WARP 代理 - Docker", + "pros": [ + "Open source and self-hostable" + ], + "cons": [ + "Requires self-hosting setup" + ], + "last_commit": "2026-03-22T03:51:04Z", + "language": "Shell", + "license": "MIT", + "tags": [], + "logo_url": "https://unavatar.io/github/ccbkkb?fallback=https://www.google.com/s2/favicons?sz=128%26domain=github.com", + "alternatives": [], + "hosting_type": "both", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "High signal. 554 stars, active within 8d.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "weclaw", + "name": "weclaw", + "category": "Uncategorized", + "is_open_source": true, + "github_repo": "fastclaw-ai/weclaw", + "stars": 313, + "website": "https://github.com/fastclaw-ai/weclaw", + "description": "Connect to any agents with WeChat ClawBot.", + "pros": [ + "Open source and self-hostable" + ], + "cons": [ + "Requires self-hosting setup" + ], + "last_commit": "2026-03-23T08:41:17Z", + "language": "Go", + "license": "MIT", + "tags": [], + "logo_url": "https://unavatar.io/github/fastclaw-ai?fallback=https://www.google.com/s2/favicons?sz=128%26domain=github.com", + "alternatives": [], + "hosting_type": "both", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "Active development. Signal confirmed.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "regplatformm", + "name": "regplatformm", + "category": "Uncategorized", + "is_open_source": true, + "github_repo": "xiaolajiaoyyds/regplatformm", + "stars": 288, + "website": "https://github.com/xiaolajiaoyyds/regplatformm", + "description": "", + "pros": [ + "Open source and self-hostable" + ], + "cons": [ + "Requires self-hosting setup" + ], + "last_commit": "2026-03-22T09:07:08Z", + "language": "Go", + "license": "MIT", + "tags": [], + "logo_url": "https://unavatar.io/github/xiaolajiaoyyds?fallback=https://www.google.com/s2/favicons?sz=128%26domain=github.com", + "alternatives": [], + "hosting_type": "both", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "Active development. Signal confirmed.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "kalfa", + "name": "kalfa", + "category": "Uncategorized", + "is_open_source": true, + "github_repo": "komunite/kalfa", + "stars": 182, + "website": "https://komunite.com.tr", + "description": "Claude Code için Türkçe profesyonel işletim sistemi — 10 uzman agent, 22 komut, 993 skill, 6 katmanlı hafıza", + "pros": [ + "Modular architecture — 994 skills in 16 categories", + "Persistent memory — 6 layers for session context", + "Customizable workflow — 22 commands and 9 security hooks" + ], + "cons": [ + "Self-hosting can be complex", + "Limited English documentation" + ], + "last_commit": "2026-03-22T15:26:48Z", + "language": "Shell", + "license": "MIT", + "tags": [ + "kalfa", + "AI", + "Turkish", + "Assistant" + ], + "logo_url": "https://unavatar.io/komunite.com.tr?fallback=https://www.google.com/s2/favicons?sz=128%26domain=komunite.com.tr", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/kalfa" + }, + "alternatives": [], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "Active development. Signal confirmed.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } + }, + { + "slug": "openilink-hub", + "name": "openilink-hub", + "category": "Automation", + "is_open_source": true, + "github_repo": "openilink/openilink-hub", + "stars": 132, + "website": "https://hub.openilink.com", + "description": "Self-hosted WeChat Bot management platform built on Go, providing real-time message relay via WebSocket, Webhook, and AI auto-reply. Supports Passkey login and offers 7 language SDKs for integration.", + "pros": [ + "Built on Go — high-performance backend", + "Real-time message relay via WebSocket and Webhook", + "7 language SDKs for seamless integration" + ], + "cons": [ + "Smaller community and limited English documentation" + ], + "last_commit": "2026-03-23T11:07:39Z", + "language": "Go", + "license": "MIT", + "tags": [ + "Automation", + "WeChat", + "Bot", + "Go", + "SDK" + ], + "logo_url": "https://unavatar.io/hub.openilink.com?fallback=https://www.google.com/s2/favicons?sz=128%26domain=hub.openilink.com", + "deployment": { + "type": "docker-compose", + "local_path": "./docker-deploy/openilink-hub" + }, + "alternatives": [ + "n8n", + "activepieces", + "zapier" + ], + "hosting_type": "self-hosted", + "avg_monthly_cost": 0, + "sentinel_verdict": { + "status": "approved", + "message": "Active development. Signal confirmed.", + "agent": "sentinel", + "timestamp": "2026-03-30T15:26:17.103Z" + } } -] +] \ No newline at end of file