Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill vibe명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
SOC 직업 분류 기준
SKILL.md 표시 중
| name | vibe |
| description | Start a new vibe session with a goal |
| argument-hint | <goal> |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep |
Start a new guided session with a goal. Progress is shown in plain language, hiding all technical details like diffs and logs.
/vibe-guide:vibe <goal>
Provide a clear description of what you want to build or fix.
/vibe-guide:vibe Build a WNBA stats table page
/vibe-guide:vibe Add dark mode toggle to settings
/vibe-guide:vibe Fix the login button not working
If .vibe/ doesn't exist, create it:
mkdir -p .vibe
If .gitignore exists in project root, append .vibe/ if not already present.
Create .vibe/session.json:
{
"goal": "<user's goal>",
"started_at": "<ISO-8601 timestamp>",
"learning_mode": false,
"show_details": false,
"stop": false
}
Create .vibe/status.json:
{
"phase": "planning",
"step": 0,
"step_title": "Understanding the goal",
"what_changed": [],
"what_i_checked": [],
"next": "Analyze project structure",
"need_from_user": null,
"error": null,
"updated_at": "<ISO-8601 timestamp>"
}
Create .vibe/changelog.md:
# Vibe Session Changelog
Goal: <user's goal>
Started: <human-readable date>
## Progress
Invoke vibe-worker agent to execute the first step.
Invoke vibe-explainer agent to present results.
If session.learning_mode is true, invoke vibe-explorer agent.
The explainer presents a friendly summary:
1) Where we are
Starting: [goal description]
2) What changed
- Set up session tracking
- Analyzed project structure
3) What I checked
- Project files exist
4) What's next
[First implementation step]
5) Do you need to do anything?
No, nothing needed right now.