{"id":31836664,"url":"https://github.com/policyengine/policyengine-coverage-tracker","last_synced_at":"2025-10-12T01:51:53.373Z","repository":{"id":317252342,"uuid":"1065429936","full_name":"PolicyEngine/policyengine-coverage-tracker","owner":"PolicyEngine","description":"Tool to monitor and visualize the PolicyEngine-US tax and benefit program coverage ","archived":false,"fork":false,"pushed_at":"2025-10-08T20:07:32.000Z","size":1167,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-10T06:21:02.140Z","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/PolicyEngine.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}},"created_at":"2025-09-27T17:57:44.000Z","updated_at":"2025-10-08T20:07:36.000Z","dependencies_parsed_at":"2025-09-29T20:46:50.236Z","dependency_job_id":null,"html_url":"https://github.com/PolicyEngine/policyengine-coverage-tracker","commit_stats":null,"previous_names":["policyengine/policyengine-coverage-tracker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/PolicyEngine/policyengine-coverage-tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PolicyEngine%2Fpolicyengine-coverage-tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PolicyEngine%2Fpolicyengine-coverage-tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PolicyEngine%2Fpolicyengine-coverage-tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PolicyEngine%2Fpolicyengine-coverage-tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PolicyEngine","download_url":"https://codeload.github.com/PolicyEngine/policyengine-coverage-tracker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PolicyEngine%2Fpolicyengine-coverage-tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279009804,"owners_count":26084648,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"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":"2025-10-12T01:51:47.861Z","updated_at":"2025-10-12T01:51:53.361Z","avatar_url":"https://github.com/PolicyEngine.png","language":"TypeScript","readme":"# PolicyEngine Coverage Tracker\n\nA comprehensive visualization tool for tracking the implementation status of government programs in [PolicyEngine US](https://github.com/PolicyEngine/policyengine-us).\n\n## Features\n\n- **Visual Coverage Status**: Clear indicators showing complete, partial, in-progress, and not-started programs\n- **Filtering**: Filter programs by status, agency, or search by name\n- **GitHub Integration**: Direct links to parameters and variables folders in the PolicyEngine US repository\n- **Statistics Dashboard**: Overview of coverage completion rates\n- **PolicyEngine Brand Colors**: Consistent with PolicyEngine's design system\n\n## Adding New Programs\n\nTo add a new program to the tracker, edit the `/src/data/programs.ts` file and add a new program object to the `programs` array:\n\n```typescript\n{\n  id: 'program_id',           // Unique identifier (lowercase, underscores)\n  name: 'Program Name',        // Short display name\n  fullName: 'Full Program Name', // Complete official name\n  agency: 'AGENCY',           // One of: USDA, HHS, SSA, IRS, HUD, ED, DOL, FCC, ACA, State, Local\n  category: 'Category',       // Optional: For non-agency programs (e.g., 'Taxes', 'Energy', 'Legal')\n  status: 'status',           // One of: complete, partial, inProgress, notStarted\n  coverage: 'Coverage Area',   // e.g., 'US', 'CA, NY, MA', 'Los Angeles'\n  notes: 'Additional notes',  // Optional: Implementation details or caveats\n  githubLinks: {\n    parameters: `${GITHUB_BASE}/parameters/path/to/parameters`,\n    variables: `${GITHUB_BASE}/variables/path/to/variables`,\n    tests: `${TESTS_BASE}/policy/baseline/path/to/tests`, // Optional\n  },\n}\n```\n\n### Status Definitions\n\n- **complete**: Fully implemented with all federal rules\n- **partial**: Partially implemented or limited to certain states/regions\n- **inProgress**: Currently being developed\n- **notStarted**: Planned but not yet begun\n\n### Example\n\n```typescript\n{\n  id: 'new_benefit',\n  name: 'New Benefit',\n  fullName: 'New Government Benefit Program',\n  agency: 'HHS',\n  status: 'inProgress',\n  coverage: 'CA, NY',\n  notes: 'Currently implementing eligibility rules',\n  githubLinks: {\n    parameters: `${GITHUB_BASE}/parameters/gov/hhs/new_benefit`,\n    variables: `${GITHUB_BASE}/variables/gov/hhs/new_benefit`,\n    tests: `${TESTS_BASE}/policy/baseline/gov/hhs/new_benefit`,\n  },\n}\n```\n\n## Development\n\n### Prerequisites\n- Node.js (v14 or higher)\n- npm\n\n### Installation\n\n```bash\n# Install dependencies\nnpm install\n```\n\n### Running Locally\n\n```bash\n# Start development server\nnpm start\n```\n\nThe app will open at [http://localhost:3000](http://localhost:3000)\n\n### Building for Production\n\n```bash\n# Create production build\nnpm run build\n```\n\n## Deployment\n\n### GitHub Pages\n\nThe project is configured for easy deployment to GitHub Pages:\n\n```bash\n# Deploy to GitHub Pages\nnpm run deploy\n```\n\nThis will:\n1. Build the production version\n2. Deploy to the `gh-pages` branch\n3. Make it available at: https://[username].github.io/policyengine-coverage-tracker\n\n### Configuration\n\nTo deploy to a different GitHub Pages URL, update the `homepage` field in `package.json`:\n\n```json\n\"homepage\": \"https://[username].github.io/[repository-name]\"\n```\n\n## Project Structure\n\n```\nsrc/\n├── components/\n│   ├── FilterBar.tsx       # Filter and search controls\n│   ├── ProgramCard.tsx     # Individual program display\n│   └── StatsOverview.tsx   # Coverage statistics dashboard\n├── constants/\n│   └── colors.ts           # PolicyEngine brand colors\n├── data/\n│   └── programs.ts         # Program data and configuration\n├── types/\n│   └── Program.ts          # TypeScript type definitions\n└── App.tsx                 # Main application component\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Add or update programs in `/src/data/programs.ts`\n4. Test locally with `npm start`\n5. Submit a pull request\n\n## License\n\nThis project is part of PolicyEngine and follows the same licensing terms as the main PolicyEngine US repository.\n\n## Links\n\n- [PolicyEngine US Repository](https://github.com/PolicyEngine/policyengine-us)\n- [PolicyEngine Website](https://policyengine.org)\n- [PolicyEngine Documentation](https://docs.policyengine.org)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolicyengine%2Fpolicyengine-coverage-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpolicyengine%2Fpolicyengine-coverage-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolicyengine%2Fpolicyengine-coverage-tracker/lists"}