[PR #62] [MERGED] 2.0.0 #117

Closed
opened 2026-02-27 10:22:17 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mikeyobrien/ralph-orchestrator/pull/62
Author: @mikeyobrien
Created: 1/15/2026
Status: Merged
Merged: 1/16/2026
Merged by: @mikeyobrien

Base: mainHead: 2.0.0


📝 Commits (10+)

  • aeb8a25 feat: Add Rust workspace scaffolding for ralph-orchestrator 2.0
  • 631da76 chore: upgrade workspace to Rust edition 2024
  • a9ce57b feat: implement event-loop orchestration system
  • fcf6bc1 feat: implement v1 config parity and auto-detection
  • f13e1d3 feat(cli): add colored terminal output support
  • 2470d2b feat(cli): add checkpoint count to termination summary
  • 0e6f0e6 feat(core): add structured logging for key events
  • 06c1a3e feat(core,adapters): expand verbose mode debug logging
  • c9ca0bc docs(specs): mark Output & Feedback section complete
  • d0e65a4 feat(proto): add UX event types and EventBus observer for benchmarking

📊 Changes

344 files changed (+57815 additions, -37194 deletions)

View changed files

.claude/agents/code-assist.md (+87 -0)
.claude/commands/update-behaviors.md (+104 -0)
.claude/commands/verify-behaviors.md (+78 -0)
.claude/skills/code-assist/SKILL.md (+462 -0)
.claude/skills/code-task-generator/SKILL.md (+327 -0)
.claude/skills/codebase-summary/SKILL.md (+314 -0)
.claude/skills/creating-hat-collections/SKILL.md (+207 -0)
.claude/skills/eval/SKILL.md (+1580 -0)
.claude/skills/evaluate-presets/SKILL.md (+239 -0)
.claude/skills/find-code-tasks/SKILL.md (+180 -0)
.claude/skills/find-code-tasks/task-status.sh (+191 -0)
.claude/skills/pdd/SKILL.md (+294 -0)
.claude/skills/ralph-code-assist/SKILL.md (+116 -0)
.claude/skills/tui-validate/SKILL.md (+436 -0)
.eval-sandbox/.gitignore (+3 -0)
.eval/.gitignore (+3 -0)
.github/workflows/release.yml (+384 -0)
📝 .gitignore (+9 -0)
.sops/README.md (+41 -0)
.sops/code-assist.sop.md (+102 -0)

...and 80 more files

📄 Description

Rewrite in Rust


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mikeyobrien/ralph-orchestrator/pull/62 **Author:** [@mikeyobrien](https://github.com/mikeyobrien) **Created:** 1/15/2026 **Status:** ✅ Merged **Merged:** 1/16/2026 **Merged by:** [@mikeyobrien](https://github.com/mikeyobrien) **Base:** `main` ← **Head:** `2.0.0` --- ### 📝 Commits (10+) - [`aeb8a25`](https://github.com/mikeyobrien/ralph-orchestrator/commit/aeb8a253e4c5320f206fbf98307570a6a308e6b9) feat: Add Rust workspace scaffolding for ralph-orchestrator 2.0 - [`631da76`](https://github.com/mikeyobrien/ralph-orchestrator/commit/631da76ea4c548b9bc6662e87d7cb927c5c540a1) chore: upgrade workspace to Rust edition 2024 - [`a9ce57b`](https://github.com/mikeyobrien/ralph-orchestrator/commit/a9ce57b1c95d6de30f11bd0f0827ec2bd269cfd2) feat: implement event-loop orchestration system - [`fcf6bc1`](https://github.com/mikeyobrien/ralph-orchestrator/commit/fcf6bc1bbb9f291e71f68d1bf09fe098a615465b) feat: implement v1 config parity and auto-detection - [`f13e1d3`](https://github.com/mikeyobrien/ralph-orchestrator/commit/f13e1d3b988ac6c05c89fbafe501ab6a709511a0) feat(cli): add colored terminal output support - [`2470d2b`](https://github.com/mikeyobrien/ralph-orchestrator/commit/2470d2b7bde413aaec4c66bd716bdc6f9811c4e5) feat(cli): add checkpoint count to termination summary - [`0e6f0e6`](https://github.com/mikeyobrien/ralph-orchestrator/commit/0e6f0e6df7601b5ceec05e787f7523602ce0bcf0) feat(core): add structured logging for key events - [`06c1a3e`](https://github.com/mikeyobrien/ralph-orchestrator/commit/06c1a3e1c5bad77df6a9b62cf6fcb56d6c34154f) feat(core,adapters): expand verbose mode debug logging - [`c9ca0bc`](https://github.com/mikeyobrien/ralph-orchestrator/commit/c9ca0bc908d3a1d37cbabeb5830cefed6cd20428) docs(specs): mark Output & Feedback section complete - [`d0e65a4`](https://github.com/mikeyobrien/ralph-orchestrator/commit/d0e65a4136715db660488e805c8a2b06e4cf0885) feat(proto): add UX event types and EventBus observer for benchmarking ### 📊 Changes **344 files changed** (+57815 additions, -37194 deletions) <details> <summary>View changed files</summary> ➕ `.claude/agents/code-assist.md` (+87 -0) ➕ `.claude/commands/update-behaviors.md` (+104 -0) ➕ `.claude/commands/verify-behaviors.md` (+78 -0) ➕ `.claude/skills/code-assist/SKILL.md` (+462 -0) ➕ `.claude/skills/code-task-generator/SKILL.md` (+327 -0) ➕ `.claude/skills/codebase-summary/SKILL.md` (+314 -0) ➕ `.claude/skills/creating-hat-collections/SKILL.md` (+207 -0) ➕ `.claude/skills/eval/SKILL.md` (+1580 -0) ➕ `.claude/skills/evaluate-presets/SKILL.md` (+239 -0) ➕ `.claude/skills/find-code-tasks/SKILL.md` (+180 -0) ➕ `.claude/skills/find-code-tasks/task-status.sh` (+191 -0) ➕ `.claude/skills/pdd/SKILL.md` (+294 -0) ➕ `.claude/skills/ralph-code-assist/SKILL.md` (+116 -0) ➕ `.claude/skills/tui-validate/SKILL.md` (+436 -0) ➕ `.eval-sandbox/.gitignore` (+3 -0) ➕ `.eval/.gitignore` (+3 -0) ➕ `.github/workflows/release.yml` (+384 -0) 📝 `.gitignore` (+9 -0) ➕ `.sops/README.md` (+41 -0) ➕ `.sops/code-assist.sop.md` (+102 -0) _...and 80 more files_ </details> ### 📄 Description Rewrite in Rust --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 10:22:17 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ralph-orchestrator#117
No description provided.