This repository is the organization-level home for Kaizen Agents documentation, shared skills, and profile content.
It does not run the issue-to-PR pipeline itself. It explains the system, keeps shared workflow skills and Codex automation prompts in one source of truth, and coordinates cross-repository documentation for the core projects.
flowchart LR
Issue["GitHub Issue"] --> Loop["kaizen-loop<br/>selects issue and owns orchestration"]
Loop --> Builder["builder-agent<br/>implements and self-reviews"]
Builder --> Checks["mechanical checks<br/>test / typecheck / build"]
Checks --> Verifier["verifier<br/>independent gate verdict"]
Verifier --> PR["ready-for-review PR"]
PR --> Human["human review and merge"]
Org[".github repo<br/>docs + shared skills"] -.guidance.-> Loop
Org -.guidance.-> Builder
Org -.guidance.-> Verifier
The core rule is:
Builders build. Verifiers verify. Kaizen Loop coordinates.
flowchart TB
Repo[".github repository"]
Repo --> Profile["profile/README.md<br/>organization landing page"]
Repo --> Docs["docs/<br/>architecture, MVP plan, status, decisions"]
Repo --> Skills["skills/<br/>shared Codex workflows"]
Repo --> Automations["automations/<br/>Codex automation prompts"]
Repo --> Sync["scripts/sync-kaizen-shared-skills.sh<br/>copy shared skills into core repos"]
Skills --> BA["builder-agent/skills"]
Skills --> KL["kaizen-loop/skills"]
Skills --> VF["verifier/skills"]
Skills --> CR["coderabbit/skills"]
Skills --> RC["renovate-config/skills"]
| Repository | Responsibility | Main README |
|---|---|---|
kaizen-loop |
Orchestrates GitHub Issue intake, isolated workspaces, checks, verifier calls, PR creation, and run reporting. | https://github.com/kaizen-agents-org/kaizen-loop |
builder-agent |
Performs implementation work and internal self-review, then returns structured build artifacts. | https://github.com/kaizen-agents-org/builder-agent |
verifier |
Independently evaluates completed changes and returns a structured gate verdict. | https://github.com/kaizen-agents-org/verifier |
coderabbit |
Stores shared CodeRabbit review configuration. | https://github.com/kaizen-agents-org/coderabbit |
renovate-config |
Stores shared Renovate dependency update defaults. | https://github.com/kaizen-agents-org/renovate-config |
- docs/README.md: documentation index.
- docs/documentation-sources.md: source-of-truth order for documentation-backed issue creation.
- docs/architecture.md: system responsibilities and end-to-end flow.
- docs/issue-to-pr-mvp.md: organization-level MVP contract.
- docs/shared-skill-sync.md: how shared skills are distributed.
- docs/daily-dogfood-sync.md: deterministic daily sync contract for shared skills and dogfooding contracts.
- docs/org-monitor.md: cross-repository coordination monitor.
- docs/implementation-status.md: current implementation state.
- docs/production-readiness-log.md: dated readiness findings and operational gaps.
- docs/production-readiness/README.md: weekly readiness review process, checklist, metrics, and template.
- docs/design-decisions.md: rationale for the current architecture.
The skills/ directory is the source of truth for shared Kaizen workflows:
gh-link-issue-pr: ensure implementation PRs close their source issues with GitHub closing keywords.kaizen-bug-router: route Kaizen Agents bug reports to the owning repository.pr-guardian: monitor an opened PR until it is mergeable or a real blocker remains.
Core repositories vendor these skills so local agents can use the same workflows without depending on this repository at runtime.
The automations/ directory stores GitHub-managed source prompts for local Codex automations. Runtime automation copies live under $CODEX_HOME/automations, but those local files are not the source of truth.
- Kaizen Agents repo improvement scout: daily proactive repo-local improvement discovery; creates
[scout]issues. - Kaizen Agents org monitor: daily cross-repository coordination monitor; creates
[monitor]issues only for operational drift. - Kaizen Agents weekly readiness review: weekly production-readiness assessment; opens a dated readiness report PR.
- Kaizen Agents readiness issue creator: daily post-merge poll; converts approved readiness reports into
[readiness-review]issues.
Organization coordination and automated monitor issues should follow the source order in docs/documentation-sources.md, starting with the organization profile, this README, and the architecture docs, then the Issue-to-PR MVP, Daily Dogfood Sync, Shared Skill Sync, and Organization Monitor docs as needed. When the monitor creates a follow-up issue, its body should cite the relevant documentation path or URL and explain why that source supports the issue scope. If the docs are stale or contradictory, the monitor should report the drift instead of creating an implementation issue from an assumption.