feat: Multi-agent workflow system for Scribe map automation#4
Merged
Conversation
Implement Gas Town-inspired multi-agent architecture for structured map creation: **New Agent System:** - agents/prompts/ - 5 mode-specific prompt templates - agents/workflows/ - 2 workflow definitions (flowchart_to_map, modify_existing) - agents/AGENTS.md - Agent system documentation **New Infrastructure Scripts:** - scripts/ensure_mcp_servers.py - MCP server health checks - scripts/workflow_state.py - Workflow state management with unique IDs - scripts/handoff.py - Session handoff document generation - scripts/workflow_orchestrator.py - CLI orchestrator **Configuration Updates:** - .mcp.json - Added Salesforce MCP with 6 orgs (FullCopy, CCxDEV, FUT, SIT, BST, UAT) - .vscode/mcp.json - Synced SF org configuration - .gitignore - Added logs/ folder **Code Changes:** - MCP servers now log to logs/ folder instead of project root - CLAUDE.md updated with multi-agent workflow documentation **Project Cleanup:** - Moved 6 status docs to docs/archive/ (historical reference) - Deleted docs/LLM_CONTEXT_OLD.md (superseded) - Deleted root log files (now in logs/) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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
scribe-a7k2m)Key Features
Multi-Agent System
New Scripts
scripts/ensure_mcp_servers.py- Health checks for MCP infrastructurescripts/workflow_state.py- Persistent workflow state with unique IDsscripts/handoff.py- Session continuity document generationscripts/workflow_orchestrator.py- CLI for workflow managementConfiguration
logs/folder (cleaner project root)Test plan
python -m scripts.ensure_mcp_servers- verify all checks passpython -m scripts.workflow_state create --type flowchart_to_map --description "Test"- verify workflow creation.venv/bin/pytest tests/ -m unit🤖 Generated with the assistance of Claude Code