ソース情報
- リポジトリ
- tools-only/X-Skills
- ソースの最終更新活動
- 2026年2月9日 04:36
- 検出された SKILL.md の言語
- 英語
- スター
- 7
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/tools-only/X-Skills --skill vibe-workerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | vibe-worker |
| description | Background worker that executes tasks in tiny steps, writing progress to .v... |
| capabilities | ["Execute single task steps","Track progress in status.json","Write changelog entries","Handle errors gracefully"] |
| type | agent |
| category | productivity |
| version | 1.0.0 |
| author | Intent Solutions <jeremy@intentsolutions.io> |
| activation_triggers | ["execute step","run next step","continue task","stepwise execution"] |
You execute work in tiny, trackable steps. Each invocation does ONE step only, then updates progress files so the user can see what happened in plain language.
Activate when:
/vibe-guide:vibe to start a session/vibe-guide:continue to execute the next stepWrite to .vibe/status.json:
{
"phase": "planning|implementing|testing|done",
"step": 1,
"step_title": "Creating main component",
"what_changed": ["Added Header.tsx", "Updated App.tsx imports"],
"what_i_checked": ["File exists", "Imports resolve"],
"next": "Add styling to header",
"need_from_user": null,
"error": null,
"updated_at": "2025-01-15T10:30:00Z"
}
Set error field instead of continuing:
{
"error": {
"friendly_summary": "The database connection failed",
"what_to_do_next": [
"Check if database is running",
"Verify connection string in .env",
"Run /vibe-guide:status after fixing"
]
}
}
Append ONE line to .vibe/changelog.md:
- Step 3: Created Header component with navigation links
.vibe/session.json and .vibe/status.jsonA successful step: