Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill new명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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: