@pageai/ralph-loop 1.17.0 → 1.18.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.
@@ -29,8 +29,6 @@ This sandbox runs emulated aarch64 Linux. Apply as needed:
29
29
  Fix: `rm -rf node_modules/<corrupt-pkg> && npm install --ignore-scripts`
30
30
  Re-scan until clean. Only then start the dev server.
31
31
 
32
- - **If using TanStack Start:** Check that `src/integrations/tanstack-query/root-provider.tsx` has a default export wrapping children with `QueryClientProvider`. The starter template ships without it, causing a 500 on load.
33
-
34
32
  ## Main Tasks
35
33
 
36
34
  Install dependencies (using the sequence above), then install Playwright system dependencies: `sudo npx playwright install-deps chromium 2>&1`. Allow up to 10 minutes for tasks to complete.
package/README.md CHANGED
@@ -25,6 +25,7 @@ This is an implementation that actually works, containing a hackable script so y
25
25
  - [Promise Tags](#promise-tags)
26
26
  - [Exit Codes](#exit-codes)
27
27
  - [Structure](#structure)
28
+ - [Continued Development](#continued-development)
28
29
  - [Skills](#skills)
29
30
  - [Available Skills](#available-skills)
30
31
  - [Skills Directory Structure](#skills-directory-structure)
@@ -257,6 +258,24 @@ Ralph uses semantic tags to communicate status:
257
258
  └── skills/ # Shared skills (source of truth)
258
259
  ```
259
260
 
261
+ ## Continued Development
262
+
263
+ As Ralph implements tasks, you might notice that you want some tweaks, features or even bug fixes.<br/>
264
+ To do so, you need to continue using the `prd-creator` skill to update the PRD and task list.
265
+
266
+ For example:
267
+
268
+ ```
269
+ I would like to expand the PRD / tasks with these tasks:
270
+
271
+ - there is a bug in X that should be fixed by doing Y
272
+ - create a new feature that implement Z
273
+
274
+ etc.
275
+ ```
276
+
277
+ It's fine to add multiple tasks at once.
278
+
260
279
  ## Skills
261
280
 
262
281
  Skills are reusable agent capabilities that provide specialized knowledge and workflows. The canonical source is `.agent/skills/`, which is symlinked to multiple agent tool directories for compatibility.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pageai/ralph-loop",
3
- "version": "1.17.0",
3
+ "version": "1.18.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },