소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 9일 04:32
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill create-agent명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
SOC 직업 분류 기준
SKILL.md 표시 중
| name | create-agent |
| description | Create a production-ready Google Cloud agent using ADK and Agent Starter... |
| model | sonnet |
Scaffold a complete agent project using Google's Agent Development Kit (ADK) and Agent Starter Pack with production-ready infrastructure.
Best for: General-purpose agents with tool use Includes: Search, code execution, custom tools Use case: Q&A agents, research assistants, task automation
Best for: Document-based Q&A Includes: Vertex AI Search, Vector Search integration Use case: Knowledge bases, documentation agents, customer support
Best for: Complex workflows with state management Includes: LangGraph orchestration, custom nodes Use case: Multi-step processes, conditional logic, state tracking
Best for: Collaborative multi-agent systems Includes: Specialized agents, role-based coordination Use case: Software development, research teams, content creation
Best for: Audio/video/text processing Includes: Multimodal understanding, live streaming Use case: Video analysis, audio transcription, media processing
Pros:
Cons:
Best for: Web-facing agents, APIs, low-traffic services
Pros:
Cons:
Best for: Production agents, high-scale deployment
Pros:
Cons:
Best for: Complex multi-agent systems, enterprise deployment
/create-agent
Then provide:
Input:
Agent name: customer-support-agent
Template: agentic_rag
Deployment: cloud_run
Project: my-gcp-project
Region: us-central1
Generated Structure:
customer-support-agent/
├── src/
│ ├── agent.py # Main agent implementation
│ ├── tools/
│ │ ├── search_tool.py
│ │ └── custom_tools.py
│ ├── config.py # Configuration
│ └── prompts/
│ └── system_prompt.txt
├── deployment/
│ ├── Dockerfile
│ ├── cloudbuild.yaml
│ ├── cloud-run.yaml
│ └── terraform/
│ ├── main.tf
│ ├── variables.tf
│ └── outputs.tf
├── tests/
│ ├── unit/
│ │ ├── test_agent.py
│ │ └── test_tools.py
│ └── integration/
│ └── test_e2e.py
├── .github/workflows/
│ ├── test.yaml # CI testing
│ └── deploy.yaml # CD deployment
├── requirements.txt
├── pyproject.toml
├── README.md
└── .env.example
cd customer-support-agent
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# Authenticate
gcloud auth login
gcloud config set project my-gcp-project
# Enable APIs
gcloud services enable \
aiplatform.googleapis.com \
run.googleapis.com \
cloudbuild.googleapis.com
# Copy example env
cp .env.example .env
# Edit with your values
vim .env
Required variables:
GOOGLE_CLOUD_PROJECT=my-gcp-project
GOOGLE_CLOUD_REGION=us-central1
GOOGLE_APPLICATION_CREDENTIALS=/path/to/key.json
VERTEX_AI_SEARCH_DATASTORE=datastore-id
# Run agent locally
python src/agent.py
# Or use ADK CLI
adk serve --port 8080
# Test endpoint
curl http://localhost:8080/query \
-H "Content-Type: application/json" \
-d '{"question": "What are your support hours?"}'
# Unit tests
pytest tests/unit/
# Integration tests
pytest tests/integration/
# Coverage report
pytest --cov=src tests/
# Using ADK CLI (recommended)
adk deploy \
--target cloud_run \
--region us-central1 \
--allow-unauthenticated
# Or using gcloud
gcloud run deploy customer-support-agent \
--source . \
--region us-central1 \
--allow-unauthenticated \
--memory 2Gi \
--cpu 2 \
--timeout 300s
# Connect GitHub repo
gh repo create customer-support-agent --public
git init
git add .
git commit -m "Initial agent setup"
git branch -M main
git remote add origin https://github.com/USER/customer-support-agent.git
git push -u origin main
# GitHub Actions automatically trigger on push
# View logs
gcloud run services logs read customer-support-agent \
--region us-central1 \
--limit 100 \
--format json
# Check metrics
gcloud monitoring dashboards create \
--config-from-file monitoring/dashboard.json
# Automatically included in agentic_rag template
from vertexai.preview.rag import VectorSearchTool
vector_search = VectorSearchTool(
index_endpoint="projects/PROJECT/locations/REGION/indexEndpoints/INDEX",
deployed_index_id="deployed_index"
)
agent.add_tool(vector_search)
# Automatically included in crewai_coding_crew template
from crewai import Agent, Task, Crew
researcher = Agent(
role="Researcher",
goal="Research technical topics",
tools=[search_tool]
)
writer = Agent(
role="Writer",
goal="Write documentation",
tools=[write_tool]
)
crew = Crew(
agents=[researcher, writer],
tasks=[research_task, write_task]
)
# Add custom tools to any agent
from vertexai.preview.agents import FunctionTool
@FunctionTool
def check_inventory(product_id: str) -> dict:
"""Check product inventory levels"""
# Your custom logic
return {"in_stock": True, "quantity": 42}
agent.add_tool(check_inventory)
Development:
Production (Cloud Run):
Monthly estimate for typical agent:
1. Authentication Errors
# Fix: Set credentials
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/key.json
gcloud auth application-default login
2. Timeout Errors
# Fix: Increase Cloud Run timeout
gcloud run services update customer-support-agent \
--timeout 300s
3. Memory Issues
# Fix: Increase memory
gcloud run services update customer-support-agent \
--memory 4Gi
4. Rate Limiting
# Fix: Implement exponential backoff
# Code automatically included in templates
After deployment:
Documentation:
Examples:
This command scaffolds production-ready agent projects in <5 minutes with full CI/CD, testing, and deployment automation.