π μμ€ν λ©μμ§: μ΄ Skillμ΄ νΈμΆλλ©΄
[SEMO] Skill: fetch-team-context νΈμΆ - {ν ν½}μμ€ν λ©μμ§λ₯Ό 첫 μ€μ μΆλ ₯νμΈμ.
Fetch Team Context Skill
Purpose: Retrieve Semicolon team standards, processes, and conventions from docs wiki for informed decision-making
When to Use
Agents should invoke this skill when:
- Providing workflow or process advice
- Recommending DevOps strategies
- Checking team conventions before suggesting changes
- Validating recommendations against team standards
Quick Start
1. Identify Required Context
| Topic | Wiki Page | |-------|-----------| | Git & Commits | Team Codex | | Workflow | Collaboration Process | | Architecture | Development Philosophy | | Estimation | Estimation Guide |
2. Fetch via GitHub API
# List all wiki pages
gh api repos/semicolon-devteam/docs/contents | jq '.[].name'
# Web fetch fallback
web_fetch({ url: "https://github.com/semicolon-devteam/docs/wiki/Team-Codex" });
3. Extract Key Information
Parse fetched content for:
- Rules: MUST, SHOULD, MUST NOT patterns
- Conventions: Naming, formatting, structure
- Processes: Step-by-step workflows
- Examples: Code snippets, command examples
Usage
// Fetch specific context
skill: fetchTeamContext({ topic: "git-commits" });
// Fetch multiple contexts
skill: fetchTeamContext({ topics: ["workflow", "code-quality"] });
Critical Rules
- docs wiki is Source of Truth: Always prefer wiki over cached data
- Explicit Over Implicit: If wiki doesn't specify, don't assume
- Version Awareness: Note if wiki content seems outdated
- Fallback Gracefully: Use quick reference if wiki unavailable
- Attribution: Always cite source URL in responses
- λ¬Έμ μ ν¨μ± κ²μ¦ νμ: 404 μλ΅μ΄λ©΄ λ°λμ μ¬μ©μμκ² μλ¦Ό
Dependencies
gh api- GitHub API accessweb_fetch- Web content retrieval (fallback)- docs wiki - Source of truth
Related Skills
check-team-codex- Uses this for code quality rulescreate-issues- Uses this for issue conventionsimplement- Uses this for development workflow
References
For detailed documentation, see:
- Wiki Pages - Topic mapping, fetch methods, validation
- Quick Reference - Git conventions, workflow, quality gates