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

推荐订阅源

Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Vercel News
Vercel News
Martin Fowler
Martin Fowler
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LangChain Blog
云风的 BLOG
云风的 BLOG
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - gosparq/sparq: Open-source developer experience ...
aidanurbina · 2026-06-25 · via 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.