소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 8월 11일 18:18
- 감지된 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 setup-scan명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | setup-scan |
| description | Setup-assistant scan — commands, discovery table, skill/MCP checks. |
# Package files (infer stack)
ls package.json composer.json requirements.txt Gemfile go.mod Cargo.toml Dockerfile 2>/dev/null
# CI configs
ls .github/workflows/ Jenkinsfile .gitlab-ci.yml 2>/dev/null
# Git history and uncommitted state
git log --oneline -20
git status
# Installed version
source .dev-team-agents/scripts/lib/state.sh 2>/dev/null
state_get installed_version .dev-team-agents/user-data/state.json 2>/dev/null || echo "unknown"
Read: README.md, CLAUDE.md, AGENTS.md, .claude/ directory structure.
Summarize findings (files + stack + commit history + installed version) before asking questions.
Run when the project has UI or frontend work:
| Skill | Check | If missing |
|---|---|---|
frontend-design | test -d .claude/skills/frontend-design | Claude Code: /plugins → search frontend-design → install → re-run installer. Other CLIs: install the skill through that CLI's own mechanism, then re-run the installer |
web-design-guidelines | test -d .claude/skills/web-design-guidelines | npx skills add https://github.com/vercel-labs/agent-skills --skill web-design-guidelines → re-run installer |
Both frontend-developer and ui-ux-designer depend on these skills.
Run before generating any docs/ file:
# Root-level markdown (excluding already-read files)
find . -maxdepth 1 -name "*.md" ! -name "README.md" ! -name "CLAUDE.md" ! -name "AGENTS.md" | sort
# Documentation directories (up to 3 levels) — markdown and office formats
find . -maxdepth 3 \( -path "*/docs/*" -o -path "*/documentation/*" -o -path "*/doc/*" -o -path "*/wiki/*" \) \
\( -name "*.md" -o -name "*.txt" -o -name "*.rst" -o -name "*.pdf" \
-o -name "*.doc" -o -name "*.docx" -o -name "*.xls" -o -name "*.xlsx" \
-o -name "*.csv" -o -name "*.yaml" -o -name "*.yml" \) 2>/dev/null | sort
# AI/agent config directories — may contain project instructions or conventions
find . -maxdepth 2 \( -path "./.cursor/*" -o -path "./.agents/*" -o -path "./.github/*" \) \
-name "*.md" 2>/dev/null | sort
ls .cursor/rules/ .cursor/*.md .agents/*.md .github/CODEOWNERS .github/CONTRIBUTING.md \
.github/pull_request_template.md 2>/dev/null || true
# OpenAPI / Swagger specs
find . -maxdepth 3 \( -name "openapi.yaml" -o -name "openapi.json" -o -name "swagger.yaml" -o -name "swagger.json" \) 2>/dev/null | sort
# Linting / convention configs
find . -maxdepth 2 \( -name ".eslintrc*" -o -name ".prettierrc*" -o -name "phpcs.xml" -o -name -o -name -o -name -o -name \) 2>/dev/null |
| Found File Pattern | Feeds Into |
|---|---|
ARCHITECTURE.md, docs/architecture* | architecture.md → System Type, Layers, Module Map |
CONTRIBUTING.md, docs/contributing*, docs/development* | code-standards.md → Naming Conventions, Patterns |
docs/api*, API.md, openapi.yaml, swagger.yaml | architecture.md → API Contracts |
docs/stack*, docs/tech*, DEVELOPMENT.md, TECH*.md | tech-stack.md → Tech Stack table, Dev Setup |
.eslintrc*, .prettierrc*, phpcs.xml, pyproject.toml, etc. | code-standards.md → Detected Config |
CHANGELOG.md, docs/changelog* | project.md → Active Areas |
docs/design*, DESIGN*.md | design/design-system.md → UI conventions |
.cursor/rules/*, .cursor/*.md | code-standards.md → Cursor AI conventions |
.agents/*.md | project.md → Agent overrides in effect |
.github/CODEOWNERS, .github/CONTRIBUTING.md, .github/pull_request_template.md | code-standards.md → Review process, PR standards |
docs/infra*, docs/devops*, docs/deploy*, *.tf, docker-compose* | docs/devops/ → Infrastructure and deployment docs |
docs/test*, , , , |
Content is synthesized (not duplicated) into the target doc. Use <!-- TODO: <agent> to fill --> only for sections with no data yet.
| Tracker | MCP | What's needed |
|---|---|---|
| GitHub Projects | github | Personal access token (read:project scope) |
| GitLab Issues | gitlab | Personal access token (read_api scope) |
| Jira | atlassian | API token + workspace URL |
| Linear | linear | API key (read-only) |
| ClickUp | clickup | Personal API token |
| Others | none required | Agents read from user-provided markdown exports |
Supported trackers: GitHub Projects, GitLab Issues, Jira, Linear, ClickUp, Trello, Asana, Monday.com, Notion, Azure DevOps Boards, Shortcut.
Configure tokens in the active CLI's MCP settings — Claude Code: ~/.claude/settings.json or /mcp; opencode: the mcp block of opencode.json; Codex CLI: its own MCP config. Never store credentials in project files. Agents read tasks but only write with explicit user consent.
docs/qa*jest.config*vitest.config*playwright.config*docs/tests/ → Test strategy and configuration |