소스 정보
- 저장소
- Lord1Egypt/ai-skillforge
- 최근 소스 활동
- 2026년 6월 5일 00:28
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Lord1Egypt/ai-skillforge --skill tool-description-teammatetool명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Implementing WCAG accessibility guidelines, semantic HTML5, and screen reader ARIA roles.
How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user mentions Adaptyv, Foundry API, protein binding assays, protein screening experiments, BLI/SPR assays, thermostability assays, or wants to submit protein sequences for experimental characterization. Also trigger when code imports `adaptyv`, `adaptyv_sdk`, or `FoundryClient`, or references `foundry-api-public.adaptyvbio.com`.
This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search. Use when working with temporal data, sequential patterns, or time-indexed observations requiring specialized algorithms beyond standard ML approaches. Particularly suited for univariate and multivariate time series analysis with scikit-learn compatible APIs.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | Tool Description: TeammateTool |
| description | Tool for managing teams and coordinating teammates in a swarm |
| ccVersion | 2.1.88 |
| allowed-tools | Read Write Edit Bash |
| license | BSD-3-Clause license |
| metadata | {"skill-author":"Lord1Egypt"} |
Use this tool proactively whenever:
When in doubt about whether a task warrants a team, prefer spawning a team.
When spawning teammates via the Agent tool, choose the subagent_type based on what tools the agent needs for its task. Each agent type has a different set of available tools — match the agent to the work:
.claude/agents/ may have their own tool restrictions. Check their descriptions to understand what they can and cannot do.Always review the agent type descriptions and their available tools listed in the Agent tool prompt before selecting a subagent_type for a teammate.
Create a new team to coordinate multiple agents working on a project. Teams have a 1:1 correspondence with task lists (Team = TaskList).
{
"team_name": "my-project",
"description": "Working on feature X"
}
This creates:
~/.claude/teams/{team-name}/config.json~/.claude/tasks/{team-name}/team_name and name parameters to create teammates that join the teamowner to give tasks to idle teammatesmessage: {type: "shutdown_request"}.Tasks are assigned using TaskUpdate with the owner parameter. Any agent can set or change task ownership via TaskUpdate.
IMPORTANT: Messages from teammates are automatically delivered to you. You do NOT need to manually check your inbox.
When you spawn teammates:
Messages will be delivered automatically.
When reporting on teammate messages, you do NOT need to quote the original message—it's already rendered to the user.
Teammates go idle after every turn—this is completely normal and expected. A teammate going idle immediately after sending you a message does NOT mean they are done or unavailable. Idle simply means they are waiting for input.
Teammates can read the team config file to discover other team members:
~/.claude/teams/{team-name}/config.jsonThe config file contains a members array with each teammate's:
name: Human-readable name (always use this for messaging and task assignment)agentId: Unique identifier (for reference only - do not use for communication)agentType: Role/type of the agentIMPORTANT: Always refer to teammates by their NAME (e.g., "team-lead", "researcher", "tester"). Names are used for:
to when sending messagesExample of reading team config:
Use the Read tool to read ~/.claude/teams/{team-name}/config.json
Teams share a task list that all teammates can access at ~/.claude/tasks/{team-name}/.
Teammates should:
owner to your name). Prefer tasks in ID order (lowest ID first) when multiple tasks are available, as earlier tasks often set up context for later onesTaskCreate when identifying additional workTaskUpdate when done, then check TaskList for next workIMPORTANT notes for communication with your team:
{"type":"idle",...} or {"type":"task_completed",...}. Just communicate in plain text when you need to message teammates.