スキル一覧に戻る
claudeaceae

artifact

by claudeaceae

Bootstrap specification for giving Claude a persistent body, memory, and agency on a Mac

7🍴 2📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


Person Artifact Storage

Add images, documents, or other non-text files to a person's artifacts folder.

Process

  1. Parse the input: Extract person name and file path

    • /artifact lucy ~/Downloads/chess-game.png → name: "lucy", file: "~/Downloads/chess-game.png"
    • /artifact e ~/Desktop/project-notes.pdf → name: "e", file: "~/Desktop/project-notes.pdf"
  2. Verify person exists:

    ls ~/.claude-mind/memory/people/{name}/
    

    If not, ask whether to create them first.

  3. Ensure artifacts directory exists:

    mkdir -p ~/.claude-mind/memory/people/{name}/artifacts
    
  4. Copy the file:

    cp "{source_path}" ~/.claude-mind/memory/people/{name}/artifacts/
    

    Preserve the original filename unless there's a conflict.

  5. Optionally add context note: Ask if the user wants to add a note about this artifact to the profile

    • What is this file?
    • Why is it significant?
    • When was it from?
  6. Confirm: Report success and the artifact's new location

Guidelines

  • Preserve filenames: Keep original names when possible
  • Handle conflicts: If filename exists, ask before overwriting or suggest renaming
  • Add context: A file without context loses meaning over time
  • Supported types: Images, PDFs, documents, screenshots - anything meaningful

Examples

Simple storage:

/artifact cal ~/Downloads/system-diagram.png

→ Copies to memory/people/cal/artifacts/system-diagram.png

With context:

/artifact e ~/Pictures/beach-sunset.jpg

→ Copies file, then asks "Want to add a note about this photo?"

Natural trigger:

"Save this screenshot to Dawn's folder"

→ Copies screenshot, prompts for context

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です