Cursor Experiments
Description
Demo: Multi-Agent Orchestration in Cursor
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Demo: Multi-Agent Orchestration in Cursor
This project demonstrates how specialized AI agents can collaborate to solve complex, multi-step tasks within the Cursor IDE.
Project Goal
The primary goal is to showcase the **orchestration capability** of Cursor's agentic framework. By defining a high-level "Trip Planner" agent that coordinates with specialized "Flight" and "Hotel" researchers, we illustrate a modular and scalable approach to automated problem-solving.

Key Features
- Multi-Agent Collaboration: Transparent delegation of sub-tasks from a primary agent to specialized sub-agents.
- Skill-Based Execution: Integration of custom "Agent Skills" that execute shell scripts to perform specific actions (e.g., searching data).
Subagents and Agent Skills
Agents
- @trip-planner: Orchestrates the entire trip planning process by delegating tasks to specialized agents.
- @flight-researcher: Researches flight options based on origin and destination.
- @hotel-researcher: Researches hotel accommodations at the destination.
Agent Skills
- @research-flight: Executes flight search scripts to retrieve travel options.
- @research-hotel: Executes hotel search scripts to retrieve accommodation details.
Relationships across subagents and Agent Skills
graph TD
TripPlanner[Trip Planner Agent] --> FlightResearcher[Flight Researcher Agent]
TripPlanner --> HotelResearcher[Hotel Researcher Agent]
FlightResearcher --> ResearchFlight[Research Flight Skill]
HotelResearcher --> ResearchHotel[Research Hotel Skill]
Usage Instructions
To run the demonstration:
- Open the Cursor IDE in this repository.
- Open the Chat panel (
Cmd+LorCtrl+L). - Use the
@trip-planneragent by typin
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11