maestro:agent-base

Standardize agent startup, validation, service orchestration, and handoff in Maestro workflows.

1|Updated May 26, 2026
One-click install
npx skills add https://github.com/Leonardo-Corte/local-social-smm-agent --skill maestro-agent-base
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: maestro:agent-base
Source: https://github.com/Leonardo-Corte/local-social-smm-agent/tree/main/reference/github-agent-orchestration/maestro/.claude/skills/maestro%253Aagent-base
Command: npx skills add https://github.com/Leonardo-Corte/local-social-smm-agent --skill maestro-agent-base

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It standardizes how all mission agents start, validate, run, and hand off work so that each feature executes within the Maestro mission boundaries.

Core Features & Use Cases

  • Mission Startup & Baseline Validation: Reads mission context, guidance, and validation contracts, then runs the manifest-defined baseline tests before doing any feature work.
  • Deterministic Service Orchestration: Starts required services from .maestro/bootstrap/services.yaml, waits for health checks, and stops immediately if a service fails.
  • Feature Execution Delegation & Safety Guardrails: Enforces that after startup it delegates to the feature’s agentType skill, and if the skill is missing or mission scope can’t be completed it returns to the orchestrator safely.
  • Cleanup, Final Validation, and Structured Reporting: Ensures validators pass, performs cleanup, and returns an EndFeatureRun report with commands, observations, and discovered issues.
  • Use Case: Apply this as the REQUIRED base procedure for every mission feature implementation to keep multi-agent runs consistent, reviewable, and safe.

Quick Start

Use the maestro framework to run your mission feature with a valid agentType, then let this base skill handle startup validation, service readiness, feature delegation, and structured handoff.

Frequently Asked Questions about maestro:agent-base

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I standardize multi-agent mission startup and validation across different workflows?

Multi-agent mission startup is standardized by reading mission context, enforcing baseline health checks, and starting declared services from a single source of truth. This ensures every feature execution follows consistent mission boundaries and validation contracts before feature work begins.

What is deterministic service orchestration and how does it handle healthcheck failures?

Deterministic service orchestration starts required services from a bootstrap configuration file and waits for health checks to pass. If a service fails its healthcheck, the orchestration stops immediately to prevent unsafe mission execution and maintain system reliability.

How do I enforce safe handoff reporting when an agent can't complete its mission scope?

Safe handoff reporting is enforced by returning a structured EndFeatureRun report with commands, observations, and discovered issues. If a feature's agentType skill is missing or scope cannot be completed, the agent returns to the orchestrator safely with this structured report.

Can I use this base procedure for every feature implementation in a local-first multi-agent workflow?

Yes, this base procedure is required for every mission feature implementation to keep multi-agent runs consistent, reviewable, and safe. It applies to any feature execution where an agent must read mission context, validate baseline health, and orchestrate declared services.

Why does an agent need to delegate to a feature-specific skill after service startup?

Delegation to a feature-specific skill enforces safety guardrails by separating baseline validation from feature execution. After startup validation completes, the base procedure delegates to the feature's agentType skill, ensuring mission boundaries are maintained and scope is handled correctly.