
Day1 Test Skill
Verify your agent skill pipeline works on day one by invoking a hello-world skill that prints a fixed success banner and explains progressive disclosure.
Overview
day1-test-skill is an agent skill for the Build phase that confirms the skill system works by outputting a fixed success message when /day1-test-skill is invoked.
Install
npx skills add https://github.com/ai-native-camp/camp-2 --skill day1-test-skillWhat is this skill?
- Runs when user types /day1-test-skill per SKILL.md frontmatter
- Outputs a fixed Korean celebration block proving the skill was found and executed
- Explains progressive disclosure versus always-on CLAUDE.md context
- Points learners back to the Camp onboarding flow for the next block
- Zero external APIs—pure instructional echo of SKILL.md instructions
- 3-step explanation of what happened after invocation (find SKILL.md, follow instructions, on-demand loading)
Adoption & trust: 1.3k installs on skills.sh; 17 GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
You finished copying skills into your repo but are unsure whether Claude actually loads SKILL.md on command.
Who is it for?
First-day Camp participants or any builder validating skill paths and slash-style invocation before writing production skills.
Skip if: Automated CI test runners or application QA—this skill only demonstrates agent skill mechanics.
When should I use this skill?
User runs /day1-test-skill or Camp Day 1 asks to experience how skills load.
What do I get? / Deliverables
You see the scripted success banner and a short explanation of on-demand loading, then continue Camp onboarding.
- Fixed success message block and progressive-disclosure explanation in chat
Recommended Skills
Journey fit
Build agent-tooling is where you first prove `.claude/skills` resolution and on-demand SKILL.md loading before writing real automation. Onboarding smoke test belongs with agent-tooling setup, not production ship or launch workflows.
How it compares
Meta onboarding smoke test, not a Ship-phase test suite or skill-creator eval harness.
Common Questions / FAQ
Who is day1-test-skill for?
Learners in AI Native Camp and solo developers who need a trivial skill to confirm Claude Code skill discovery and invocation.
When should I use day1-test-skill?
Right after installing Camp skills during Build agent-tooling setup, before creating custom skills for real product work.
Is day1-test-skill safe to install?
It only instructs formatted text output; still review Security Audits on this Prism page and trust only skills from sources you control.
SKILL.md
READMESKILL.md - Day1 Test Skill
# Day 1 Test Skill 이 스킬이 실행되었다면, Skill 시스템이 정상 동작하고 있다는 뜻이다. ## 실행 지시 아래 메시지를 **그대로** 출력하라: ``` 🎉 Skill 실행 성공! 축하합니다! 방금 여러분의 첫 번째 Skill을 실행했습니다. ┌─────────────────────────────────────────┐ │ /day1-test-skill 을 입력했더니 │ │ → Claude가 SKILL.md를 읽고 │ │ → 이 메시지를 출력했습니다 │ │ │ │ 이것이 Skill의 원리입니다: │ │ 필요할 때만 로딩되는 업무 레시피 📖 │ └─────────────────────────────────────────┘ ``` 그 다음, 한 줄 띄고 아래 설명을 추가하라: > **방금 일어난 일:** > 1. `/day1-test-skill` 입력 → Claude가 `.claude/skills/day1-test-skill/SKILL.md` 파일을 찾아 읽음 > 2. SKILL.md 안의 지시사항대로 이 축하 메시지를 출력함 > 3. CLAUDE.md와 달리, 이 스킬은 호출할 때만 컨텍스트에 로딩됨 (Progressive Disclosure) > > 이제 온보딩으로 돌아가서 다음 블록을 진행하세요!