원클릭으로
gaia
gaia에는 Sho0pi에서 수집한 skills 6개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.
이 저장소의 skills
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/.