spec-and-loop 1.0.2 → 1.0.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-and-loop",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "OpenSpec + Ralph Loop integration for iterative development with opencode",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -265,9 +265,9 @@ read_openspec_artifacts() {
265
265
  log_verbose "Read design.md"
266
266
  fi
267
267
 
268
- declare -g OPENSPEC_PROPOSAL="$proposal_content"
269
- declare -g OPENSPEC_SPECS="$specs_content"
270
- declare -g OPENSPEC_DESIGN="$design_content"
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
- declare -g TASKS=()
322
- declare -g TASK_IDS=()
323
- declare -g TASKS_MD5=""
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
- declare -g TASKS=()
332
- declare -g TASK_IDS=()
331
+ TASKS=()
332
+ TASK_IDS=()
333
333
 
334
334
  local line_number=0
335
335
  while IFS= read -r line; do