Claude-skill-registry fetch-team-context
Fetch Semicolon team standards from docs wiki. Use when (1) providing workflow or process advice, (2) recommending DevOps strategies, (3) referencing team conventions for decision-making, (4) checking team standards compliance.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/fetch-team-context" ~/.claude/skills/majiayu000-claude-skill-registry-fetch-team-context && rm -rf "$T"
manifest:
skills/data/fetch-team-context/SKILL.mdsource content
🔔 시스템 메시지: 이 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
- GitHub API accessgh api
- Web content retrieval (fallback)web_fetch- docs wiki - Source of truth
Related Skills
- Uses this for code quality rulescheck-team-codex
- Uses this for issue conventionscreate-issues
- Uses this for development workflowimplement
References
For detailed documentation, see:
- Wiki Pages - Topic mapping, fetch methods, validation
- Quick Reference - Git conventions, workflow, quality gates