Agent skill
build-system
프로젝트 빌드 시스템 자동 감지 및 실행 스킬
Install this agent skill to your Project
npx add-skill https://github.com/sangrokjung/claude-forge/tree/main/skills/build-system
SKILL.md
Build System Skill
개요
프로젝트의 빌드 시스템을 자동으로 감지하고 적절한 빌드/테스트 명령어를 실행합니다.
지원 빌드 시스템
| 빌드 시스템 | 감지 파일 | 빌드 명령어 | 테스트 명령어 |
|---|---|---|---|
| npm | package.json |
npm run build |
npm test |
| yarn | yarn.lock |
yarn build |
yarn test |
| pnpm | pnpm-lock.yaml |
pnpm build |
pnpm test |
| Python (pip) | requirements.txt |
pip install -r requirements.txt |
pytest |
| Python (poetry) | pyproject.toml |
poetry install |
poetry run pytest |
| Gradle | build.gradle |
./gradlew build |
./gradlew test |
| Maven | pom.xml |
mvn package |
mvn test |
| Cargo | Cargo.toml |
cargo build |
cargo test |
| Go | go.mod |
go build ./... |
go test ./... |
| Make | Makefile |
make |
make test |
사용법
프로젝트 루트에서 빌드 시스템을 자동 감지하고 실행합니다.
빌드
# 자동 감지 후 빌드
/build
# 특정 명령어로 빌드
/build --cmd="npm run build:prod"
테스트
# 자동 감지 후 테스트
/test
# 특정 테스트만 실행
/test --filter="unit"
감지 우선순위
package-lock.json→ npmyarn.lock→ yarnpnpm-lock.yaml→ pnpmpyproject.toml→ poetryrequirements.txt→ pipCargo.toml→ cargogo.mod→ gobuild.gradle→ gradlepom.xml→ mavenMakefile→ make
커스터마이징
프로젝트별로 .claude/config.json에서 빌드 명령어를 오버라이드할 수 있습니다:
{
"build": {
"command": "npm run build:custom",
"test_command": "npm run test:ci"
}
}
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
security-pipeline
보안 파이프라인 - CWE Top 25 + STRIDE 자동 검증
cc-dev-agent
Claude Code 개발 워크플로우 최적화. Context Engineering, Sub-agents, TDD, 개발 후 검증 워크플로우 제공. 트리거: CC 프로젝트 시작, CLAUDE.md/spec.md 작성, /handoff /verify /commit-push-pr, sub-agent/Explore, Agent Teams 병렬 개발 요청 시.
session-wrap
세션 종료 전 자동 정리 스킬. 4개 병렬 subagent가 문서 업데이트, 반복 패턴, 학습 포인트, 후속 작업을 동시 탐지하고, 1개 검증 subagent가 중복 제거 후 사용자에게 선택지를 제시한다. 트리거: /session-wrap, 세션 마무리, 세션 정리, 작업 마무리
verification-engine
통합 검증 엔진 - 서브에이전트 기반 fresh-context 검증 루프 (v6)
using-superpowers
Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions
continuous-learning-v2
Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents.
Didn't find tool you were looking for?