
ai-native-camp/camp-1
7 skills9.9k installs1.7k starsGitHub
Install
npx skills add https://github.com/ai-native-camp/camp-1Skills in this repo
1Day1 OnboardingAI Native Camp Day 1 온보딩. Claude와 대화하면서 Claude Code를 익힌다. "1일차", "Day 1", "온보딩" 요청에 사용. The day1-onboarding skill documents workflows and patterns from the repository SKILL.md. --- name: day1-onboarding description: AI Native Camp Day 1 온보딩. Claude와 대화하면서 Claude Code를 익힌다. --- # Day 1: Onboarding 이 스킬이 호출되면 아래 **STOP PROTOCOL**을 반드시 따른다. --- ## STOP PROTOCOL - 절대 위반 금지 > 이 프로토콜은 이 스킬의 최우선 규칙이다. ### 각 블록은 반드시 2턴에 걸쳐 진행한다 ``` ┌─ Phase A (첫 번째 턴) ──────────────────────────────┐ │ 1. references/에서 해당 블록 파일의 EXPLAIN 섹션을 읽는다 │ │ 2. references/에서 해당 블록 파일의 EXECUTE 섹션을 읽는다 │ │ 4. │ │ │ │ ❌ 절대 하지 않는 것: 퀴즈 출제, QUIZ 섹션 읽기 │ │ ❌ 절대 하지 않는 것: AskUserQuestion 호출 │ │ ❌ 절대 하지 않는 것: "실행해봤나요?" 질문 │ └──────────────────────────────────────────────────────────┘ ⬇️ 사용자가 돌아와서 "했어", "완료", "다음" 등을 입력한다 ┌─ Phase B (두 번째 턴) ──────────────────────────────┐ │ 1. references/에서 해당 블록 파일의 QUIZ 섹션을 읽는다 │ │ 2. AskUserQuestion으로 퀴즈를 출제한다 │ │ 3.1.7kinstalls2Day2 Create Context Sync SkillThe day2-create-context-sync-skill runs AI Native Camp Day 2 as a strict STOP PROTOCOL workshop. Each block splits Phase A (read EXPLAIN and EXECUTE references, explain, tell the user to run hands-on steps, then stop) from Phase B (read QUIZ, AskUserQuestion quiz, feedback, next-block prompt). Block 0 selects sync tools and generates .claude/skills/my-context-sync/SKILL.md from templates/context-sync.md. Block 1 uses an Explore subagent for project structure. Block 2 chooses MCP vs API per tool, searches MCP servers via scripts/mcp_servers.py, and registers .mcp.json. Block 3 runs parallel subagent collection with success/failure reporting. Block 4 picks markdown, Slack, or Notion output formats. Block 5 finalizes and executes the skill. Official doc URLs must print verbatim each Phase A. The skill installs latest camp-1 skills via npx skills add before block selection. Use for Day 2, context sync, or multi-source information gathering skill creation requests.1.6kinstalls3Day2 Supplement McpThe day2-supplement-mcp skill is AI Native Camp Day 2 supplemental MCP deep dive. It mirrors the camp STOP PROTOCOL: Phase A reads EXPLAIN and EXECUTE from references/blockN-*.md, explains MCP topics, tells users to run exercises, prints official doc URLs verbatim, ends with a mandatory stop phrase, and forbids quizzes or AskUserQuestion in Phase A. Phase B reads QUIZ sections, runs AskUserQuestion quizzes, gives feedback, and asks whether to continue. Blocks cover MCP concepts (block0-concept.md), adding servers with claude mcp add (block1-add-server.md), exploring tools via /mcp (block2-mcp-command.md), installing popular servers (block3-popular-servers.md), and optional plugin MCP expansion (block4-plugin-mcp bonus). Startup runs npx skills add ai-native-camp/camp-1 --agent claude-code --yes then AskUserQuestion block selection. One block at a time; bonus block only if time remains. Use for MCP learning, MCP supplement, or MCP lecture requests.1.6kinstalls4Day4 Wrap And Analyzeday4-wrap-and-analyze is an agent skill from ai-native-camp/camp-1 that ai native camp day 4 wrap & analyze. session-wrap 스킬을 직접 만들고, history-insight와 session-analyzer로 세션을 분석한다. "4일차", "day 4", "wrap", "세션 분석", "session wrap", "세션 래핑" 요청에 사용. # Day 4: Wrap & Analyze 이 스킬이 호출되면 아래 **STOP PROTOCOL**을 반드시 따른다. --- ## 용어 정리 이 스킬에서 사용하는 핵심 용어: | 용어 | 설명 | |------|------| | **session-wrap** | 코딩 세션이 끝날 때 작업을 정리하고 문서화하는 스킬. "퇴근 전 책상 정리" | | **multi-agent** | 여러 에이전트가 동시에 일하는 패턴. "회의에서 각 팀장에게 동시에 보고 받기" | | **병렬(Parallel)** | 여러 작업을 동시에 처리하는 것. "4명의 팀장에게 한꺼번에 보고를 받는 것" (반대: 순차 = 한 명씩 차례로) Developers invoke day4-wrap-and-analyze during build/integrations work for ai & agent building tasks. The skill documents triggers, prerequisites, and step-by-step workflows grounded in SKILL.md.1.5kinstalls5Day5 Fetch And Digestday5-fetch-and-digest is an agent skill from ai-native-camp/camp-1 that ai native camp day 5 콘텐츠 소화 스킬 만들기. fetch-tweet, fetch-youtube, content-digest 3개 스킬을 직접 만들고 활용한다. "5일차", "day 5", "fetch", "콘텐츠 스킬", "트윗 스킬", "유튜브 스킬", "다이제스트 스킬" 요청에 사용. # Day 5: Fetch & Digest — 콘텐츠를 내 것으로 만드는 스킬 이 스킬이 호출되면 아래 **STOP PROTOCOL**을 반드시 따른다. --- ## 용어 정리 이 스킬에서 사용하는 핵심 용어: | 용어 | 설명 | |------|------| | **fetch** | 외부에서 데이터를 가져오는 것. "배달 주문처럼 URL만 주면 내용이 도착" | | **digest** | 가져온 내용을 소화(요약·퀴즈·학습)하는 것. "읽고 끝이 아니라 씹어서 내 것으로 만들기" | | **API** | 프로그램끼리 대화하는 창구. "식당 메뉴판처럼 요청 형식이 정해져 있다" | | **JSON** | 컴퓨터 Developers invoke day5-fetch-and-digest during build/integrations work for ai & agent building tasks.1.4kinstalls6Day6 Prd SubmitThe day6-prd-submit skill supports AI Native Camp day six PRD submission tasks guiding developers through structured product requirement document completion for the camp curriculum. It aligns camp participants on PRD format, scope definition, and submission expectations for day six milestones. Use when camp participants finalize and submit day six PRD assignments in the ai-native-camp program.1.3kinstalls7My Fetch Tweetmy-fetch-tweet is a camp-1 agent skill that accepts X or Twitter URLs, converts them to api.fxtwitter.com endpoints, and fetches JSON tweet payloads without browser JavaScript. Supported domains include x.com, twitter.com, fxtwitter.com, and fixupx.com, extracting screen_name and status_id before WebFetch retrieval. A three-step pipeline delivers original text, a concise summary, derived insights, and a full translation—useful when agents monitor technical discourse or localize social posts. Developers reach for my-fetch-tweet when coding agents need structured tweet data and NLP follow-ups instead of scraping HTML or requiring official X API credentials.812installs