con un clic
gaia
gaia contiene 6 skills recopiladas de Sho0pi, con cobertura ocupacional por repositorio y páginas de detalle dentro del sitio.
Skills en este repositorio
Add an in-chat slash command (/foo) the right way — catalog entry, Command subclass, registry wiring, config gating, tests. Use when adding or editing anything under src/gaia/commands/.
Create a new gaia runtime tool (a callable the LLM invokes) the right way — ADK function-tool idiom, dict return, pluggable backend, registry wiring, tests. Use when adding any tool under src/gaia/tools/.
How gaia exposes/consumes agents over A2A and persists AgentCards for reuse. Use when touching agents/factory.py or agents/registry.py.
How to build ADK agents in gaia — LlmAgent, tools, SequentialAgent/ParallelAgent, session state, sub-agent delegation. Use when creating or editing any agent in src/gaia/core or src/gaia/agents.
The mandatory dev cycle for gaia features — plan, study prior art, implement in library idiom, test, self-review, and file the issue/PR via gh. Use at the start of any feature.
Add a chat connector (new messaging platform) — Handler/Send contract, lazy SDK imports, lifecycle (run vs start), config wiring, message limits, tests. Use when touching src/gaia/connectors/.