Back to list
dredd-us

parallel-session-orchestration

by dredd-us

Web-based SSH session manager with chat-like interface

0🍴 0📅 Nov 1, 2025

SKILL.md


name: parallel-session-orchestration description: Run multiple agent tasks in parallel cloud sandboxes with real-time progress monitoring, achieving 2x throughput vs sequential execution. Use for multi-repo tasks, independent bug fixes, concurrent feature development, or team workflows requiring parallel workstreams. Supports session management, result aggregation, and local teleport. Triggers on "parallel tasks", "multiple repos", "concurrent work", "parallel sessions", "multi-repo".

Parallel Session Orchestration

Purpose

Execute multiple agent tasks in parallel cloud sandboxes with real-time progress monitoring, achieving 2x throughput vs sequential execution.

When to Use

  • Multiple repository tasks
  • Team workflows with parallel streams
  • Independent bug fixes across projects
  • Concurrent feature development
  • Batch operations on multiple codebases

Core Instructions

Orchestration Pattern

import asyncio

async def orchestrate_parallel(tasks):
    """
    Run multiple tasks in parallel sandboxes
    """
    sessions = []

    # Create sandbox session for each task
    for task in tasks:
        session = await create_sandbox_session(task)
        sessions.append(session)

    # Execute all in parallel
    results = await asyncio.gather(*[
        session.execute() for session in sessions
    ])

    # Aggregate results
    return merge_results(results)


async def create_sandbox_session(task):
    """
    Create isolated sandbox for task
    """
    return {
        'task': task,
        'sandbox_id': generate_sandbox_id(),
        'repo': clone_repo(task.repo_url),
        'execute': lambda: run_in_sandbox(task)
    }

Progress Monitoring

async def monitor_parallel_execution(sessions):
    """
    Monitor all sessions in real-time
    """
    while any(s.status == 'running' for s in sessions):
        for session in sessions:
            progress = await session.get_progress()
            print(f"{session.task.name}: {progress}%")

        await asyncio.sleep(1)

    return [s.result for s in sessions]

Example Workflow

tasks = [
    {
        'name': 'fix-auth-bug',
        'repo': 'https://github.com/org/repo-a',
        'instructions': 'Fix authentication timeout'
    },
    {
        'name': 'update-deps',
        'repo': 'https://github.com/org/repo-b',
        'instructions': 'Update dependencies to latest'
    },
    {
        'name': 'add-tests',
        'repo': 'https://github.com/org/repo-c',
        'instructions': 'Add unit tests for API'
    }
]

# Run all in parallel
results = await orchestrate_parallel(tasks)

# Results available simultaneously
# Time: max(task_times) instead of sum(task_times)

Performance

  • 2x throughput vs sequential execution
  • Real-time progress monitoring
  • Isolated sandboxes prevent conflicts
  • Results can be teleported to local

Version

v1.0.0 (2025-10-23)

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon