ソース情報
- リポジトリ
- 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 cleanコマンドは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 | clean |
| description | Remove old sprint directories with safety checks and archiving options |
| argument-hint | [--all | --keep-latest | --keep N] |
You are cleaning up old sprint directories.
Sprint directories contain valuable artifacts:
The user is responsible for:
ls -la .claude/sprint/
Show the user:
Ask the user which sprints to clean:
Options:
Before deletion, verify:
# Check for uncommitted changes
git status --porcelain .claude/sprint/
If there are uncommitted changes, WARN the user:
WARNING: You have uncommitted changes in sprint directories.
Uncommitted files:
[list files]
Recommendation: Commit your changes before cleaning.
git add .claude/
git commit -m "Checkpoint before cleanup"
Continue anyway? (y/N)
Based on user choice:
Clean all:
rm -rf .claude/sprint/*/
Keep latest:
LATEST=$(ls -d .claude/sprint/*/ | sort -V | tail -1)
find .claude/sprint/ -mindepth 1 -maxdepth 1 -type d ! -path "$LATEST" -exec rm -rf {} +
Keep N latest:
ls -d .claude/sprint/*/ | sort -V | head -n -[N] | xargs rm -rf
Select specific:
rm -rf .claude/sprint/[selected]/
After cleanup:
Cleanup complete.
Removed:
- .claude/sprint/1/
- .claude/sprint/2/
- ...
Remaining:
- .claude/sprint/[N]/
Tip: Create a checkpoint now:
git add -A && git commit -m "Cleanup old iterations"
For quick cleanup without prompts:
/sprint:clean --all - Remove all sprints
/sprint:clean --keep-latest - Keep only the latest
/sprint:clean --keep 3 - Keep the 3 most recent
Instead of deleting, offer to archive:
# Archive sprints before deletion
tar -czf .claude/sprint-archive-$(date +%Y%m%d).tar.gz .claude/sprint/
Then proceed with deletion.
Always remind the user:
REMINDER: You are responsible for checkpointing your work.
Before cleaning, consider:
1. git add .claude/ && git commit -m "Checkpoint"
2. Push to remote if you want off-machine backup
3. Keep sprint specs if you might need to reference them
Sprint artifacts are valuable documentation of:
- Architectural decisions
- API contracts
- Implementation reports
- Test results