nubos-pilot 0.6.3 → 0.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nubos-pilot",
3
- "version": "0.6.3",
3
+ "version": "0.7.0",
4
4
  "description": "AI-driven planning and execution tool for code projects",
5
5
  "homepage": "https://github.com/Nubos-AI/nubos-pilot",
6
6
  "repository": {
@@ -106,7 +106,7 @@ for WAVE_INDEX in 0 1 2 ...; do
106
106
  if [[ "$TASK_JSON" == @file:* ]]; then TASK_JSON=$(cat "${TASK_JSON#@file:}"); fi
107
107
 
108
108
  EXECUTOR_START=$(node .nubos-pilot/bin/np-tools.cjs metrics start-timestamp)
109
- EXECUTOR_MODEL=$(node .nubos-pilot/bin/np-tools.cjs resolve-model executor --profile frontier)
109
+ EXECUTOR_MODEL=$(node .nubos-pilot/bin/np-tools.cjs resolve-model np-executor --profile frontier)
110
110
 
111
111
  # Spawn agents/np-executor.md (tier: sonnet, model resolved as $EXECUTOR_MODEL)
112
112
  # with a <files_to_read> block containing: the task plan file, the slice
@@ -215,7 +215,7 @@ for ITER in 1 2; do
215
215
 
216
216
  # --- Spawn planner ---
217
217
  PLANNER_START=$(node .nubos-pilot/bin/np-tools.cjs metrics start-timestamp)
218
- PLANNER_MODEL=$(node .nubos-pilot/bin/np-tools.cjs resolve-model planner --profile frontier)
218
+ PLANNER_MODEL=$(node .nubos-pilot/bin/np-tools.cjs resolve-model np-planner --profile frontier)
219
219
  # Spawn agent=np-planner tier=opus model=$PLANNER_MODEL mode=$MODE milestone=$PHASE
220
220
  # milestone_dir=$milestone_dir goal=$goal requirements=$requirements
221
221
  # prior_findings=$LAST_FINDINGS agent_skills=$AGENT_SKILLS_PLANNER
@@ -229,7 +229,7 @@ for ITER in 1 2; do
229
229
 
230
230
  # --- Spawn plan-checker ---
231
231
  CHECKER_START=$(node .nubos-pilot/bin/np-tools.cjs metrics start-timestamp)
232
- CHECKER_MODEL=$(node .nubos-pilot/bin/np-tools.cjs resolve-model plan-checker --profile frontier)
232
+ CHECKER_MODEL=$(node .nubos-pilot/bin/np-tools.cjs resolve-model np-plan-checker --profile frontier)
233
233
  # Spawn agent=np-plan-checker tier=opus model=$CHECKER_MODEL milestone=$PHASE
234
234
  # milestone_dir=$milestone_dir agent_skills=$AGENT_SKILLS_CHECKER
235
235
  # Checker writes YAML verdict; orchestrator converts to JSON.
@@ -209,7 +209,7 @@ omit the `model:` parameter at spawn (Phase 8 D-22 inherit-pattern).
209
209
 
210
210
  ```bash
211
211
  RESEARCHER_START=$(node .nubos-pilot/bin/np-tools.cjs metrics start-timestamp)
212
- RESEARCHER_MODEL=$(node .nubos-pilot/bin/np-tools.cjs resolve-model researcher --profile balanced)
212
+ RESEARCHER_MODEL=$(node .nubos-pilot/bin/np-tools.cjs resolve-model np-researcher --profile balanced)
213
213
  ```
214
214
 
215
215
  ```text