Leaderboard/Agent Orchestration/skills
Last commit on September 15, 2026·Created on June 24, 2026

davidondrej/skills

A library for coordinating multi-agent delegation loops and reusable skill distribution
Combined rank
#101
across all skills
In Agent Orchestration
#5
category rank
Stars
4.1k
+1.1% in last 7d
Forks
601
+1.5% in last 7d
Watchers
47
+2.2% in last 7d
Traction scoreGitHub stars can be faked, so popularity alone can be misleading. Traction Score looks for broader signs of recent attention, adoption, and active maintenance.
TL;DR

This collection provides the orchestration patterns necessary for AI agent engineers to build autonomous loops and delegated task transfers. It focuses on the structural coordination of subagents, allowing for more reliable handoffs and goal-oriented execution.

The repository also includes frameworks for authoring and distributing reusable agent skills, ensuring that specialized capabilities can be consistently applied across different agent environments.

WHO IT'S FOR
AI Agent Engineers
coordinate multi-agent delegation loops
Prompt Engineers
create and publish reusable agent skills
Technical Founders
automate and delegate solo operations
Market Researchers
research markets across web and APIs
Repository contents

59 skill files

Compatible AgentsThe repository documents support for these agents. The skills may also work with other agents that can load SKILL.md files, but they may need some setup or small changes.

Use this skill collection

Follow the documented setup, then try a first task.

I’m using

browser-harness for Codex

Installs: Installs the browser-harness tool and globally registers its browser-harness skill with Codex. · Codex

Before you start
  • Git must already be available.
  • uv must already be installed.
  • For local browser use, Chrome or a Chromium-based browser must be available with remote debugging enabled.

Run from: A user-chosen durable parent directory, such as ~/Developer; the installation command enters the cloned browser-harness directory.

  1. In a terminal, clone browser-harness into the current durable parent directory, enter the checkout, install it as an editable uv tool, and verify that its executable is available.

    git clone https://github.com/browser-use/browser-harness
    cd browser-harness
    uv tool install -e .
    command -v browser-harness
  2. Still in the cloned browser-harness repository, run this terminal command to register the repository's SKILL.md globally for Codex.

    mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills/browser-harness" && ln -sf "$PWD/SKILL.md" "${CODEX_HOME:-$HOME/.codex}/skills/browser-harness/SKILL.md"

Give it something to do.

Suggested first task

Inspect a web page safely

Uses browser-harness

  • A page URL in place of <URL>.
  • An installed browser-harness tool.
  • A connected local Chrome/Chromium browser, or another browser connection supported by the documented setup.
Use the browser-harness skill to inspect <URL>. Replace <URL> with the page address I provide. Open it in a new tab, wait for it to load, and report the page information without clicking, typing, or submitting anything.