ソース情報
- リポジトリ
- tools-only/X-Skills
- ソースの最終更新活動
- 2026年2月9日 04:08
- 検出された 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 newコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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 | new |
| description | Create a new sprint directory with specs.md template |
| argument-hint | [goal description] |
You are bootstrapping a new sprint for the user.
Find the next sprint number:
# Get current highest sprint number
LAST=$(ls -d .claude/sprint/*/ 2>/dev/null | sort -V | tail -1 | grep -oE '[0-9]+' | tail -1)
if [ -z "$LAST" ]; then
NEXT=1
else
NEXT=$((LAST + 1))
fi
echo $NEXT
mkdir -p .claude/sprint/[NEXT]
Ask the user for sprint details. Present this as a structured question:
What would you like to build in this sprint?
Options to clarify:
Based on user input, create .claude/sprint/[NEXT]/specs.md:
# Sprint [NEXT] Specifications
## Goal
[User's goal description]
## Scope
[List of features/tasks]
## Testing
- QA: [required/optional/skip]
- UI Testing: [required/optional/skip]
- UI Testing Mode: [automated/manual]
## Notes
[Any additional context]
After creating the sprint, suggest:
Sprint [NEXT] created at .claude/sprint/[NEXT]/
Next steps:
1. Review and edit .claude/sprint/[NEXT]/specs.md if needed
2. Run /sprint to start the sprint workflow
3. The architect will analyze specs and create detailed specifications
Tip: For detailed specs, you can add:
- API endpoint details
- UI mockup descriptions
- Database schema changes
- Specific test scenarios
If the user provides a one-liner goal, create the sprint immediately:
Example: /sprint:new Add user authentication with OAuth
Creates:
# Sprint [N] Specifications
## Goal
Add user authentication with OAuth
## Scope
- To be analyzed by architect
## Testing
- QA: required
- UI Testing: required
- UI Testing Mode: automated
Offer templates for common sprint types:
# Sprint [N] Specifications
## Goal
[New feature description]
## Scope
- Backend API endpoints
- Frontend UI components
- Database migrations
- Tests
## Testing
- QA: required
- UI Testing: required
- UI Testing Mode: automated
# Sprint [N] Specifications
## Goal
Fix [bug description]
## Scope
- Root cause analysis
- Fix implementation
- Regression tests
## Testing
- QA: required
- UI Testing: optional
- UI Testing Mode: automated
# Sprint [N] Specifications
## Goal
Refactor [component/system]
## Scope
- Code restructuring
- No functional changes
- Update tests if needed
## Testing
- QA: required
- UI Testing: skip
Report to user: