{"id":46697317,"url":"https://github.com/sestinj/slopocalypse","last_synced_at":"2026-03-09T05:33:55.554Z","repository":{"id":342155034,"uuid":"1167088246","full_name":"sestinj/slopocalypse","owner":"sestinj","description":"Track buggy software releases as evidence of AI-accelerated quality decline","archived":false,"fork":false,"pushed_at":"2026-03-05T00:34:35.000Z","size":2088,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-05T06:38:22.517Z","etag":null,"topics":["ai","developer-tools","incidents","monitoring","software-quality"],"latest_commit_sha":null,"homepage":"https://continue.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sestinj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-25T23:39:22.000Z","updated_at":"2026-03-05T00:34:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sestinj/slopocalypse","commit_stats":null,"previous_names":["sestinj/slopocalypse"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/sestinj/slopocalypse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sestinj%2Fslopocalypse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sestinj%2Fslopocalypse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sestinj%2Fslopocalypse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sestinj%2Fslopocalypse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sestinj","download_url":"https://codeload.github.com/sestinj/slopocalypse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sestinj%2Fslopocalypse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30283941,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","developer-tools","incidents","monitoring","software-quality"],"created_at":"2026-03-09T05:33:53.329Z","updated_at":"2026-03-09T05:33:55.542Z","avatar_url":"https://github.com/sestinj.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://continue.dev\"\u003e\n    \u003cimg src=\".github/assets/continue-banner.png\" width=\"800\" alt=\"Continue\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eSlopocalypse\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003eTrack buggy software releases as evidence of AI-accelerated quality decline\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cem\u003eAn autonomous codebase built by the \u003ca href=\"https://continue.dev/blueprint\"\u003eContinue Software Factory\u003c/a\u003e\u003c/em\u003e\u003c/p\u003e\n\n---\n\n## Why?\n\nAs AI-assisted coding tools become ubiquitous, there is growing concern that software quality may be declining — more bugs shipped, more incidents, more \"slop.\" Slopocalypse tracks and visualizes real-world buggy software releases to provide data-driven evidence of this trend.\n\n## How It Works\n\nSlopocalypse monitors software releases and incidents using [Parallel Web](https://www.npmjs.com/package/parallel-web) monitors. When a buggy release is detected, it is recorded and displayed on the site.\n\n### Architecture\n\n- **Server** (`src/server.ts`) — HTTP server serving the site, API, and webhook endpoint\n- **Monitor** (`src/monitor.ts`) — Creates and manages Parallel Web monitors to track incidents\n- **Webhook** (`src/webhook-server.ts`) — Receives webhook events from monitors\n- **Store** (`src/store.ts`) — Persists incident data to Vercel Blob storage\n- **Public** (`public/`) — Static HTML/CSS for the site\n\n### API Routes\n\n| Method | Path              | Description                          |\n| ------ | ----------------- | ------------------------------------ |\n| GET    | `/`               | The site (HTML)                      |\n| GET    | `/api/incidents`  | JSON incident data                   |\n| POST   | `/api/webhook`    | Parallel Monitor webhook receiver    |\n| GET    | `/health`         | Health check                         |\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18+\n- A [Parallel Web](https://www.npmjs.com/package/parallel-web) API key (set as `PARALLEL_API_KEY`)\n\n### Installation\n\n```bash\nnpm install\n```\n\n### Development\n\n```bash\n# Start the dev server\nnpm run dev\n\n# Backfill historical data\nnpm run backfill\n\n# Create monitors\nnpm run monitor:create\n\n# Poll monitors\nnpm run monitor:poll\n```\n\n### Environment Variables\n\nCopy `.env` and configure:\n\n- `PARALLEL_API_KEY` — API key for Parallel Web monitors\n- `BLOB_READ_WRITE_TOKEN` — Vercel Blob storage token\n- `PORT` — Server port (default: 3456)\n\n## Deployment\n\nThe project is configured for deployment on [Vercel](https://vercel.com). See `vercel.json` for configuration.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on how to contribute.\n\n## License\n\nApache-2.0 — see [LICENSE](LICENSE) for details.\n\nCopyright (c) 2025 Continue Dev, Inc.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsestinj%2Fslopocalypse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsestinj%2Fslopocalypse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsestinj%2Fslopocalypse/lists"}