{"id":44378210,"url":"https://github.com/dave/millhouse-test","last_synced_at":"2026-02-11T21:35:35.333Z","repository":{"id":333966631,"uuid":"1139454551","full_name":"dave/millhouse-test","owner":"dave","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-22T03:15:52.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-22T15:57:51.399Z","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/dave.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":"2026-01-22T01:27:27.000Z","updated_at":"2026-01-22T03:15:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dave/millhouse-test","commit_stats":null,"previous_names":["dave/millhouse-test"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/dave/millhouse-test","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dave%2Fmillhouse-test","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dave%2Fmillhouse-test/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dave%2Fmillhouse-test/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dave%2Fmillhouse-test/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dave","download_url":"https://codeload.github.com/dave/millhouse-test/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dave%2Fmillhouse-test/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29345621,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T20:11:40.865Z","status":"ssl_error","status_checked_at":"2026-02-11T20:10:41.637Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2026-02-11T21:35:33.190Z","updated_at":"2026-02-11T21:35:35.328Z","avatar_url":"https://github.com/dave.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Millhouse Test Repository\n\nThis repository contains test issues for testing [Millhouse](https://github.com/dave/millhouse), a tool that orchestrates parallel Claude Code instances to implement GitHub issues.\n\n## Test Issues\n\n| Issue | Title | Dependencies | Creates |\n|-------|-------|--------------|---------|\n| #1 | Add a greeting utility function | None | `src/utils/greeting.ts` |\n| #2 | Add a math utility module | None | `src/utils/math.ts` |\n| #3 | Add a string utility module | None | `src/utils/string.ts` |\n| #4 | Create a calculator class | #2 | `src/calculator.ts` |\n| #5 | Create a formatter module | #3 | `src/formatter.ts` |\n| #6 | Create a welcome message generator | #1, #5 | `src/welcome.ts` |\n| #7 | Create barrel export for utils | #1, #2, #3 | `src/utils/index.ts` |\n| #8 | Create main entry point | #4, #6, #7 | `src/index.ts` |\n\n## Dependency Graph\n\n```mermaid\nflowchart TD\n    subgraph \"No Dependencies - Start Immediately\"\n        1[\"#1 greeting\"]\n        2[\"#2 math\"]\n        3[\"#3 string\"]\n    end\n\n    2 --\u003e 4[\"#4 calculator\"]\n    3 --\u003e 5[\"#5 formatter\"]\n\n    1 --\u003e 6[\"#6 welcome\"]\n    5 --\u003e 6\n\n    1 --\u003e 7[\"#7 barrel\"]\n    2 --\u003e 7\n    3 --\u003e 7\n\n    4 --\u003e 8[\"#8 main\"]\n    6 --\u003e 8\n    7 --\u003e 8\n```\n\n**Key points:**\n- **#1, #2, #3** have no dependencies → start immediately in parallel\n- **#4** starts when #2 finishes (doesn't wait for #1 or #3)\n- **#5** starts when #3 finishes\n- **#7** starts when #1, #2, AND #3 all finish\n- **#6** starts when #1 AND #5 finish\n- **#8** starts when #4, #6, AND #7 all finish\n\n## Execution Example\n\nWith concurrency of 3, here's one possible execution:\n\n| Time | Event | Running | Blocked |\n|------|-------|---------|---------|\n| T0 | Start | #1, #2, #3 | #4, #5, #6, #7, #8 |\n| T1 | #2 completes | #1, #3, **#4** | #5, #6, #7, #8 |\n| T2 | #3 completes | #1, #4, **#5** | #6, #7, #8 |\n| T3 | #1 completes | #4, #5, **#7** | #6, #8 |\n| T4 | #5 completes | #4, #7, **#6** | #8 |\n| T5 | #4, #7 complete | #6 | #8 |\n| T6 | #6 completes | **#8** | - |\n| T7 | #8 completes | Done | - |\n\nNote: Actual order varies based on which issues finish first.\n\n## Running the Test\n\n```bash\n# Clone this repo\ngit clone https://github.com/dave/millhouse-test\ncd millhouse-test\n\n# Run millhouse starting from issue #8\nmillhouse run --issue 8\n\n# Or dry-run to see the plan without executing\nmillhouse run --issue 8 --dry-run\n```\n\n## Expected Result\n\nAfter a successful run, the repository should have:\n\n```\nsrc/\n├── utils/\n│   ├── greeting.ts    # from #1\n│   ├── math.ts        # from #2\n│   ├── string.ts      # from #3\n│   └── index.ts       # from #7\n├── calculator.ts      # from #4\n├── formatter.ts       # from #5\n├── welcome.ts         # from #6\n└── index.ts           # from #8\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdave%2Fmillhouse-test","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdave%2Fmillhouse-test","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdave%2Fmillhouse-test/lists"}