Skip to content

Instantly share code, notes, and snippets.

View vianho's full-sized avatar
🦕
meow

silvi 😼 vianho

🦕
meow
View GitHub Profile

Orchestrator Agent Creation Guide

This document provides a comprehensive guide for creating Orchestrator Agents in OpenCode. Based on the reference implementation (@agent/orchestrator.md), this guide details the structure, patterns, and best practices for building intelligent routing agents.

1. Overview

An Orchestrator Agent serves as a central dispatch system. Unlike standard agents that execute tasks, an orchestrator's sole purpose is to analyze user requests and delegate work to specialized subagents.

Core Characteristics

@azagniotov
azagniotov / beautiful.rest.api.docs.in.markdown.md
Last active April 19, 2026 17:58
Example to create beautiful REST API docs in Markdown, inspired by Swagger API docs.
@ipmb
ipmb / settings.py
Last active October 24, 2025 14:36
Django logging example
import logging.config
import os
from django.utils.log import DEFAULT_LOGGING
# Disable Django's logging setup
LOGGING_CONFIG = None
LOGLEVEL = os.environ.get('LOGLEVEL', 'info').upper()
logging.config.dictConfig({
@shagunsodhani
shagunsodhani / A Roadmap towards Machine Intelligence.md
Created November 6, 2016 19:09
Summary of "A Roadmap towards Machine Intelligence" paper

A Roadmap towards Machine Intelligence

Introduction

  • The paper presents some general characteristics that intelligent machines should possess and a roadmap to develop such intelligent machines in small, realistic steps.
  • Link to the paper

Ability to Communicate

  • The intelligent agents should be able to communicate with humans, preferably using language as the medium.