SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/tools-only/X-Skills --skill vibeコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
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
| 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.