AgentSkillsCN

cairo-packages-crates

当请求涉及在 Cairo 中处理使用后移动错误、复制值,或深入理解所有权语义时,讲解 Cairo 的所有权机制、移动操作、Copy/Drop/Destruct 特质,以及基于作用域的销毁机制。

SKILL.md
--- frontmatter
name: cairo-packages-crates
description: Explain Cairo packages and crates, Scarb project layout, and crate roots; use when a request involves creating projects or understanding package/crate structure in Cairo.

Cairo Packages and Crates

Overview

Explain how Scarb organizes Cairo packages and crates and where crate roots live.

Quick Use

  • Read references/packages-crates.md before answering.
  • Call out the default src/lib.cairo crate root.
  • Mention that a package can contain multiple crates defined in Scarb.toml.

Response Checklist

  • Distinguish package (project) from crate (compilation unit).
  • Point to Scarb.toml as the package manifest.
  • Identify the crate root file used by the compiler.

Example Requests

  • "What is the difference between a package and a crate in Cairo?"
  • "Where is the crate root for a new Scarb project?"
  • "How do I add another crate to a package?"

Cairo by Example