mirror of
https://github.com/mikeyobrien/ralph-orchestrator.git
synced 2026-04-25 07:05:57 +03:00
[PR #134] [MERGED] feat: add skill system for injecting domain knowledge into orchestration loops #155
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ralph-orchestrator#155
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/mikeyobrien/ralph-orchestrator/pull/134
Author: @mikeyobrien
Created: 1/29/2026
Status: ✅ Merged
Merged: 1/30/2026
Merged by: @mikeyobrien
Base:
main← Head:feat/skill-system📝 Commits (8)
6bda0f6feat: add skill system for injecting domain knowledge into orchestration loops3b93872chore: auto-commit before merge (loop primary)8038988Revert "chore: auto-commit before merge (loop primary)"2d6d76abugfix: fix plan/task prompt injection3ac1563chore: bump to v2.3.1e1727dcfeat: auto-inject scratchpad content into promptde4a2d1feat: add skill system for injecting domain knowledge into orchestration loops1906fa3merge origin/feat/skill-system into feat/skill-system📊 Changes
18 files changed (+2074 additions, -133 deletions)
View changed files
📝
Cargo.lock(+7 -7)📝
Cargo.toml(+8 -8)📝
crates/ralph-adapters/src/cli_backend.rs(+10 -13)📝
crates/ralph-cli/src/main.rs(+1 -0)➕
crates/ralph-cli/src/skill_cli.rs(+76 -0)📝
crates/ralph-cli/src/tools.rs(+6 -0)➕
crates/ralph-core/data/tasks-skill.md(+17 -0)📝
crates/ralph-core/src/config.rs(+158 -1)📝
crates/ralph-core/src/event_loop/mod.rs(+213 -32)📝
crates/ralph-core/src/event_loop/tests.rs(+156 -0)📝
crates/ralph-core/src/hatless_ralph.rs(+50 -60)📝
crates/ralph-core/src/lib.rs(+5 -1)➕
crates/ralph-core/src/skill.rs(+203 -0)➕
crates/ralph-core/src/skill_registry.rs(+670 -0)📝
crates/ralph-core/tests/event_loop_ralph.rs(+6 -11)➕
crates/ralph-core/tests/fixtures/skills/complex-test-skill/SKILL.md(+9 -0)➕
crates/ralph-core/tests/fixtures/skills/test-skill.md(+13 -0)📝
crates/ralph-core/tests/smoke_runner.rs(+466 -0)📄 Description
Summary
ralph tools skill load <name>and a prompt-index section for on-demand loadingChanges
Core:
skill.rsandskill_registry.rsfor parsing, discovery, overrides, filtering, index generation, and XML-wrapped loadingSkillsConfigand per-skill overrides inralph.ymlEventLoopinjects skill index + auto-inject skills (memories → tasks → custom)HatlessRalphadds skill index between GUARDRAILS and OBJECTIVECLI/Data:
ralph tools skill load <name>data/tasks-skill.mdadded as a built-in skillTests:
Test Plan
cargo testralph tools skill load ralph-memoriesoutputs XML-wrapped content## SKILLSappears and auto-inject skills are prepended🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.