Fix CLI agent system bugs, add YAML team deployment with sandbox, add…#16
Merged
Fix CLI agent system bugs, add YAML team deployment with sandbox, add…#16
Conversation
… coding agent example Bug fixes: - Wire YAML-defined tools in BuildAgent (tools were parsed but never registered) - Fix swarm/hierarchy strategies: compiled graph was discarded, Team.Run had no case for them - Add StrategySwarm and StrategyHierarchy constants to Team - Guard graph Runner checkpoint/event calls when storage is nil (enables team graph runs) - Add auto-approve shell tool variant for autonomous agents New features: - CLI deploy command: `chronos deploy <config.yaml> <message>` deploys agents/teams from YAML in a sandbox - SandboxShellTool: shell tool backed by sandbox.Sandbox for isolated command execution - NewAutoShellTool: shell tool with PermAllow for autonomous agent workflows - YAML tool resolution: built-in tools (shell, shell_auto, file_*) resolved by name from config New examples: - examples/coding_agent: Full Cursor-style coding agent with vector DB, file tools, shell, semantic search - examples/team_deploy: Multi-agent team deployment with sandbox isolation (sequential, coordinator, parallel) - examples/yaml-configs/sandbox-deploy.yaml: YAML config for sandbox-backed team deployment Cleanup: - Remove autoresearch/results.tsv from tracking, update .gitignore Made-with: Cursor
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.
Bug fixes:
New features:
chronos deploy <config.yaml> <message>deploys agents/teams from YAML in a sandboxNew examples: