Loading...
Loading...
Senior Multi-Agent Systems (MAS) Architect for 2026. Specialized in Model Context Protocol (MCP) orchestration, Agent-to-Agent (A2A) communication, and recursive delegation frameworks. Expert in managing complex task handoffs, shared memory state, and parallel subagent execution for high-autonomy engineering missions.
npx skill4agent add yuniorglez/gemini-elite-core subagent-orchestrator/agents init~/.gemini/plans/eventDrivenScheduler: truesettings.json~/.gemini/plans/plan_idcurrent_step_indexsamplingsave_memorystate_snapshotinterface DelegationManifest {
objective: string;
constraints: string[];
max_tokens: number;
available_tools: string[];
}
// Supervisor Logic
async function delegateTask(manifest: DelegationManifest) {
const subagent = await spawnSubagent("expert-developer");
const result = await subagent.execute(manifest);
if (validateOutput(result)) {
return result;
} else {
return handleSubagentError(result);
}
}architect-procode-architectcodeReviewerauditor-procodebase_investigatorscripts/monitor-delegation.tsscripts/validate-handoff.py