一键导入
artifact
Create and manage artifact.json for task outputs. Use at the START of every task to define planned deliverables before beginning research.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create and manage artifact.json for task outputs. Use at the START of every task to define planned deliverables before beginning research.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Calculate Four Pillars (四柱) from birth date/time using lunar calendar conversion. Foundation skill for all BaZi analysis.
Create and manage artifact.json for task outputs. Use when creating code files, documentation, or any files that should be tracked as artifacts.
Provide career guidance and recommendations based on BaZi elemental strengths, Day Master traits, and current luck cycles.
Calculate and interpret 10-year luck cycles (大运) and annual fortune (流年) for timing insights and life trend predictions.
Analyze BaZi compatibility for romantic relationships (合婚). Examines elemental harmony, Day Master interaction, and long-term compatibility potential.
Extracts and analyzes website content to understand brand messaging, visual style, value propositions, and content themes for video script planning.
| name | artifact |
| description | Create and manage artifact.json for task outputs. Use at the START of every task to define planned deliverables before beginning research. |
Every task must have an artifact.json that declares all output files.
mkdir -p "tasks/${CLAUDE_SESSION_ID}/reports"
mkdir -p "tasks/${CLAUDE_SESSION_ID}/notes"
cat > "tasks/${CLAUDE_SESSION_ID}/artifact.json" << 'EOF'
{
"artifacts": []
}
EOF
Read the current file, append new entries, and write it back. Each entry needs:
| Field | Required | Description |
|---|---|---|
id | Yes | Unique identifier (e.g. research-report) |
path | Yes | File path relative to /bunny-agent |
mimeType | Yes | MIME type of the file |
description | No | Brief description of the content |
{
"artifacts": [
{
"id": "research-report",
"path": "tasks/${CLAUDE_SESSION_ID}/reports/report.md",
"mimeType": "text/markdown",
"description": "Main research report with findings and analysis"
},
{
"id": "source-notes",
"path": "tasks/${CLAUDE_SESSION_ID}/notes/sources.md",
"mimeType": "text/markdown",
"description": "Research sources and citations"
}
]
}
| Type | Extension |
|---|---|
text/markdown | .md |
text/plain | .txt |
text/html | .html |
text/csv | .csv |
application/json | .json |
application/pdf |
${CLAUDE_SESSION_ID} in paths — it auto-resolves in this fileartifact.json whenever you create a new output file