소스 정보
- 저장소
- majiayu000/claude-skill-registry
- 최근 소스 활동
- 2026년 4월 20일 12:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 543
- 포크
- 85
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill agent-handoffs명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
LLM token logprobs and calibration. Per-decision confidence, ECE, Brier, reliability diagrams, low-confidence triage.
Analyze LLM token logprobs and calibration. Use for per-decision confidence, ECE, Brier scores, reliability diagrams, and low-confidence triage.
回顾最近 N 天的 Claude Code 使用记录——扫描原始会话数据,按主题分组汇总"我都做了什么",并从个人操作系统视角输出模式、风险与增删建议。当用户说 /recap、"看看我这几天做了什么"、"回顾一下我最近的会话"、"这两天我用 claude 干了啥"、"活动回顾" 时使用。
SOC 직업 분류 기준
SKILL.md 표시 중
| name | agent-handoffs |
| description | Agent parameter passing, memory files, and data handoffs between agents |
Agents are workflow-agnostic. They perform specific tasks regardless of which workflow invokes them.
Workflows pass parameters to agents to tell them:
All agents that work with memory files MUST accept these parameters:
interface AgentParameters {
workflow: string; // "create-module" | "add-operation" | "update-module"
moduleId: string; // "github-github" | "amazon-aws-s3"
inputFile?: string; // File to read from (optional if agent doesn't need input)
outputFile: string; // File to write to
}
CRITICAL: Always use absolute paths for .localmemory to avoid issues when working from different directories.
# Get project root (choose method based on context)
PROJECT_ROOT="$(git rev-parse --show-toplevel)"
# Standard pattern - ALWAYS use absolute paths
MEMORY_PATH="${PROJECT_ROOT}/.claude/.localmemory/${workflow}-${moduleId}"
# Examples (where PROJECT_ROOT is your project's absolute path):
# ${PROJECT_ROOT}/.claude/.localmemory/create-module-github-github/
# ${PROJECT_ROOT}/.claude/.localmemory/add-operation-github-github/
# ${PROJECT_ROOT}/.claude/.localmemory/update-module-amazon-aws-s3/
# Method 1: Using git (preferred if in git repo)
PROJECT_ROOT="$(git rev-parse --show-toplevel)"
# Method 2: Using script location (if you know the script depth)
PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
# Always construct absolute paths
MEMORY_PATH="${PROJECT_ROOT}/.claude/.localmemory/${workflow}-${moduleId}"
Agents should always receive or construct absolute paths. When constructing paths in agent responses, use the working directory from the environment.
# Agent receives parameters
WORKFLOW="create-module"
MODULE_ID="github-github"
INPUT_FILE="phase-01-discovery.json"
# Get project root and construct absolute paths
PROJECT_ROOT="$(git rev-parse --show-toplevel)"
MEMORY_PATH="${PROJECT_ROOT}/.claude/.localmemory/${WORKFLOW}-${MODULE_ID}"
INPUT_PATH="${MEMORY_PATH}/${INPUT_FILE}"
# Read data
PRODUCT_PACKAGE=$(jq -r '.productPackage' "${INPUT_PATH}")
MODULE_PACKAGE=$(jq -r '.modulePackage' "${INPUT_PATH}")
# Agent receives parameters
OUTPUT_FILE="phase-02-scaffolding.json"
# Get project root and construct absolute paths
PROJECT_ROOT="$(git rev-parse --show-toplevel)"
MEMORY_PATH="${PROJECT_ROOT}/.claude/.localmemory/${WORKFLOW}-${MODULE_ID}"
OUTPUT_PATH="${MEMORY_PATH}/${OUTPUT_FILE}"
# Ensure directory exists
mkdir -p "${MEMORY_PATH}"
# Write data
cat > "${OUTPUT_PATH}" <<EOF
{
"phase": 2,
"name": "Module Scaffolding",
"status": "completed",
"timestamp": "$(date -u +%Y-%m-%dT%H:%M:%SZ)",
...
}
EOF
## Responsibilities
- Create module structure for new modules
- Read from phase-01-discovery.json
- Write to phase-02-scaffolding.json
## Responsibilities
- Create module directory structure
- Read parameters from input file
- Validate generated structure
- Write results to output file
## Required Parameters
- workflow: Workflow type
- moduleId: Module identifier
- inputFile: File containing parameters
- outputFile: File to write results
## Input File Structure
Expected fields in input file:
- productPackage: Product package name
- modulePackage: Module package name
- serviceName: Service name
### Phase 2: Module Scaffolding
**Agent:** @module-scaffolder
**Invocation:**
```bash
@module-scaffolder
Parameters:
workflow: create-module
moduleId: github-github
inputFile: phase-01-discovery.json
outputFile: phase-02-scaffolding.json
### Multiple Workflows Using Same Agent
**Create Module Workflow:**
```bash
@api-architect
Parameters:
workflow: create-module
moduleId: github-github
inputFile: phase-01-discovery.json
outputFile: phase-03-api-spec.json
Add Operation Workflow:
@api-architect
Parameters:
workflow: add-operation
moduleId: github-github
inputFile: operation-spec.json
outputFile: updated-api-spec.json
Same agent, different parameters!
Workflows specify exact file names based on their phase structure:
Create Module:
phase-01-discovery.jsonphase-02-scaffolding.jsonphase-03-api-spec.jsonAdd Operation:
operation-definition.jsonapi-spec-update.jsonimplementation-plan.jsonUpdate Module:
operations-list.jsonupdate-plan.jsonAgents should be flexible about input structure:
// Agent reads what it needs
const productPackage = input.productPackage;
const modulePackage = input.modulePackage;
// If field doesn't exist, agent reports error
if (!productPackage) {
throw new Error("Required field 'productPackage' missing from input file");
}
Workflows are responsible for:
Agents are responsible for:
✅ Reusability: Same agent works across multiple workflows ✅ Testability: Agents can be tested independently with different parameters ✅ Maintainability: Agent changes don't affect workflow structure ✅ Flexibility: New workflows can use existing agents ✅ Clarity: Clear separation of concerns
# BAD
if [ "$WORKFLOW" == "create-module" ]; then
# Special logic for create
fi
Agents should not have workflow-specific logic. If needed, workflows should pass different parameters.
# BAD - Relative path
INPUT=".claude/.localmemory/create-module-${MODULE_ID}/phase-01-discovery.json"
# BAD - Hardcoded workflow
INPUT="${PROJECT_ROOT}/.claude/.localmemory/create-module-${MODULE_ID}/phase-01-discovery.json"
# GOOD - Absolute path with parameters
PROJECT_ROOT="$(git rev-parse --show-toplevel)"
INPUT="${PROJECT_ROOT}/.claude/.localmemory/${WORKFLOW}-${MODULE_ID}/${INPUT_FILE}"
Always construct absolute paths from parameters.
# BAD
echo '{"phase": 2, ...}'
Extract phase info from parameters or workflow context if needed.
**File:** `.claude/.localmemory/create-{module-id}/phase-02-scaffolding.json`
Read from: `.claude/.localmemory/create-{module-id}/phase-01-discovery.json`
**Input File:** Specified by workflow (e.g., phase-01-discovery.json)
**Output File:** Specified by workflow (e.g., phase-02-scaffolding.json)
**Example Paths:**
- Input: `.claude/.localmemory/{workflow}-{moduleId}/{inputFile}`
- Output: `.claude/.localmemory/{workflow}-{moduleId}/{outputFile}`