惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
腾讯CDC
A
About on SuperTechFans
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
D
DataBreaches.Net
D
Docker
宝玉的分享
宝玉的分享
量子位
Microsoft Azure Blog
Microsoft Azure Blog
Martin Fowler
Martin Fowler
博客园 - 三生石上(FineUI控件)
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
V2EX
Last Week in AI
Last Week in AI
H
Help Net Security
Hugging Face - Blog
Hugging Face - Blog
M
MIT News - Artificial intelligence

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - gosparq/sparq: Open-source developer experience ...
aidanurbina · 2026-06-25 · via Hacker News: Show HN

The first fully open-source Developer Experience suite for GitHub-native teams

v1.0.0 Python 3.13+ Flask 3.x AGPL-3.0

Changelog · Contributing · Security


sparQ Dashboard
Dashboard: team pulse, blockers, and activity at a glance

What is sparQ

sparQ is the first fully open-source Developer Experience suite for GitHub-native teams. It's a set of focused products that share one self-hosted home. Start with Pulse today, with Metrics and Knowledge on the way.

Product Description Status
Pulse GitHub-native project management, async standups, team presence, and delivery visibility Available
Metrics DORA metrics and engineering analytics Coming soon
Knowledge LLM-powered knowledge base from your codebase Coming soon

Pulse

GitHub-native project management, async standups, team presence, and delivery visibility for teams living in GitHub. Self-hosting is always free. Forever.

Runs on SQLite out of the box. Zero external dependencies.

Features

  • GitHub Sync — Projects, tasks, and status derived from PRs, issues, and commits
  • Async Standups — Template-driven daily check-ins with audio recording and transcription
  • Blockers Board — Track blockers with owners, urgency tiers, and automatic nudges
  • Presence — See who's available, focused, blocked, or out across the team
  • Action Items — Three-tier urgency system (Now / Later / Whenever), weekly plans
  • Chat & DMs — Real-time messaging with channels, direct messages, and reactions
  • Documents — Notes, e-signatures with audit trail, knowledge base
  • People — Directory, onboarding, 1-on-1s, hiring pipeline
  • Time & Attendance — Clock in/out, PTO requests, schedules, punch corrections
  • AI Assistant — Optional LLM-powered features (OpenAI or Anthropic)
  • Mobile API — Full REST API with JWT auth
  • Multi-language — Built-in i18n with installable language packs

Quick Start

Option 1: Docker (recommended)

git clone https://github.com/sparqsoft/sparq.git
cd sparq
docker compose up

Open http://localhost:8000 to get started.

Option 2: Local development

Requires Python 3.13+ and uv.

git clone https://github.com/sparqsoft/sparq.git
cd sparq/pulse
make venv
source venv/bin/activate
make run

Open http://localhost:8000.

Option 3: PostgreSQL

By default sparQ uses SQLite (zero-config). To use PostgreSQL, set DATABASE_URL in your .env:

DATABASE_URL=postgresql://sparq:sparq@localhost:5432/sparq

Then start a Postgres container and run:

cd pulse
make db-start
make run

Configuration

Copy .env.example to .env in the pulse/ directory. The app auto-generates one on first run if missing.

Key settings:

Variable Default Description
SECRET_KEY Auto-generated Flask session secret
DATABASE_URL SQLite (data/sparq.db) Database connection string
FLASK_DEBUG false Enable debug mode
LLM_PROVIDER openai AI provider (openai or anthropic)
OPENAI_API_KEY -- Required for AI features
MSA_USER -- Admin panel username (disabled if unset)
MSA_PASS -- Admin panel password (disabled if unset)

See pulse/.env.example for the full list.

Server Admin Panel (MSA)

sparQ includes a built-in admin console at /msa for managing organizations, workspaces, and users. It is disabled by default. Set both MSA_USER and MSA_PASS in your .env to enable it.

Email Setup

sparQ sends transactional emails for signups, password resets, and magic link logins. Configure email from the admin panel or via environment variables.

Option 1: Admin Panel (recommended)

  1. Enable the MSA admin panel (set MSA_USER and MSA_PASS)
  2. Navigate to /msa/email
  3. Select a provider (Gmail, Microsoft 365, SendGrid, Mailgun, AWS SES, or custom SMTP)
  4. Enter your credentials and click Save Configuration
  5. Use Test Connection and Send Test Email to verify

Option 2: Environment Variables

Set these in your .env to configure email without the admin panel:

Variable Description
SMTP_HOST SMTP server hostname (e.g., smtp.gmail.com)
SMTP_PORT SMTP port (default: 587)
SMTP_USERNAME SMTP username or email address
SMTP_PASSWORD SMTP password or app-specific password
SMTP_FROM_EMAIL Sender email address
SMTP_PROVIDER Provider name (e.g., gmail, sendgrid, custom)

Environment variables take priority over admin panel settings. Fields locked by env vars are shown with a lock icon in the admin panel.

Gmail users: Enable 2-Step Verification, then generate an App Password. Use the 16-character app password, not your regular password.

If no email provider is configured, signup falls back to direct password-based registration (no email confirmation).

GitHub Integration

sparQ syncs tasks and blockers with GitHub Issues. Connect using a classic Personal Access Token (PAT):

  1. Go to GitHub → Settings → Developer settings → Personal access tokens → Tokens (classic)
  2. Create a new token with these scopes: repo and admin:repo_hook
  3. In sparQ, go to Settings → Integrations and paste your token and repository (owner/repo)
  4. Open Settings → Integrations → GitHub → Match GitHub people and map each GitHub account to a sparQ member, so commit and PR activity is attributed to the right person (unmapped accounts are skipped). Members can also self-map in their own settings.

That's it. Issues, labels, and assignees sync between sparQ and your repository, and commits and pull requests show up in the Status feed as each person's current activity.

Self-hosting behind a reverse proxy? Set GITHUB_WEBHOOK_BASE_URL to your public URL (e.g. https://app.example.com) so the auto-registered webhook resolves correctly, and set GITHUB_WEBHOOK_SECRET to verify inbound webhooks (required in production).

Project Structure

sparq/
├── pulse/                  # Main application (sparQ Pulse)
│   ├── app.py              # Application factory
│   ├── modules/            # Feature modules (core, updates, presence, etc.)
│   ├── system/             # Framework (db, auth, email, middleware, etc.)
│   ├── tests/              # Unit, integration, and e2e tests
│   ├── Makefile            # Dev commands (make run, make venv, etc.)
│   └── requirements.in     # Python dependencies
├── metrics/                # (coming soon)
├── knowledge/              # (coming soon)
└── docker-compose.yml

Tech Stack

  • Backend: Python, Flask, SQLAlchemy, Flask-SocketIO
  • Database: SQLite (default) or PostgreSQL
  • Frontend: Server-rendered Jinja2 templates, HTMX
  • Real-time: WebSocket via Flask-SocketIO
  • Production: Gunicorn

Development

cd pulse

# Run tests
python -m pytest tests/

# Reset database
make reset

# Verbose startup (shows module loading)
make run V=1

Contributing

We welcome contributions! Please read our Contributing Guide to get started.

If you find a security vulnerability, please follow our Security Policy instead of filing a public issue.

License

This project is licensed under the GNU Affero General Public License v3.0.

Copyright (c) 2025-2026 sparQ Software LLC.