forked from HKUDS/OpenSpace
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtool_layer.py
More file actions
1372 lines (1218 loc) · 63.4 KB
/
Copy pathtool_layer.py
File metadata and controls
1372 lines (1218 loc) · 63.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ import annotations
import asyncio
import traceback
import uuid
from dataclasses import dataclass, field
from pathlib import Path
from typing import Any, Dict, List, Optional
from openspace.agents import GroundingAgent
from openspace.llm import LLMClient
from openspace.grounding.core.grounding_client import GroundingClient
from openspace.config import get_config, load_config
from openspace.config.loader import get_agent_config
from openspace.recording import RecordingManager
from openspace.skill_engine import SkillRegistry, ExecutionAnalyzer, SkillStore
from openspace.skill_engine.evolver import SkillEvolver
from openspace.utils.logging import Logger
# Lightweight Viking helpers — zero heavy deps so unit tests can exercise
# identity resolution / opt-out logic / telemetry without importing the
# full OpenSpace agent stack.
from openspace.viking.config import (
VikingExecutionStats,
resolve_viking_identity as _resolve_viking_identity,
resolve_viking_push_enabled as _resolve_viking_push_enabled,
resolve_viking_min_score as _resolve_viking_min_score,
resolve_viking_scrub_pii as _resolve_viking_scrub_pii,
)
logger = Logger.get_logger(__name__)
@dataclass
class OpenSpaceConfig:
# LLM Configuration
llm_model: str = "openrouter/anthropic/claude-sonnet-4.5"
llm_enable_thinking: bool = False
llm_timeout: float = 120.0
llm_max_retries: int = 3
llm_rate_limit_delay: float = 0.0
llm_kwargs: Dict[str, Any] = field(default_factory=dict)
# Separate models for specific tasks (None = use llm_model)
tool_retrieval_model: Optional[str] = None # Model for tool retrieval LLM filter
visual_analysis_model: Optional[str] = None # Model for visual analysis
# Skill Engine Models — names map to class names (None = use llm_model)
skill_registry_model: Optional[str] = None # SkillRegistry: skill selection
execution_analyzer_model: Optional[str] = None # ExecutionAnalyzer: post-execution analysis
skill_evolver_model: Optional[str] = None # (future) SkillEvolver: skill evolution
# Grounding Configuration
grounding_config_path: Optional[str] = None
grounding_max_iterations: int = 20
grounding_system_prompt: Optional[str] = None
# Backend Configuration
backend_scope: Optional[List[str]] = None # None = All backends ["shell", "gui", "mcp", "web", "system"]
use_clawwork_productivity: bool = False # If True, add ClawWork productivity tools (search_web, create_file, etc.) for fair comparison with ClawWork; requires livebench installed.
# Workspace Configuration
workspace_dir: Optional[str] = None
# Recording Configuration
enable_recording: bool = True
recording_backends: Optional[List[str]] = None
recording_log_dir: str = "./logs/recordings"
enable_screenshot: bool = False
enable_video: bool = False
enable_conversation_log: bool = True # Save LLM conversations to conversations.jsonl
# Skill Evolution
evolution_max_concurrent: int = 3 # Max parallel evolutions per trigger
# OpenViking Integration (optional)
openviking_enabled: bool = True # Set False to fully disable
openviking_url: str = "" # Empty = auto-detect from OPENVIKING_URL env
openviking_api_key: str = "" # Empty = auto-detect from OPENVIKING_API_KEY env
openviking_namespace: str = "" # Optional tenant/team prefix (env: OPENVIKING_NAMESPACE)
openviking_user_id: str = "" # Optional per-user id (env: OPENVIKING_USER_ID)
openviking_auto_push_skills: bool = True # Push evolved SKILL.md to Viking as resources
openviking_min_score: float = 0.0 # Drop retrievals below this score (0.0–1.0)
openviking_scrub_pii: bool = True # Scrub secrets/PII before writing to Viking
openviking_mid_iter_tool: bool = True # Expose retrieve_memory tool to grounding agent
# Logging Configuration
log_level: str = "INFO"
log_to_file: bool = False
log_file_path: Optional[str] = None
def __post_init__(self):
"""Validate configuration"""
if not self.llm_model:
raise ValueError("llm_model is required")
logger.debug(f"OpenSpaceConfig initialized with model: {self.llm_model}")
class OpenSpace:
def __init__(self, config: Optional[OpenSpaceConfig] = None):
self.config = config or OpenSpaceConfig()
self._llm_client: Optional[LLMClient] = None
self._grounding_client: Optional[GroundingClient] = None
self._grounding_config = None # GroundingConfig reference for skill settings
self._grounding_agent: Optional[GroundingAgent] = None
self._recording_manager: Optional[RecordingManager] = None
self._skill_registry: Optional[SkillRegistry] = None
self._skill_store: Optional[SkillStore] = None
self._execution_analyzer: Optional[ExecutionAnalyzer] = None
self._skill_evolver: Optional[SkillEvolver] = None
self._execution_count: int = 0 # For periodic metric-based evolution
self._last_evolved_skills: List[Dict[str, Any]] = [] # Tracks skills evolved during last execute()
self._viking_client = None # type: Optional[Any] — OpenVikingClient when enabled
self._initialized = False
self._running = False
self._task_done = asyncio.Event()
self._task_done.set() # Initially not running, so "done"
logger.debug("OpenSpace instance created")
async def initialize(self) -> None:
if self._initialized:
logger.warning("OpenSpace already initialized")
return
logger.info("Initializing OpenSpace...")
try:
self._llm_client = LLMClient(
model=self.config.llm_model,
enable_thinking=self.config.llm_enable_thinking,
rate_limit_delay=self.config.llm_rate_limit_delay,
max_retries=self.config.llm_max_retries,
timeout=self.config.llm_timeout,
**self.config.llm_kwargs
)
logger.info(f"✓ LLM Client: {self.config.llm_model}")
# Load grounding config
# If custom config is provided, merge it with default configs
# load_config supports multiple files and deep merges them (later files override earlier ones)
if self.config.grounding_config_path:
from openspace.config.loader import CONFIG_DIR
from openspace.config.constants import CONFIG_GROUNDING, CONFIG_SECURITY
# Load default configs + custom config (custom values will override defaults)
grounding_config = load_config(
CONFIG_DIR / CONFIG_GROUNDING,
CONFIG_DIR / CONFIG_SECURITY,
self.config.grounding_config_path
)
logger.info(f"Merged custom grounding config: {self.config.grounding_config_path}")
else:
# Load default configs only
grounding_config = get_config()
# Optional: enable ClawWork productivity tools for fair benchmark comparison
if getattr(self.config, "use_clawwork_productivity", False):
shell_cfg = grounding_config.shell.model_copy(
update={
"use_clawwork_productivity": True,
"working_dir": self.config.workspace_dir or grounding_config.shell.working_dir,
}
)
grounding_config = grounding_config.model_copy(update={"shell": shell_cfg})
logger.info("ClawWork productivity tools enabled (shell.working_dir used as sandbox root)")
# Resolve backend_scope early so we can skip initializing
# providers that are not in scope (e.g. web when only shell is needed).
agent_config = get_agent_config("GroundingAgent")
_cli_max_iter = self.config.grounding_max_iterations
_default_max_iter = OpenSpaceConfig().grounding_max_iterations # dataclass default (20)
if agent_config:
cfg_max_iter = agent_config.get("max_iterations", _default_max_iter)
if _cli_max_iter != _default_max_iter:
max_iterations = _cli_max_iter
else:
max_iterations = cfg_max_iter
backend_scope = self.config.backend_scope or agent_config.get("backend_scope") or ["gui", "shell", "mcp", "web", "system"]
visual_analysis_timeout = agent_config.get("visual_analysis_timeout", 30.0)
self.config.grounding_max_iterations = max_iterations
logger.info(f"Loaded GroundingAgent config from config_agents.json (max_iterations={max_iterations}, visual_analysis_timeout={visual_analysis_timeout}s)")
else:
max_iterations = self.config.grounding_max_iterations
backend_scope = self.config.backend_scope or ["gui", "shell", "mcp", "web", "system"]
visual_analysis_timeout = 30.0
logger.warning(f"config_agents.json not found, using default config (max_iterations={max_iterations})")
# Filter enabled_backends in grounding config to only those in scope,
# so providers outside scope (e.g. web) are never registered/initialized.
if grounding_config.enabled_backends:
scope_set = set(backend_scope)
filtered = [
entry for entry in grounding_config.enabled_backends
if entry.get("name", "").lower() in scope_set
]
if len(filtered) != len(grounding_config.enabled_backends):
skipped = [
entry.get("name") for entry in grounding_config.enabled_backends
if entry.get("name", "").lower() not in scope_set
]
logger.info(f"Skipping backends not in scope: {skipped}")
grounding_config = grounding_config.model_copy(
update={"enabled_backends": filtered}
)
self._grounding_config = grounding_config
self._grounding_client = GroundingClient(config=grounding_config)
await self._grounding_client.initialize_all_providers()
backends = list(self._grounding_client.list_providers().keys())
logger.info(f"✓ Grounding Client: {len(backends)} backends")
logger.debug(f" Available backends: {[b.value for b in backends]}")
if self.config.enable_recording:
self._recording_manager = RecordingManager(
enabled=True,
task_id="",
log_dir=self.config.recording_log_dir,
backends=self.config.recording_backends,
enable_screenshot=self.config.enable_screenshot,
enable_video=self.config.enable_video,
enable_conversation_log=self.config.enable_conversation_log,
agent_name="OpenSpace",
)
# Inject recording_manager to grounding_client for GUI intermediate steps
self._grounding_client.recording_manager = self._recording_manager
self._recording_manager.register_to_llm(self._llm_client)
logger.info(f"✓ Recording enabled: {len(self._recording_manager.backends or [])} backends")
# Create separate LLM client for tool retrieval if configured
# Inherits llm_kwargs (api_key, api_base, etc.) so credentials
# from the host agent are shared across all internal LLM clients.
tool_retrieval_llm = None
if self.config.tool_retrieval_model:
tool_retrieval_llm = LLMClient(
model=self.config.tool_retrieval_model,
timeout=self.config.llm_timeout,
max_retries=self.config.llm_max_retries,
**self.config.llm_kwargs,
)
logger.info(f"✓ Tool retrieval LLM: {self.config.tool_retrieval_model}")
self._grounding_agent = GroundingAgent(
name="OpenSpace-GroundingAgent",
backend_scope=backend_scope,
llm_client=self._llm_client,
grounding_client=self._grounding_client,
recording_manager=self._recording_manager,
system_prompt=self.config.grounding_system_prompt,
max_iterations=max_iterations,
visual_analysis_timeout=visual_analysis_timeout,
tool_retrieval_llm=tool_retrieval_llm,
visual_analysis_model=self.config.visual_analysis_model,
)
logger.info(f"✓ GroundingAgent: {', '.join(backend_scope)}")
# Initialize SkillRegistry (settings from config_grounding.json → skills)
if self._grounding_config and self._grounding_config.skills.enabled:
self._skill_registry = self._init_skill_registry()
if self._skill_registry:
skills = self._skill_registry.list_skills()
logger.info(f"✓ Skills: {len(skills)} discovered")
self._grounding_agent.set_skill_registry(self._skill_registry)
# Initialize ExecutionAnalyzer (requires recording + skills)
if self.config.enable_recording and self._skill_registry:
try:
skill_store = SkillStore()
self._skill_store = skill_store # Expose for MCP server reuse
# Sync filesystem skills → DB (creates initial records
# for newly discovered skills so that analysis stats
# can be recorded against them from the very first run).
await skill_store.sync_from_registry(
self._skill_registry.list_skills()
)
# Bridge: pass quality_manager so analysis can feed back
# LLM-identified tool issues to the tool quality system.
quality_mgr = (
self._grounding_client.quality_manager
if self._grounding_client else None
)
self._execution_analyzer = ExecutionAnalyzer(
store=skill_store,
llm_client=self._llm_client,
model=self.config.execution_analyzer_model,
skill_registry=self._skill_registry,
quality_manager=quality_mgr,
)
logger.info("✓ Execution analysis enabled")
# Share store with GroundingAgent so retrieve_skill
# can access quality metrics for LLM selection.
self._grounding_agent._skill_store = skill_store
# Initialize SkillEvolver (reuses the same store & registry)
# available_tools will be updated before each evolution cycle
self._skill_evolver = SkillEvolver(
store=skill_store,
registry=self._skill_registry,
llm_client=self._llm_client,
model=self.config.skill_evolver_model,
max_concurrent=self.config.evolution_max_concurrent,
)
logger.info(
f"✓ Skill evolution enabled "
f"(concurrent={self.config.evolution_max_concurrent})"
)
except Exception as e:
logger.warning(f"Execution analyzer init failed (non-fatal): {e}")
# Initialize OpenViking client (optional — graceful if unavailable)
if self.config.openviking_enabled:
try:
from openspace.viking import OpenVikingClient
ns_eff, uid_eff = _resolve_viking_identity(
namespace_override=self.config.openviking_namespace,
user_id_override=self.config.openviking_user_id,
)
self._viking_client = OpenVikingClient(
base_url=self.config.openviking_url or None,
api_key=self.config.openviking_api_key or None,
namespace=ns_eff or None,
user_id=uid_eff or None,
)
if await self._viking_client.is_available():
id_info_parts = []
if self._viking_client.namespace:
id_info_parts.append(
f"namespace={self._viking_client.namespace}"
)
if self._viking_client.user_id:
id_info_parts.append(
f"user_id={self._viking_client.user_id}"
)
id_info = f" [{', '.join(id_info_parts)}]" if id_info_parts else ""
logger.info(f"✓ OpenViking integration active{id_info}")
else:
logger.info(
"OpenViking not available — running without cross-session memory"
)
# Share the client with the execution analyzer so
# post-execution analysis prompts can be enriched
# without opening a second HTTP connection.
if self._execution_analyzer is not None:
self._execution_analyzer._viking_client = self._viking_client
# Share with the grounding agent so it can expose
# retrieve_memory as a mid-iteration tool.
if (
self._grounding_agent is not None
and getattr(self.config, "openviking_mid_iter_tool", True)
):
self._grounding_agent._viking_client = self._viking_client
self._grounding_agent._viking_min_score = (
_resolve_viking_min_score(
self.config.openviking_min_score
)
)
except Exception as e:
logger.debug(f"OpenViking init skipped: {e}")
self._viking_client = None
self._initialized = True
logger.info("="*60)
logger.info("OpenSpace ready to use!")
logger.info("="*60)
except Exception as e:
logger.error(f"Failed to initialize OpenSpace: {e}")
await self.cleanup()
raise
async def execute(
self,
task: str,
context: Optional[Dict[str, Any]] = None,
workspace_dir: Optional[str] = None,
max_iterations: Optional[int] = None,
task_id: Optional[str] = None,
capture_skill_dir: Optional[str] = None,
) -> Dict[str, Any]:
"""
Execute a task with OpenSpace.
Args:
task: Task instruction
context: Additional context. Communication callers may pass:
- conversation_history: prior user/assistant turns
- channel_context: platform/chat metadata and attachments
- session_key: stable external session identifier
workspace_dir: Working directory
max_iterations: Max iterations override
task_id: External task ID for recording/logging. If None, generates a random one.
This allows external callers (e.g., OSWorld) to specify their own task ID
so recordings can be easily matched with benchmark results.
capture_skill_dir: Preferred directory for CAPTURED skills. In multi-host-agent
scenarios, this should be the calling host agent's skill directory so
newly captured skills are written to the correct location.
"""
if not self._initialized:
raise RuntimeError(
"OpenSpace not initialized. "
"Call await tool_layer.initialize() first or use async with."
)
_TASK_WAIT_TIMEOUT = 660 # slightly longer than MCP tool timeout (600s)
if self._running:
logger.info(
"OpenSpace is busy — waiting up to %ds for the current task to finish...",
_TASK_WAIT_TIMEOUT,
)
try:
await asyncio.wait_for(
self._task_done.wait(), timeout=_TASK_WAIT_TIMEOUT
)
except asyncio.TimeoutError:
raise RuntimeError(
f"OpenSpace is still running after waiting {_TASK_WAIT_TIMEOUT}s. "
"Please try again later."
)
logger.info("="*60)
logger.info(f"Task: {task[:100]}...")
logger.info("="*60)
self._running = True
self._task_done.clear()
self._last_evolved_skills = [] # Reset per-execution tracking
self._capture_skill_dir = capture_skill_dir
# Per-execution Viking telemetry (populated throughout the flow)
self._viking_stats = VikingExecutionStats(
enabled=bool(self.config.openviking_enabled and self._viking_client),
)
start_time = asyncio.get_event_loop().time()
# Use external task_id if provided, otherwise generate one
if task_id is None:
task_id = f"task_{uuid.uuid4().hex[:12]}"
logger.info(f"Task ID: {task_id}")
# Populated inside the try block; used by finally for analysis
result: Dict[str, Any] = {}
execution_time = 0.0
cancelled_exc: Optional[asyncio.CancelledError] = None
try:
execution_context = dict(context) if context else {}
execution_context["task_id"] = task_id
execution_context["instruction"] = task
if max_iterations is not None:
execution_context["max_iterations"] = max_iterations
if self._recording_manager:
if self._recording_manager.recording_status:
await self._recording_manager.stop()
logger.debug("Stopped previous recording session")
self._recording_manager.task_id = task_id
await self._recording_manager.start()
await self._recording_manager.add_metadata("instruction", task)
logger.info(f"Recording started: {task_id}")
if workspace_dir:
execution_context["workspace_dir"] = workspace_dir
logger.info(f"Workspace: {workspace_dir}")
elif self.config.workspace_dir:
execution_context["workspace_dir"] = self.config.workspace_dir
logger.info(f"Workspace: {self.config.workspace_dir}")
elif self._recording_manager and self._recording_manager.trajectory_dir:
execution_context["workspace_dir"] = self._recording_manager.trajectory_dir
logger.info(f"Workspace: {execution_context['workspace_dir']}")
else:
import tempfile
from pathlib import Path
workspace = Path(tempfile.gettempdir()) / "openspace_workspace" / task_id
workspace.mkdir(parents=True, exist_ok=True)
execution_context["workspace_dir"] = str(workspace)
logger.info(f"Workspace: {execution_context['workspace_dir']}")
# Update Shell session's default_working_dir so that
# productivity tools (create_file, create_video) write to the
# correct task workspace instead of the global CWD.
resolved_ws = execution_context["workspace_dir"]
try:
from openspace.grounding.core.types import BackendType as _BT
shell_prov = self._grounding_client._registry.get(_BT.SHELL)
for sess in shell_prov._sessions.values():
sess.default_working_dir = resolved_ws
except Exception:
pass
# Resolve iteration budget: use the larger of the caller's value
# and the configured value so external callers can't accidentally
# starve the agent with a too-low budget.
configured_max = self.config.grounding_max_iterations
if max_iterations:
max_iterations = max(max_iterations, configured_max)
else:
max_iterations = configured_max
# OpenViking enrichment runs BEFORE skill selection so the
# selector LLM can benefit from user preferences and past
# cases. Enrichment is history-aware: for multi-turn
# communication adapters (WhatsApp/Feishu), the composed
# query pulls context from prior user turns.
viking_enrichment: Dict[str, Any] = {}
if self._viking_client and await self._viking_client.is_available():
self._viking_stats.available = True
try:
from openspace.viking.enrichment import VikingEnrichment
enricher = VikingEnrichment(self._viking_client)
min_score = _resolve_viking_min_score(
self.config.openviking_min_score
)
viking_enrichment = await enricher.enrich_pre_execution(
task,
conversation_history=execution_context.get(
"conversation_history"
),
score_threshold=min_score,
)
viking_context = viking_enrichment.get("context_injection", "")
selector_hints_text = viking_enrichment.get("selector_hints", "")
# Record telemetry before any short-circuit below
self._viking_stats.query = viking_enrichment.get("query", "")
self._viking_stats.enrichment_chars = len(viking_context)
self._viking_stats.selector_hints_chars = len(selector_hints_text)
self._viking_stats.hit_counts = {
"tool_hints": len(viking_enrichment.get("tool_hints", [])),
"pattern_hints": len(viking_enrichment.get("pattern_hints", [])),
"skill_hints": len(viking_enrichment.get("skill_hints", [])),
"user_preferences": len(
viking_enrichment.get("user_preferences", [])
),
"case_hints": len(viking_enrichment.get("case_hints", [])),
}
if viking_context and self._grounding_agent:
self._grounding_agent._viking_context = viking_context
logger.info(
f"OpenViking enrichment: {len(viking_context)} chars "
f"injected, hits={self._viking_stats.hit_counts}, "
f"query={viking_enrichment.get('query','')[:80]!r}"
)
except Exception as e:
logger.debug(f"OpenViking enrichment skipped: {e}")
viking_enrichment = {}
# Two-phase execution: Skill-First → Tool-Fallback
has_skills = False
# Phase 1: Skill-guided execution (selector sees Viking hints)
if self._skill_registry:
has_skills = await self._select_and_inject_skills(
task,
cross_session_hints=viking_enrichment.get("selector_hints", ""),
)
if has_skills:
logger.info(
f"[Phase 1 — Skill] Executing with skill guidance "
f"(max {max_iterations} iterations)..."
)
execution_context_p1 = {**execution_context}
execution_context_p1["max_iterations"] = max_iterations
# Snapshot workspace files before skill-guided execution
workspace_path = execution_context.get("workspace_dir", "")
pre_skill_files: set = set()
if workspace_path:
try:
from pathlib import Path as _P
pre_skill_files = {
f.name for f in _P(workspace_path).iterdir()
} if _P(workspace_path).exists() else set()
except Exception:
pass
# Capture skill IDs before they get cleared
injected_skill_ids = list(self._grounding_agent._active_skill_ids)
skill_phase_result = await self._grounding_agent.process(execution_context_p1)
skill_status = skill_phase_result.get("status", "unknown")
skill_iterations = skill_phase_result.get("iterations", 0)
# Clear skill context regardless of outcome
self._grounding_agent.clear_skill_context()
if skill_status == "success":
result = skill_phase_result
result["active_skills"] = injected_skill_ids
logger.info(
f"[Phase 1 — Skill] Completed successfully "
f"({skill_iterations} iterations)"
)
else:
# Skill failed — fall back to pure tool execution.
# Fallback gets the full budget because we clean the
# workspace below — it starts completely from scratch
# with no skill context and no leftover artifacts.
logger.warning(
f"[Phase 1 — Skill] {skill_status} after {skill_iterations} iterations, "
f"falling back to tool-only execution "
f"(budget: {max_iterations})"
)
# Clean up workspace artifacts created by the failed
# skill-guided phase so the fallback starts fresh.
if workspace_path:
try:
import shutil
from pathlib import Path as _P
ws = _P(workspace_path)
removed = 0
if ws.exists():
for f in list(ws.iterdir()):
if f.name not in pre_skill_files:
if f.is_dir():
shutil.rmtree(f, ignore_errors=True)
else:
f.unlink(missing_ok=True)
removed += 1
if removed:
logger.info(
f"[Phase 2 — Fallback] Cleaned {removed} artifact(s) "
f"from failed skill-guided phase"
)
except Exception as e:
logger.debug(f"Workspace cleanup failed: {e}")
execution_context_p2 = {**execution_context}
execution_context_p2["max_iterations"] = max_iterations
result = await self._grounding_agent.process(execution_context_p2)
result["active_skills"] = injected_skill_ids
logger.info(
f"[Phase 2 — Fallback] {result.get('status', 'unknown')} "
f"({result.get('iterations', 0)} iterations)"
)
else:
# No skills matched — standard tool-only execution
logger.info(
f"Executing with GroundingAgent "
f"(max {max_iterations} iterations, no skills)..."
)
execution_context["max_iterations"] = max_iterations
result = await self._grounding_agent.process(execution_context)
execution_time = asyncio.get_event_loop().time() - start_time
status = result.get('status', 'unknown')
iterations = result.get('iterations', 0)
tool_count = len(result.get('tool_executions', []))
logger.info("="*60)
if status == "success":
logger.info(
f"Task completed successfully! "
f"({iterations} iterations, {tool_count} tool calls, {execution_time:.2f}s)"
)
elif status == "incomplete":
logger.warning(
f"Task incomplete after {iterations} iterations. "
f"Consider increasing max_iterations."
)
else:
logger.error(f"Task failed: {result.get('error', 'Unknown error')}")
logger.info("="*60)
except asyncio.CancelledError as exc:
execution_time = asyncio.get_event_loop().time() - start_time
logger.warning("Task execution cancelled")
result = {
"status": "cancelled",
"error": "Task execution cancelled",
"response": "",
"execution_time": execution_time,
"task_id": task_id,
"iterations": 0,
"tool_executions": [],
}
cancelled_exc = exc
except Exception as e:
execution_time = asyncio.get_event_loop().time() - start_time
tb = traceback.format_exc(limit=10)
logger.error(f"Task execution failed: {e}", exc_info=True)
result = {
"status": "error",
"error": str(e),
"traceback": tb,
"response": f"Task execution error: {str(e)}",
"execution_time": execution_time,
"task_id": task_id,
"iterations": 0,
"tool_executions": [],
}
finally:
recording_dir = None
if self._recording_manager and self._recording_manager.recording_status:
recording_dir = self._recording_manager.trajectory_dir
# Persist execution outcome to metadata.json before finalizing
try:
exec_time = asyncio.get_event_loop().time() - start_time
await self._recording_manager.save_execution_outcome(
status=result.get("status", "unknown"),
iterations=result.get("iterations", 0),
execution_time=exec_time,
)
except Exception:
pass # best-effort; don't block recording stop
try:
await self._recording_manager.stop()
logger.debug(f"Recording stopped: {task_id}")
except Exception as e:
logger.warning(f"Failed to stop recording: {e}")
if cancelled_exc is None:
# Run execution analysis + evolution BEFORE building the return
# value, so evolved_skills is populated.
await self._maybe_analyze_execution(
task_id, recording_dir, result
)
# Trigger quality evolution periodically
await self._maybe_evolve_quality()
final_result = {
**result,
"task_id": task_id,
"execution_time": execution_time,
"skills_used": result.get("active_skills", []),
"evolved_skills": list(self._last_evolved_skills),
"viking": self._viking_stats.to_dict(),
}
# One-line telemetry summary so logs / dashboards can
# measure Viking's real-world impact without grepping.
if self._viking_stats.enabled:
hits_total = sum(self._viking_stats.hit_counts.values())
logger.info(
f"Viking telemetry: available={self._viking_stats.available} "
f"hits={hits_total} "
f"enrich_chars={self._viking_stats.enrichment_chars} "
f"feedback={self._viking_stats.feedback_status} "
f"pushed={self._viking_stats.pushed_skills}"
)
# Clear Viking context so it does not leak into the next task
if self._grounding_agent is not None:
try:
self._grounding_agent._viking_context = ""
except Exception:
pass
self._running = False
self._task_done.set()
if cancelled_exc is not None:
raise cancelled_exc
return final_result
# Skills helpers
def _init_skill_registry(self) -> Optional[SkillRegistry]:
"""Build and populate the SkillRegistry from configured directories.
Discovery order (earlier wins on name collision):
1. ``OPENSPACE_HOST_SKILL_DIRS`` env — host agent skill directories
2. ``config_grounding.json → skills.skill_dirs`` — user-specified
3. ``openspace/skills/`` — built-in skills (always present)
``OPENSPACE_HOST_SKILL_DIRS`` is also handled by ``mcp_server.py``
for the MCP transport path, but we process it here too so that
standalone mode (``python -m openspace``) gets the same skills
discovered and synced to the DB for quality tracking / evolution.
"""
skill_paths: List[Path] = []
skill_cfg = self._grounding_config.skills if self._grounding_config else None
# 1. Host agent skill directories from env (standalone mode support)
import os
host_dirs_raw = os.environ.get("OPENSPACE_HOST_SKILL_DIRS", "")
if host_dirs_raw:
for d in host_dirs_raw.split(","):
d = d.strip()
if not d:
continue
p = Path(d)
if p.exists():
skill_paths.append(p)
logger.info(f"Host skill dir (from env): {p}")
else:
logger.warning(f"Host skill dir does not exist: {d}")
# 2. User-specified skill directories from config_grounding.json
if skill_cfg and skill_cfg.skill_dirs:
for d in skill_cfg.skill_dirs:
p = Path(d)
if p in skill_paths:
continue # Already added via OPENSPACE_HOST_SKILL_DIRS
if p.exists():
skill_paths.append(p)
else:
logger.warning(f"Configured skill dir does not exist: {d}")
# 3. Built-in skills (openspace/skills/)
builtin_skills = Path(__file__).resolve().parent / "skills"
if builtin_skills.exists():
skill_paths.append(builtin_skills)
if not skill_paths:
logger.debug("No skill directories found, skills disabled")
return None
registry = SkillRegistry(skill_dirs=skill_paths)
registry.discover()
return registry
async def _select_and_inject_skills(
self,
task: str,
cross_session_hints: str = "",
) -> bool:
"""Select skills for task via LLM, inject into GroundingAgent.
When the registry has many skills, a BM25 + embedding pre-filter
narrows the candidate set before LLM selection (see
``SkillRegistry.select_skills_with_llm``).
Only selected skills are injected (full SKILL.md content).
Returns True if at least one active skill was injected.
"""
if not self._skill_registry or not self._grounding_agent:
return False
selection_record = None
# LLM-based skill selection (preferred)
skill_cfg = self._grounding_config.skills if self._grounding_config else None
max_select = skill_cfg.max_select if skill_cfg else 2
skill_llm = self._get_skill_selection_llm()
# Fetch quality metrics so the selector can filter/annotate
skill_quality: Optional[Dict[str, Dict[str, Any]]] = None
if self._skill_store:
try:
rows = self._skill_store.get_summary(active_only=True)
skill_quality = {
r["skill_id"]: {
"total_selections": r.get("total_selections", 0),
"total_applied": r.get("total_applied", 0),
"total_completions": r.get("total_completions", 0),
"total_fallbacks": r.get("total_fallbacks", 0),
}
for r in rows
}
except Exception as e:
logger.debug(f"Could not load skill quality metrics: {e}")
if skill_llm:
selected, selection_record = await self._skill_registry.select_skills_with_llm(
task,
llm_client=skill_llm,
max_skills=max_select,
skill_quality=skill_quality,
cross_session_hints=cross_session_hints or None,
)
else:
# No LLM client — skip skill selection entirely
logger.info("No LLM client available for skill selection — proceeding without skills")
selected = []
selection_record = {
"method": "no_llm",
"task": task[:500],
"available_skills": [s.skill_id for s in self._skill_registry.list_skills()],
"selected": [],
}
# Record skill selection to metadata.json
if self._recording_manager and selection_record:
# Add model info to the record
selection_record["model"] = skill_llm.model if skill_llm else "keyword_only"
await RecordingManager.record_skill_selection(selection_record)
if not selected:
self._grounding_agent.clear_skill_context()
return False
# Inject active skills (full SKILL.md content, backend-aware)
agent_backends = self._grounding_agent.backend_scope if self._grounding_agent else None
context_text = self._skill_registry.build_context_injection(selected, backends=agent_backends)
skill_ids = [s.skill_id for s in selected]
self._grounding_agent.set_skill_context(context_text, skill_ids)
logger.info(f"Injected {len(selected)} active skill(s): {skill_ids}")
return True
def _get_skill_selection_llm(self) -> Optional[LLMClient]:
"""Get the LLM client to use for skill selection.
Priority: config.skill_registry_model > tool_retrieval_model > llm_model.
"""
# 1. Dedicated skill selection model (OpenSpaceConfig.skill_registry_model)
if self.config.skill_registry_model:
return LLMClient(
model=self.config.skill_registry_model,
timeout=30.0, # skill selection should be fast
max_retries=2,
**self.config.llm_kwargs,
)
# 2. Tool retrieval model
if hasattr(self._grounding_agent, '_tool_retrieval_llm') and self._grounding_agent._tool_retrieval_llm:
return self._grounding_agent._tool_retrieval_llm
# 3. Main LLM client
return self._llm_client
async def _maybe_analyze_execution(
self,
task_id: str,
recording_dir: Optional[str],
execution_result: Dict[str, Any],
) -> None:
"""Run post-execution analysis if enabled.
Trigger 1: if the analysis produces evolution suggestions, the
SkillEvolver processes them immediately (FIX / DERIVED / CAPTURED).
Evolved skills are recorded in ``_last_evolved_skills`` so the
caller (MCP ``execute_task``) can include them in the response.
"""
if not self._execution_analyzer or not recording_dir:
return
try:
# Pass the agent's tools so the analyzer can reuse them
# for error reproduction / verification when needed.
agent_tools = getattr(
self._grounding_agent, "_last_tools", []
) if self._grounding_agent else []
analysis = await self._execution_analyzer.analyze_execution(
task_id=task_id,
recording_dir=recording_dir,
execution_result=execution_result,
available_tools=agent_tools,
)
# Capture Viking telemetry from the analyzer pass
if hasattr(self, "_viking_stats") and self._viking_stats is not None:
chars = getattr(
self._execution_analyzer, "_last_viking_context_chars", 0
)
self._viking_stats.analysis_context_used = chars > 0
if not analysis:
return
# Trigger 1: post-analysis evolution
if analysis.candidate_for_evolution and self._skill_evolver:
self._skill_evolver.set_available_tools(agent_tools)
evo_summary = ", ".join(
f"{s.evolution_type.value}({'+'.join(s.target_skill_ids) or 'new'})"
for s in analysis.evolution_suggestions
)
logger.info(f"[Skill Evolution] Suggestions: {evo_summary}")
capture_dir = None
if getattr(self, "_capture_skill_dir", None):
from pathlib import Path as _P
_cd = _P(self._capture_skill_dir)
if _cd.is_dir():
capture_dir = _cd
evolved_records = await self._skill_evolver.process_analysis(
analysis, capture_dir=capture_dir,
)
# Track evolved skills for the caller
for rec in evolved_records:
self._last_evolved_skills.append({
"skill_id": rec.skill_id,
"name": rec.name,
"description": rec.description,
"path": str(rec.path) if rec.path else "",
"origin": rec.lineage.origin.value,
"generation": rec.lineage.generation,
"parent_skill_ids": rec.lineage.parent_skill_ids,
"change_summary": rec.lineage.change_summary,
})
# Feedback evolution results to OpenViking (rich session + optional
# structured skill push for cross-agent discoverability).
if evolved_records and self._viking_client:
self._viking_stats.feedback_status = "attempted"
try:
from openspace.viking.enrichment import VikingEnrichment
enricher = VikingEnrichment(self._viking_client)