@herbcaudill/ralph 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/index.js +348 -199
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/templates/skills/manage-tasks/SKILL.md +18 -9
- package/templates/core-prompt.md +0 -61
- package/templates/workflow.md +0 -32
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ By default, Ralph runs `ceil(openIssues * 1.2)` sessions, bounded between 10 and
|
|
|
42
42
|
|
|
43
43
|
## How it works
|
|
44
44
|
|
|
45
|
-
1. Ralph combines a core prompt with your repo's `.ralph/workflow.md` to build the session instructions
|
|
45
|
+
1. Ralph combines a core prompt with your repo's `.ralph/workflow.prompt.md` to build the session instructions
|
|
46
46
|
2. Spawns the agent CLI with `--output-format stream-json`
|
|
47
47
|
3. The agent checks build/tests, finds available issues via `bd ready`, claims one, completes it, and closes it
|
|
48
48
|
4. Events are streamed to the terminal UI and logged to `.ralph/events-*.jsonl`
|
|
@@ -68,12 +68,12 @@ By default, Ralph runs `ceil(openIssues * 1.2)` sessions, bounded between 10 and
|
|
|
68
68
|
|
|
69
69
|
## Configuration
|
|
70
70
|
|
|
71
|
-
After `ralph init`, customize `.ralph/workflow.md` with your repo's build commands, test commands, and task prioritization rules.
|
|
71
|
+
After `ralph init`, customize `.ralph/workflow.prompt.md` with your repo's build commands, test commands, and task prioritization rules.
|
|
72
72
|
|
|
73
73
|
## Template system
|
|
74
74
|
|
|
75
75
|
- **Core prompt** (bundled) - Session lifecycle, task assignment, output tokens
|
|
76
|
-
- **Workflow** (`.ralph/workflow.md`) - Repo-specific build/test commands and workflow rules
|
|
76
|
+
- **Workflow** (`.ralph/workflow.prompt.md`) - Repo-specific build/test commands and workflow rules
|
|
77
77
|
|
|
78
78
|
## Environment variables
|
|
79
79
|
|