{"id":32517581,"url":"https://github.com/gl0bal01/black-box-architecture","last_synced_at":"2026-07-02T23:02:08.869Z","repository":{"id":320865593,"uuid":"1083274871","full_name":"gl0bal01/black-box-architecture","owner":"gl0bal01","description":"Transform any codebase into modular, maintainable \"black boxes\" using Eskil Steenberg's architecture principles","archived":false,"fork":false,"pushed_at":"2026-04-12T20:25:44.000Z","size":228,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-28T16:31:28.409Z","etag":null,"topics":["ai-prompts","claude-agents","claude-code","claude-prompts","claude-skills","modular-design","software-architecture"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gl0bal01.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE","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":"docs/AGENTS.md","dco":null,"cla":null}},"created_at":"2025-10-25T17:30:36.000Z","updated_at":"2026-04-12T20:25:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"194d4c3f-a232-495d-b4a8-7502b108781b","html_url":"https://github.com/gl0bal01/black-box-architecture","commit_stats":null,"previous_names":["gl0bal01/black-box-architecture"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/gl0bal01/black-box-architecture","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gl0bal01%2Fblack-box-architecture","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gl0bal01%2Fblack-box-architecture/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gl0bal01%2Fblack-box-architecture/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gl0bal01%2Fblack-box-architecture/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gl0bal01","download_url":"https://codeload.github.com/gl0bal01/black-box-architecture/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gl0bal01%2Fblack-box-architecture/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35065702,"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-07-02T02:00:06.368Z","response_time":173,"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":["ai-prompts","claude-agents","claude-code","claude-prompts","claude-skills","modular-design","software-architecture"],"created_at":"2025-10-28T03:00:39.536Z","updated_at":"2026-07-02T23:02:08.857Z","avatar_url":"https://github.com/gl0bal01.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Black Box Architecture Agents\n\nAI agents for maintaining and improving software architecture using black-box design principles — inspired by [Eskil Steenberg's lecture](https://www.youtube.com/watch?v=sSpULGNHyoI) and rooted in information hiding (Parnas, 1972).\n\nFive coordinated specialists — analyze, plan, implement, debug — governed by a shared contract that enforces scope discipline, evidence minimums, approval gates, and a self-improvement loop.\n\n## Quick Install\n\n```bash\ngit clone https://github.com/gl0bal01/black-box-architecture.git\n\n# Project-specific\nmkdir -p .claude/agents\ncp -r black-box-architecture/agents/* .claude/agents/\n\n# Or personal (all projects)\ncp -r black-box-architecture/agents/* ~/.claude/agents/\n```\n\n## Agents\n\n| Agent | Role | Model | Writes Code |\n|-------|------|-------|-------------|\n| **arch-orchestrator** | Entry point. Classifies, delegates, synthesizes. | Opus | No |\n| **arch-analyzer** | Maps module boundaries, coupling, violations. | Sonnet | No |\n| **arch-planner** | Designs modules, interfaces, migration roadmaps. | Opus | No |\n| **arch-implementer** | Executes approved plans with commit discipline. | Sonnet | Yes (requires approval) |\n| **arch-debugger** | Isolates bugs to contract boundaries, fixes autonomously. | Sonnet | Yes (approval gates apply) |\n\nAll agents follow `agents/BLACKBOX_CONTRACT.md` — 13 rules covering scope discipline, evidence requirements, approval gates, commit checkpoints, and self-improvement.\n\n## Usage\n\n```\n\"Ask arch-orchestrator to analyze UserService and propose black-box boundaries\"\n\"Ask arch-analyzer to find coupling issues in src/services/\"\n\"Ask arch-planner to design a payment processing module\"\n\"Ask arch-implementer to execute the approved refactoring plan\"\n\"Ask arch-debugger to isolate and fix the checkout bug\"\n```\n\n## Workflows\n\n| Workflow | Agents | Approval Gate |\n|----------|--------|---------------|\n| Analysis only | Analyzer | — |\n| Planning only | Planner | — |\n| Full refactoring | Analyzer → Planner → Implementer | After plan, before implementation |\n| Debug \u0026 fix | Debugger → (Implementer) | Before non-trivial fixes |\n| Complete transformation | All agents in sequence | After plan + between phases |\n\n## Documentation\n\n- [Agent System Guide](docs/AGENTS.md) — Architecture, agents, workflows, troubleshooting\n- [Black Box Principles](docs/PRINCIPLES.md) — Design philosophy (Steenberg, Parnas)\n- [Code Examples](docs/EXAMPLES.md) — Before/after refactorings in 6 languages\n- [Contributing](docs/CONTRIBUTING.md) — How to contribute\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgl0bal01%2Fblack-box-architecture","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgl0bal01%2Fblack-box-architecture","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgl0bal01%2Fblack-box-architecture/lists"}