Add comprehensive Agent Capabilities Guide to document all available tasks#3
Draft
Add comprehensive Agent Capabilities Guide to document all available tasks#3
Conversation
Co-authored-by: DeepExtrema <175066046+DeepExtrema@users.noreply.github.com>
Co-authored-by: DeepExtrema <175066046+DeepExtrema@users.noreply.github.com>
Co-authored-by: DeepExtrema <175066046+DeepExtrema@users.noreply.github.com>
DeepExtrema
approved these changes
Oct 13, 2025
Copilot
AI
changed the title
[WIP] Investigate tasks for coding agents
Add comprehensive Agent Capabilities Guide to document all available tasks
Oct 13, 2025
DeepExtrema
approved these changes
Oct 13, 2025
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.
Problem
Users asking "what kind of tasks can I do with these agents?" had no single comprehensive resource to discover the full capabilities of the Sherlock multi-agent system. While documentation existed for individual agents (e.g., Refinery Agent Guide, ML Workflow Guide), there was no centralized guide showing all available agents and their actions.
Solution
Created a comprehensive Agent Capabilities Guide (
AGENT_CAPABILITIES.md) that serves as a one-stop reference for all agent capabilities in the system.What's Included
📄 AGENT_CAPABILITIES.md (1,382 lines)
Quick Reference Table - Overview of all 4 agents and their purposes:
Complete Action Documentation - All 48 agent actions with:
config.yamlOrganized by Agent:
analyze,clean,transform,explore,preprocess)3 Complete Workflow Examples:
Additional Sections:
📝 README.md Updates
Added prominent Quick Start section that:
AGENT_CAPABILITIES.mdUpdated Documentation & Examples section to list the new guide first for easy discovery.
Validation
Created and ran validation script that confirms:
config.yamlare documentedUser Impact
Users can now:
Example Usage
{ "run_name": "customer_churn_analysis", "tasks": [ { "agent": "refinery", "action": "comprehensive_quality_report", "args": {"data_path": "customer_data.csv", "target_col": "churn"} }, { "agent": "refinery", "action": "execute_feature_pipeline", "args": {"data_path": "customer_data.csv", "run_id": "churn_001"} }, { "agent": "model", "action": "train_model", "args": { "experiment_id": "exp_churn_001", "model_type": "random_forest" } } ] }The guide makes it clear which agent handles which tasks and provides production-ready examples for immediate use.
Files Changed:
AGENT_CAPABILITIES.md(new file, 1,382 lines)README.md(updated with Quick Start section and documentation links)Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.