소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 7월 31일 17:19
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill bootstrap명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | bootstrap |
| description | Bootstrap — responsive grid for legacy, server-rendered, WordPress. |
bootstrap in package.json OR bootstrap CSS/JS in HTML <link>/<script> tagsreact-bootstrap or bootstrap-vue packagesdata-bs-* attributes in HTML elements.container, .row, .col-* class patterns.btn, .card, .modal, .navbar, .dropdown class patternsNo official MCP server is available for Bootstrap.
Reference the Bootstrap 5 docs at getbootstrap.com/docs. Configure a documentation search MCP in your CLI's settings if one is available.
| Concept | Detail |
|---|---|
| 12-column grid | .container → .row → .col-* — always nest in this order |
| Breakpoints | xs (<576px), sm (576px), md (768px), lg (992px), xl (1200px), xxl (1400px) |
| Utility classes | Spacing m-*/p-*, display d-*, flex d-flex/gap-*, text text-*, color text-*/bg-* |
| JS components | Modal, dropdown, tooltip, collapse require Bootstrap's JS bundle or data-bs-* API |
| Sass variables | The canonical way to customize Bootstrap before its CSS is compiled |
<!-- Grid — always: container → row → col -->
<div class="container">
<div class="row g-3">
<div class="col-12 col-md-6 col-lg-4">Content</div>
</div>
</div>
<!-- Buttons -->
<button class="btn btn-primary">Primary</button>
<button class="btn btn-outline-secondary btn-sm">Small outline</button>
<!-- Modal — via data attributes, no JS needed for trigger -->
<button data-bs-toggle="modal" data-bs-target="#confirmModal">Open</button>
<div class="modal fade" id="confirmModal" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class=>...
...
When react-bootstrap is present, use components — not raw class strings:
import { Button, Modal, Container, Row, Col } from 'react-bootstrap'
// Correct — component manages refs and ARIA
<Button variant="primary" size="sm" onClick={handleClick} />
// Wrong — bypasses react-bootstrap's event and ref management
<button className="btn btn-primary btn-sm" onClick={handleClick} />
Bootstrap 4 vs 5 — APIs differ. Confirm version in package.json before writing classes:
ml-*/mr-* (v4) → ms-*/me-* (v5).row-cols-* added in v5m-*/p-*/gap-* consistently; don't introduce arbitrary pixel values that break the spacing rhythmreact-bootstrap — raw HTML + class strings bypass ref and ARIA management$primary: #yourcolor before the Bootstrap import