Agent skill
integrating-search-console
Integrates with Google Search Console API. Supports search performance analysis, URL inspection, sitemap management, and site verification. Use for "GSC", "서치콘솔", "검색 성과", "SEO 분석" requests.
Install this agent skill to your Project
npx add-skill https://github.com/jiunbae/agent-skills/tree/main/integrations/google-search-console
SKILL.md
Google Search Console Integration
Search performance analysis and SEO management.
Prerequisites
export GSC_SERVICE_ACCOUNT="path/to/service-account.json"
export GSC_SITE_URL="https://example.com"
Quick Reference
Get Search Analytics
# Using gsc-cli or API
gsc query --site $GSC_SITE_URL \
--start-date 2024-01-01 \
--end-date 2024-01-31 \
--dimensions query,page
Inspect URL
gsc inspect --url "https://example.com/page"
# Returns: indexed status, crawl info, mobile usability
Submit Sitemap
gsc sitemap submit --site $GSC_SITE_URL \
--sitemap "https://example.com/sitemap.xml"
Common Queries
Top Queries
SELECT query, clicks, impressions, ctr, position
ORDER BY clicks DESC
LIMIT 100
Pages with Issues
SELECT page, impressions
WHERE position > 10
ORDER BY impressions DESC
Metrics
| Metric | Description |
|---|---|
| Clicks | Search result clicks |
| Impressions | Times shown in results |
| CTR | Click-through rate |
| Position | Average ranking |
Workflows
Weekly Report
- Fetch last 7 days data
- Compare to previous week
- Highlight changes >20%
- List top queries/pages
Index Coverage Check
- Get indexing status
- Identify errors/warnings
- Prioritize high-traffic pages
Best Practices
- Query daily for trend analysis
- Focus on high-impression, low-CTR pages
- Monitor Core Web Vitals via API
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
implementing-in-background
Orchestrates multiple AI agents (Claude, Codex, Gemini) for parallel implementation in the background. Separates independent tasks from planning docs, each agent writes code directly. Context-safe with auto-save. Use for "백그라운드 구현", "bg impl", "병렬 구현", "Codex로 구현", "구현해줘", "코드 작성해줘" requests.
review-fix-loop
Autonomous review-fix cycle that continuously reviews code using background-reviewer, fixes issues, and repeats until all findings are resolved. Use for "리뷰 루프", "자동 개선", "review fix loop", "리뷰 반복", "코드 개선 루프", "keep reviewing" requests.
planning-in-background
Orchestrates multiple AI agents (Claude, Codex, Gemini) for parallel planning in the background with auto-save. Agents continue running even when session hits context limits. Use for "백그라운드 기획", "bg plan", "병렬 기획", "멀티 AI 기획", "기획해줘", "N명이 기획", "계획", "플래닝", "plan", "설계" requests.
background-reviewer
Orchestrates multi-LLM parallel code review using Claude, Codex, and Gemini. Each agent reviews from a different perspective using agent personas (security, architecture, code quality, performance). Supports persona-based review via `agt persona review`. Use for "코드 리뷰", "리뷰해줘", "bg review", "멀티 리뷰", "background review", "페르소나 리뷰" requests.
managing-context
Discovers and loads relevant project context from markdown documentation before each task. Matches context documents based on keywords, file paths, and task types. Use at task start to access project plans, architecture, and implementation status.
indexing-static-context
Provides an index of global static context files in ~/.agents/. Returns appropriate static file paths for natural language queries like "내 정보", "보안 규칙". Use when other skills or agents need to locate reference information.
Didn't find tool you were looking for?