spec-and-loop 1.0.2 → 1.0.4
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/package.json +3 -2
- package/scripts/ralph-run.sh +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spec-and-loop",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "OpenSpec + Ralph Loop integration for iterative development with opencode",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"postinstall": "node scripts/setup.js"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@fission-ai/openspec": "latest"
|
|
13
|
+
"@fission-ai/openspec": "latest",
|
|
14
|
+
"@th0rgal/ralph-wiggum": "latest"
|
|
14
15
|
},
|
|
15
16
|
"keywords": [
|
|
16
17
|
"openspec",
|
package/scripts/ralph-run.sh
CHANGED
|
@@ -265,9 +265,9 @@ read_openspec_artifacts() {
|
|
|
265
265
|
log_verbose "Read design.md"
|
|
266
266
|
fi
|
|
267
267
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
268
|
+
OPENSPEC_PROPOSAL="$proposal_content"
|
|
269
|
+
OPENSPEC_SPECS="$specs_content"
|
|
270
|
+
OPENSPEC_DESIGN="$design_content"
|
|
271
271
|
}
|
|
272
272
|
|
|
273
273
|
generate_prd() {
|
|
@@ -318,9 +318,9 @@ parse_tasks() {
|
|
|
318
318
|
|
|
319
319
|
log_verbose "Parsing tasks from tasks.md..."
|
|
320
320
|
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
321
|
+
TASKS=()
|
|
322
|
+
TASK_IDS=()
|
|
323
|
+
TASKS_MD5=""
|
|
324
324
|
|
|
325
325
|
if [[ -f "$tasks_file" ]]; then
|
|
326
326
|
TASKS_MD5=$(md5sum "$tasks_file" | cut -d' ' -f1)
|
|
@@ -328,8 +328,8 @@ parse_tasks() {
|
|
|
328
328
|
|
|
329
329
|
log_verbose "Parsing tasks from tasks.md..."
|
|
330
330
|
|
|
331
|
-
|
|
332
|
-
|
|
331
|
+
TASKS=()
|
|
332
|
+
TASK_IDS=()
|
|
333
333
|
|
|
334
334
|
local line_number=0
|
|
335
335
|
while IFS= read -r line; do
|