{"id":50995258,"url":"https://github.com/jerone/azure-devops-achievements","last_synced_at":"2026-06-20T08:32:00.782Z","repository":{"id":360548131,"uuid":"1249518337","full_name":"jerone/azure-devops-achievements","owner":"jerone","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-26T21:28:10.000Z","size":106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-26T23:13:03.861Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jerone.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"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},"funding":{"github":"jerone","issuehunt":"jerone","patreon":"jerone","custom":["https://www.buymeacoffee.com/jerone","https://paypal.me/jeronevw"]}},"created_at":"2026-05-25T19:37:26.000Z","updated_at":"2026-05-26T21:28:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jerone/azure-devops-achievements","commit_stats":null,"previous_names":["jerone/azure-devops-achievements"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jerone/azure-devops-achievements","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerone%2Fazure-devops-achievements","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerone%2Fazure-devops-achievements/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerone%2Fazure-devops-achievements/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerone%2Fazure-devops-achievements/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jerone","download_url":"https://codeload.github.com/jerone/azure-devops-achievements/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerone%2Fazure-devops-achievements/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34563535,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-06-20T08:32:00.644Z","updated_at":"2026-06-20T08:32:00.761Z","avatar_url":"https://github.com/jerone.png","language":"TypeScript","funding_links":["https://github.com/sponsors/jerone","https://issuehunt.io/r/jerone","https://patreon.com/jerone","https://www.buymeacoffee.com/jerone","https://paypal.me/jeronevw"],"categories":[],"sub_categories":[],"readme":"# Azure DevOps Achievements 🏆\n\nEarn achievements by performing tasks in Azure DevOps — inspired by [GitHub Profile Achievements](https://github.com/Schweinepriester/github-profile-achievements).\n\n## Achievements\n\n| Badge | Icon | How to earn |\n|---|---|---|\n| Pull Shark | 🦈 | Merge pull requests (tiers: 2 / 10 / 50) |\n| Code Reviewer | 🔍 | Review PRs (tiers: 5 / 25 / 100) |\n| YOLO | 💥 | Merge a PR without any reviewers |\n| Quickdraw | ⚡ | Close a work item within 5 min of creating it |\n| Bug Squasher | 🐛 | Close bugs (tiers: 5 / 25 / 100) |\n| Pipeline Pioneer | 🚀 | Run your first pipeline |\n| Build Master | 🏗️ | Trigger successful builds (tiers: 10 / 50 / 250) |\n| Sprint Warrior | 🏃 | Complete all work in a sprint |\n| First Blood | 🩸 | Create your first work item |\n| Pair Programmer | 👫 | Co-author a commit in a merged PR |\n| Comment King | 👑 | Leave PR comments (tiers: 20 / 100 / 500) |\n| Green Guardian | 🟢 | Accumulate passing test runs (tiers: 50 / 250 / 1000) |\n\n## Development\n\n### Prerequisites\n\n- Node.js 18+\n- A Visual Studio Marketplace publisher account\n- `tfx-cli` for packaging: `npm install -g tfx-cli`\n\n### Setup\n\n```bash\nnpm install\n```\n\n### Build\n\n```bash\nnpm run build        # production build\nnpm run build:dev    # development build\nnpm run watch        # watch mode\n```\n\n### Package \u0026 Publish\n\n1. Update `publisher` in `vss-extension.json` with your publisher ID.\n2. Replace `images/logo.png` with a real 128×128 PNG icon.\n\n```bash\nnpm run package      # creates a .vsix file\ntfx extension publish --vsix *.vsix\n```\n\n## Architecture\n\n```\nsrc/\n├── achievements/\n│   ├── definitions.ts   — Achievement catalog \u0026 EarnedAchievement type\n│   ├── evaluator.ts     — REST API calls + data service persistence\n│   └── styles.css       — Shared styles\n├── my-achievements/     — Personal hub (React)\n└── team-leaderboard/    — Project leaderboard (React)\ndist/                    — Built JS + HTML (committed for the extension package)\nvss-extension.json       — Extension manifest\n```\n\nThe evaluator calls the following ADO REST APIs:\n- **Git API** — PRs, reviews, commits, thread comments\n- **Work Item Tracking API** — work items, bugs, sprint completion\n- **Build API** — pipeline runs, build results\n- **Test API** — test run pass/fail stats\n\nEarned achievements are stored per-user in the **Extension Data Service** (scoped to the user) so the leaderboard can read everyone's cached data.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjerone%2Fazure-devops-achievements","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjerone%2Fazure-devops-achievements","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjerone%2Fazure-devops-achievements/lists"}