borisxdave 0.3.2__tar.gz → 0.3.4__tar.gz
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.
- {borisxdave-0.3.2/borisxdave.egg-info → borisxdave-0.3.4}/PKG-INFO +4 -2
- {borisxdave-0.3.2 → borisxdave-0.3.4}/boris.py +17 -3
- {borisxdave-0.3.2 → borisxdave-0.3.4/borisxdave.egg-info}/PKG-INFO +4 -2
- {borisxdave-0.3.2 → borisxdave-0.3.4}/setup.py +1 -1
- {borisxdave-0.3.2 → borisxdave-0.3.4}/MANIFEST.in +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/boris_prompt.md +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/boris_prompt_data.py +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/borisxdave.egg-info/SOURCES.txt +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/borisxdave.egg-info/dependency_links.txt +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/borisxdave.egg-info/entry_points.txt +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/borisxdave.egg-info/top_level.txt +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/config.py +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/engine.py +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/file_lock.py +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/git_manager.py +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/planner.py +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/prompts.py +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/requirements.txt +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/setup.cfg +0 -0
- {borisxdave-0.3.2 → borisxdave-0.3.4}/state.py +0 -0
|
@@ -907,15 +907,29 @@ def main():
|
|
|
907
907
|
print("[Boris] Error: No saved state found. Cannot resume.", flush=True)
|
|
908
908
|
sys.exit(1)
|
|
909
909
|
plan = st.plan
|
|
910
|
-
|
|
910
|
+
|
|
911
|
+
# Reset skipped milestones to pending so they get retried
|
|
912
|
+
retried = []
|
|
913
|
+
for m in plan.milestones:
|
|
914
|
+
if m.status == "skipped":
|
|
915
|
+
m.status = "pending"
|
|
916
|
+
retried.append(m.id)
|
|
917
|
+
if retried:
|
|
918
|
+
print(f"[Boris] Retrying previously skipped milestones: {', '.join(retried)}", flush=True)
|
|
919
|
+
logger.info("Reset skipped milestones to pending: %s", retried)
|
|
920
|
+
|
|
921
|
+
# Start from 0 so we scan all milestones (completed ones are skipped automatically)
|
|
922
|
+
start_index = 0
|
|
923
|
+
st.current_milestone_index = 0
|
|
924
|
+
state_module.save(st)
|
|
911
925
|
|
|
912
926
|
# If already in UI testing phase, skip straight to UI loop
|
|
913
927
|
if st.phase == "ui_testing":
|
|
914
928
|
print(f"[Boris] Resuming UI Testing phase...", flush=True)
|
|
915
929
|
logger.info("Resuming UI testing phase")
|
|
916
930
|
else:
|
|
917
|
-
print(f"[Boris] Resuming
|
|
918
|
-
logger.info("Resuming
|
|
931
|
+
print(f"[Boris] Resuming - {len(retried)} skipped milestone(s) queued for retry...", flush=True)
|
|
932
|
+
logger.info("Resuming with %d milestones to retry", len(retried))
|
|
919
933
|
elif args.exec_only:
|
|
920
934
|
# Exec-only mode - load an existing plan file and execute it
|
|
921
935
|
plan_file = os.path.abspath(args.exec_only)
|
|
@@ -2,7 +2,7 @@ from setuptools import setup
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="borisxdave",
|
|
5
|
-
version="0.3.
|
|
5
|
+
version="0.3.4",
|
|
6
6
|
description="Boris - Autonomous Project Orchestrator",
|
|
7
7
|
py_modules=["boris", "engine", "git_manager", "prompts", "state", "planner", "config", "file_lock", "boris_prompt_data"],
|
|
8
8
|
python_requires=">=3.8",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|