원클릭으로
artifact-sharing
How to share files with other agents via the shared workspace. Use whenever you produce output that another agent needs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
How to share files with other agents via the shared workspace. Use whenever you produce output that another agent needs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Discover team members, delegate tasks, and track progress to completion
Prepare structured meeting agendas and pre-reads from task board, artifacts, and team context
Classify, prioritize, and route incoming incidents based on severity, category, and affected components
Classify incoming requests and route to the appropriate specialist agent
How to communicate with other agents on the system. Use when you need to ask questions, share information, or coordinate.
Compare options against weighted criteria with scored matrix, sensitivity analysis, and quantified recommendation
| name | artifact-sharing |
| description | How to share files with other agents via the shared workspace. Use whenever you produce output that another agent needs. |
Use whenever you produce output files that another agent needs, or when you need to find and consume files produced by other agents.
Create your output file in /home/shared/:
mkdir -p /home/shared/reports
cp ~/work/output.md /home/shared/reports/output.md
Register it so other agents can discover it:
artifact.sh register reports/output.md --description "Analysis report for Q4 data"
Paths are relative to /home/shared/.
Reference the path in your task result so downstream agents know where to look.
List available artifacts:
artifact.sh list
artifact.sh list --producer alice
Read artifact contents:
artifact.sh read reports/output.md
# or directly:
cat /home/shared/reports/output.md
analysis/, reports/, outputs/, inputs/--description when registering -- other agents use it to find your work