Move evolution examples out of runtime directory#25
Merged
CalebisGross merged 1 commit intomainfrom Mar 1, 2026
Merged
Conversation
The examples/ subdirectory inside evolution/ confused the agent for new users — the evolution dir should be purely runtime data (created by the agent on first run). Moved to evolution_examples/ as a sibling. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 tasks
CalebisGross
added a commit
that referenced
this pull request
Apr 14, 2026
…391) Adds the automated spoke training pipeline (Phase C) to the continuous learning system. When enough experience data accumulates in the buffer, the daemon can assemble training batches, run spoke fine-tuning via Python subprocess, evaluate against quality gates, and deploy new spokes. New infrastructure: - TrainingRun type and 5 new ContinuousLearningStore methods (WriteTrainingRun, UpdateTrainingRun, GetLastTrainingRunTime, CountUntrainedExperience, MarkExperienceUsedInTraining) - Migration 018: training_runs table for audit trail - Training orchestrator in dreaming agent (Phase 4.85 in dream cycle) with subprocess execution, quality gate (EPR >= 0.90, FR <= 0.05, SC >= 0.95), and atomic deployment with rollback - train_model MCP tool (#25) for manual training trigger - 26 new tests across curriculum, training data, and trigger logic The pipeline: check untrained count >= threshold → assemble JSONL batch → run train_spokes.py subprocess → evaluate via eval_encoding.py → deploy via deploy_model.sh if quality passes → record result. Gated by config flags, training window, and minimum data threshold. Also includes minor fixes from other agents: episoding debug logging, embedded LLM grammar improvements. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
sdk/agent/evolution/examples/→sdk/agent/evolution_examples/so theevolution/directory is purely runtime dataevolution/was confusing the agent for new users — it should only contain files created by the agent at runtimeTest plan
evolution/directory with no stale example files🤖 Generated with Claude Code