Spaces:
Sleeping
Sleeping
File size: 10,346 Bytes
116524e | 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 | #!/usr/bin/env python3
"""Learn from OpenClaw session transcripts.
Reads OpenClaw session JSONL files, feeds them through the ACE learning
pipeline (TraceAnalyser), and writes the updated skillbook as JSON and
markdown to the output directory.
Designed to live inside an OpenClaw skills directory::
~/.openclaw/workspace/skills/kayba-ace/
learn_from_traces.py ← this script
SKILL.md
ace_skillbook.json ← generated
ace_skillbook.md ← generated
All paths are derived from the script's location. OPENCLAW_HOME is
inferred as three directories up (workspace/skills/<name>/ → .openclaw/).
"""
import argparse
import os
import sys
from pathlib import Path
# ---------------------------------------------------------------------------
# Path setup — derive everything from the script's location
# ---------------------------------------------------------------------------
SCRIPT_DIR = Path(__file__).resolve().parent
# Expected layout: OPENCLAW_HOME/workspace/skills/<name>/script.py
# Override with OPENCLAW_HOME env var if the script lives elsewhere.
OPENCLAW_HOME = Path(os.getenv("OPENCLAW_HOME") or SCRIPT_DIR.parents[2]).expanduser()
# Ensure ace is importable (dev: repo root; prod: pip install)
try:
import ace # noqa: F401
except ImportError:
# Fallback for running from the repo checkout
_repo_root = Path(__file__).resolve().parents[2]
if (_repo_root / "ace").is_dir():
sys.path.insert(0, str(_repo_root))
from dotenv import load_dotenv
load_dotenv(OPENCLAW_HOME / ".env")
load_dotenv(Path.home() / ".env")
from ace import (
LiteLLMClient,
OpikStep,
Reflector,
Skillbook,
SkillManager,
TraceAnalyser,
register_opik_litellm_callback,
)
from ace.core.context import ACEStepContext
from ace.steps.load_traces import LoadTracesStep
from ace.integrations.openclaw import OpenClawToTraceStep
from ace.steps.export_markdown import ExportSkillbookMarkdownStep
# ---------------------------------------------------------------------------
# Configuration
# ---------------------------------------------------------------------------
MODEL = os.getenv("ACE_MODEL", "bedrock/us.anthropic.claude-sonnet-4-20250514-v1:0")
# ---------------------------------------------------------------------------
# Processed-session tracking (US3: FR-007, FR-008)
# ---------------------------------------------------------------------------
def load_processed(path: Path) -> set[str]:
"""Load the set of already-processed session filenames."""
if path.exists():
return set(path.read_text().splitlines())
return set()
def save_processed(path: Path, processed: set[str]) -> None:
"""Persist the set of processed session filenames."""
path.parent.mkdir(parents=True, exist_ok=True)
path.write_text("\n".join(sorted(processed)) + "\n")
# ---------------------------------------------------------------------------
# Session parsing via pipeline steps
# ---------------------------------------------------------------------------
_load_step = LoadTracesStep()
_convert_step = OpenClawToTraceStep()
def parse_session(path: Path) -> object | None:
"""Parse a single session JSONL file using pipeline steps.
Returns the trace object (raw events for now, structured dict later)
or None if the file is empty/unparseable.
"""
ctx = ACEStepContext(sample=str(path))
ctx = _load_step(ctx)
# Skip empty sessions
if not ctx.trace:
return None
ctx = _convert_step(ctx)
return ctx.trace
# ---------------------------------------------------------------------------
# Main
# ---------------------------------------------------------------------------
def section(name: str) -> None:
print(f"\n{'=' * 60}\n {name}\n{'=' * 60}")
def main() -> None:
parser = argparse.ArgumentParser(
description="Learn from OpenClaw session transcripts."
)
parser.add_argument(
"--dry-run",
action="store_true",
help="Parse sessions but skip learning and sync.",
)
parser.add_argument(
"--reprocess",
action="store_true",
help="Ignore the processed log and reprocess all sessions.",
)
parser.add_argument(
"--agent",
default=os.getenv("OPENCLAW_AGENT_ID", "main"),
help="OpenClaw agent ID for session discovery (default: $OPENCLAW_AGENT_ID or 'main').",
)
parser.add_argument(
"--output",
type=Path,
default=SCRIPT_DIR,
help="Output directory for skillbook files (default: script directory).",
)
parser.add_argument(
"--opik",
action="store_true",
help="Enable Opik observability logging.",
)
parser.add_argument(
"files",
nargs="*",
type=Path,
help="JSONL trace files to process directly (skips session discovery).",
)
args = parser.parse_args()
# -- Resolve paths --
output_dir = args.output.expanduser().resolve()
processed_log = output_dir / "ace_processed.txt"
sessions_dir = OPENCLAW_HOME / "agents" / args.agent / "sessions"
# -- Discover new sessions (FR-001, FR-012) --
section("Discovering sessions")
processed: set[str] = set()
if args.files:
new_sessions = [f.resolve() for f in args.files if f.exists()]
missing = [f for f in args.files if not f.exists()]
for m in missing:
print(f" WARNING: file not found: {m}")
print(f" Direct files: {len(new_sessions)}")
else:
if not sessions_dir.exists():
print(f" Sessions directory not found: {sessions_dir}")
print(" Is OpenClaw installed and has the agent run at least once?")
sys.exit(1)
processed = set() if args.reprocess else load_processed(processed_log)
session_files = sorted(sessions_dir.glob("*.jsonl"))
new_sessions = [f for f in session_files if f.name not in processed]
print(f" Agent: {args.agent}")
print(f" Sessions dir: {sessions_dir}")
print(f" Total sessions: {len(session_files)}")
print(f" Already processed: {len(processed)}")
print(f" New to process: {len(new_sessions)}")
if not new_sessions:
print(" Nothing new to learn from.")
return
# -- Parse into traces (FR-002, FR-010) --
section("Parsing sessions")
traces: list[object] = []
skipped = 0
for session_file in new_sessions:
trace = parse_session(session_file)
if trace:
traces.append(trace)
print(f" + {session_file.name}")
else:
skipped += 1
print(f" Parsed: {len(traces)}, Skipped (empty): {skipped}")
if not traces:
print(" No usable traces found.")
return
# -- Dry run: stop before learning (FR-009) --
if args.dry_run:
print("\n --dry-run: stopping before learning.")
return
# -- Load or create skillbook (FR-004) --
section("Loading skillbook")
skillbook_path = output_dir / "ace_skillbook.json"
if skillbook_path.exists():
try:
skillbook = Skillbook.load_from_file(str(skillbook_path))
print(
f" Loaded {len(skillbook.skills())} existing strategies"
f" from {skillbook_path}"
)
except Exception as exc:
print(f" ERROR: Failed to load skillbook: {exc}")
print(" Starting with empty skillbook instead.")
skillbook = Skillbook()
else:
skillbook = Skillbook()
print(" Starting with empty skillbook")
skills_before = len(skillbook.skills())
# -- Run learning (FR-003) --
section(f"Learning from {len(traces)} traces")
# Pick the first available API key based on the configured provider.
api_key = (
os.getenv("AWS_BEARER_TOKEN_BEDROCK")
or os.getenv("ANTHROPIC_API_KEY")
or os.getenv("OPENROUTER_API_KEY")
or os.getenv("LITELLM_API_KEY")
or os.getenv("SPH_LITELLM_KEY")
)
client = LiteLLMClient(
model=MODEL,
api_key=api_key,
)
markdown_path = output_dir / "ace_skillbook.md"
export_md_step = ExportSkillbookMarkdownStep(markdown_path, skillbook)
extra_steps: list = [export_md_step]
if args.opik:
opik_step = OpikStep(
project_name="openclaw-trace-learning",
tags=["openclaw", "trace-analyser"],
)
register_opik_litellm_callback(project_name="openclaw-trace-learning")
extra_steps.append(opik_step)
analyser = TraceAnalyser.from_roles(
reflector=Reflector(client),
skill_manager=SkillManager(client),
skillbook=skillbook,
extra_steps=extra_steps, # type: ignore[arg-type]
)
results = analyser.run(traces, epochs=1, wait=True)
errors = [r for r in results if r.error]
if errors:
for e in errors:
print(f" ERROR: {e.failed_at}: {e.error}")
print(f" Processed: {len(results) - len(errors)}/{len(results)}")
skills_after = len(skillbook.skills())
new_skills = skills_after - skills_before
print(f" New strategies: {new_skills} (total: {skills_after})")
if skills_after > 0:
print("\n Latest strategies:")
for skill in skillbook.skills()[-3:]:
print(f" [{skill.id}] {skill.content[:70]}")
# -- Save skillbook (FR-004) --
section("Saving")
json_path = output_dir / "ace_skillbook.json"
json_path.parent.mkdir(parents=True, exist_ok=True)
skillbook.save_to_file(str(json_path))
print(f" Skillbook JSON: {json_path}")
print(f" Skillbook MD: {markdown_path}")
# -- Mark sessions processed (FR-007) --
if not args.files:
processed.update(f.name for f in new_sessions)
save_processed(processed_log, processed)
print(f" Processed log: {processed_log}")
section("Done")
if __name__ == "__main__":
main()
|