[PR #33] [MERGED] feat: Migrate QChat Adapter to Kiro CLI #102

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

📋 Pull Request Information

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

Base: mainHead: migrate-q-chat


📝 Commits (10+)

  • 3d15dcf fix: resolve syntax error in qchat integration tests
  • 60ffc58 chore: update uv.lock to match pyproject.toml
  • 0b11765 fix: resolve pytest warnings in web module tests
  • 8621c5b docs: update PROMPT.md with final task completion status
  • 063d234 docs: add security API reference
  • ea208dc fix: remove unused import in test_agent_priority.py
  • 58f3df6 feat: add KiroAdapter for Kiro CLI support
  • b9080d1 feat: migrate Q Chat to Kiro CLI (docs)
  • 009eab7 docs: update documentation for Kiro CLI migration
  • dd26818 docs: mark Kiro migration task complete

📊 Changes

26 files changed (+1711 additions, -1012 deletions)

View changed files

.agent/scratchpad.md (+0 -12)
📝 PROMPT.md (+98 -914)
📝 README.md (+18 -6)
docs/api/security.md (+177 -0)
📝 docs/changelog.md (+5 -0)
📝 docs/deployment/qchat-production.md (+4 -0)
📝 docs/guide/configuration.md (+1 -1)
docs/guide/kiro-migration.md (+93 -0)
📝 mkdocs.yml (+2 -0)
📝 pyproject.toml (+1 -0)
📝 ralph.yml (+21 -2)
run_test.sh (+3 -0)
📝 src/ralph_orchestrator/__main__.py (+131 -44)
📝 src/ralph_orchestrator/adapters/__init__.py (+2 -0)
src/ralph_orchestrator/adapters/kiro.py (+562 -0)
📝 src/ralph_orchestrator/adapters/qchat.py (+31 -4)
📝 src/ralph_orchestrator/logging_config.py (+1 -0)
📝 src/ralph_orchestrator/main.py (+4 -2)
📝 src/ralph_orchestrator/orchestrator.py (+17 -2)
test_ralph.yml (+4 -0)

...and 6 more files

📄 Description

This PR migrates the QChat Adapter to the Kiro CLI.

Changes

  • Implemented KiroAdapter as the primary adapter.
  • Updated configuration in ralph.yml.
  • Added comprehensive documentation:
    • Migration guide (docs/guide/kiro-migration.md)
    • Configuration guide
  • Updated tests to support pytest-asyncio and full coverage.
  • Deprecated old QChat adapter documentation.

Verification

  • All tests passed (32 tests: 28 passed, 4 skipped).
  • Verified ralph run -a kiro functionality manually.

🔄 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/33 **Author:** [@mikeyobrien](https://github.com/mikeyobrien) **Created:** 1/8/2026 **Status:** ✅ Merged **Merged:** 1/8/2026 **Merged by:** [@mikeyobrien](https://github.com/mikeyobrien) **Base:** `main` ← **Head:** `migrate-q-chat` --- ### 📝 Commits (10+) - [`3d15dcf`](https://github.com/mikeyobrien/ralph-orchestrator/commit/3d15dcf23656737cb11b1213b279e165a4464608) fix: resolve syntax error in qchat integration tests - [`60ffc58`](https://github.com/mikeyobrien/ralph-orchestrator/commit/60ffc58cf5777ab101f1023ba83a6529e5eaf86a) chore: update uv.lock to match pyproject.toml - [`0b11765`](https://github.com/mikeyobrien/ralph-orchestrator/commit/0b1176508226975de797ba841bce00c52b48dc41) fix: resolve pytest warnings in web module tests - [`8621c5b`](https://github.com/mikeyobrien/ralph-orchestrator/commit/8621c5b806c19086825d16ae0c1b64b31ba6cb89) docs: update PROMPT.md with final task completion status - [`063d234`](https://github.com/mikeyobrien/ralph-orchestrator/commit/063d2341614d6154adeeb92e96b30a9d6b5a95f7) docs: add security API reference - [`ea208dc`](https://github.com/mikeyobrien/ralph-orchestrator/commit/ea208dc58be2228f478d95a381996373ae69acac) fix: remove unused import in test_agent_priority.py - [`58f3df6`](https://github.com/mikeyobrien/ralph-orchestrator/commit/58f3df6691a63ac64aedd660642623ea4503c940) feat: add KiroAdapter for Kiro CLI support - [`b9080d1`](https://github.com/mikeyobrien/ralph-orchestrator/commit/b9080d1b7cb2f932c51189c2b1d3752aba988a72) feat: migrate Q Chat to Kiro CLI (docs) - [`009eab7`](https://github.com/mikeyobrien/ralph-orchestrator/commit/009eab79739fd9b4afe2d3f637d66f93f9b0eb88) docs: update documentation for Kiro CLI migration - [`dd26818`](https://github.com/mikeyobrien/ralph-orchestrator/commit/dd26818715aa5949661458316f89abfe77a2e1a2) docs: mark Kiro migration task complete ### 📊 Changes **26 files changed** (+1711 additions, -1012 deletions) <details> <summary>View changed files</summary> ➖ `.agent/scratchpad.md` (+0 -12) 📝 `PROMPT.md` (+98 -914) 📝 `README.md` (+18 -6) ➕ `docs/api/security.md` (+177 -0) 📝 `docs/changelog.md` (+5 -0) 📝 `docs/deployment/qchat-production.md` (+4 -0) 📝 `docs/guide/configuration.md` (+1 -1) ➕ `docs/guide/kiro-migration.md` (+93 -0) 📝 `mkdocs.yml` (+2 -0) 📝 `pyproject.toml` (+1 -0) 📝 `ralph.yml` (+21 -2) ➕ `run_test.sh` (+3 -0) 📝 `src/ralph_orchestrator/__main__.py` (+131 -44) 📝 `src/ralph_orchestrator/adapters/__init__.py` (+2 -0) ➕ `src/ralph_orchestrator/adapters/kiro.py` (+562 -0) 📝 `src/ralph_orchestrator/adapters/qchat.py` (+31 -4) 📝 `src/ralph_orchestrator/logging_config.py` (+1 -0) 📝 `src/ralph_orchestrator/main.py` (+4 -2) 📝 `src/ralph_orchestrator/orchestrator.py` (+17 -2) ➕ `test_ralph.yml` (+4 -0) _...and 6 more files_ </details> ### 📄 Description This PR migrates the QChat Adapter to the Kiro CLI. ### Changes - Implemented `KiroAdapter` as the primary adapter. - Updated configuration in `ralph.yml`. - Added comprehensive documentation: - Migration guide (`docs/guide/kiro-migration.md`) - Configuration guide - Updated tests to support `pytest-asyncio` and full coverage. - Deprecated old QChat adapter documentation. ### Verification - All tests passed (32 tests: 28 passed, 4 skipped). - Verified `ralph run -a kiro` functionality manually. --- <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:14 +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#102
No description provided.