Skills Plugins MCP Prompt Model 博客 我的中心

sexp

How the Zig S-expression engine and typed KiCad models work, how they are exposed to Python (pyzig_sexp), and the invariants around parsing, formatting, and freeing. Use when working with KiCad file parsing, S-expression generation, or layout sync.

DeepseekModel キュレーション済みスキル 品質 優秀 · 90 v1.0.0

取得

https://deepseekmodel.com/api/download.php?id=atopile-atopile-claude-skills-sexp-skill-md&format=skill
ダウンロード .skill 標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能
.skill ファイルの system_prompt フィールドの実際の内容。
name sexp description How the Zig S-expression engine and typed KiCad models work, how they are exposed to Python (pyzig_sexp), and the invariants around parsing, formatting, and freeing. Use when working with KiCad file parsing, S-expression generation, or layout sync. Sexp Module The sexp subsystem provides: a fast S-expression tokenizer/parser/pretty-printer in Zig, and typed Zig models for KiCad formats (PCB, footprint, netlist, symbol, schematic, fp_lib_table), exposed to Python via the pyzig_sexp extension module. Source-of-truth docs and code: src/faebryk/core/zig/README.md (high-level overview) src/faebryk/core/zig/src/sexp/* (tokenizer/AST/structure) src/faebryk/core/zig/src/python/sexp/sexp_py.zig (Python API + critical memory rules) Quick Start from pathlib import Path from faebryk.libs.kicad.fileformats import kicad pcb = kicad.loads(kicad.pcb.PcbFile, Path( "board.kicad_pcb" )) _text = kicad.dumps(pcb) Relevant Files Zig core: src/faebryk/core/zig/src/sexp/tokenizer.zig (tokenization + line/column tracking) src/faebryk/core/zig/src/sexp/ast.zig (SExp tree + KiCad pretty formatting) src/faebryk/core/zig/src/sexp/structure.zig (decode/encode + error context) src/faebryk/core/zig/src/sexp/kicad/* (typed KiCad models) Python extension entrypoint: src/faebryk/core/zig/src/python/sexp/init.zig (exports PyInit_pyzig_sexp ) src/faebryk/core/zig/src/python/sexp/sexp_py.zig (module + type binding generation) Generated Python stubs (what users “see”): src/faebryk/core/zig/gen/sexp/*.pyi Convenience wrapper used throughout the codebase: src/faebryk/libs/kicad/fileformats.py (namespaces modules + caching + loads/dumps ) Dependants (Call Sites) src/faebryk/libs/kicad/fileformats.py (primary integration layer) KiCad exporters and layout sync: src/faebryk/exporters/pcb/kicad/* src/faebryk/exporters/pcb/layout/layout_sync.py KiCad plugin workflow: src/atopile/kicad_plugin/* How to Work With / Develop / Test Core Concepts Two-level model : raw SExp parsing/formatting ( tokenizer.zig , ast.zig ) typed KiCad decoding/encoding ( structure.zig + sexp/kicad/*.zig ) Python API shape : the extension exposes per-format modules (e.g. pcb , netlist ) with: module-level loads(data: str) -> File module-level dumps(file: File) -> str File.free(...) for releasing Zig-owned allocations Convenience wrapper : faebryk.libs.kicad.fileformats.kicad wraps these modules and provides kicad.loads(...) / kicad.dumps(...) . Development Workflow Modify Zig: parsing/formatting: src/faebryk/core/zig/src/sexp/* Python exposure: src/faebryk/core/zig/src/python/sexp/sexp_py.zig Rebuild: ato dev compile (imports faebryk.core.zig ) If you changed the API: verify stubs under src/faebryk/core/zig/gen/sexp/*.pyi update accordingly adjust src/faebryk/libs/kicad/fileformats.py if needed Testing Best practical test is round-trip: load a known .kicad_pcb / .kicad_sch , dump it, and ensure KiCad accepts it (formatting-sensitive). Zig unit tests (where present): zig test src/faebryk/core/zig/src/sexp/ast.zig zig test src/faebryk/core/zig/src/sexp/structure.zig Best Practices Prefer faebryk.libs.kicad.fileformats.kicad unless you explicitly need the raw module API. Be mindful of shared-object caching in kicad.loads(...) : path-based loads are cached and returned by reference (mutations are shared). Memory & Lifetime Invariants (critical) The Python bindings duplicate the input S-expression string into a persistent allocator because parsed structs contain pointers into the input buffer. Implications: Repeated loads(...) of large files can grow memory if you never call free(...) on the returned *File . The convenience wrapper currently caches loaded objects by path; do not free(...) cached objects unless you also invalidate the cache.
このスキルを起動するキーワード。クリックでコピーできます。

このスキルにはトリガーワードがありません。

ダウンロードした .skill に含まれるフィールド。
フィールド 説明
formatフォーマット識別子(skill/v1)
skill_idスキル固有 ID
nameスキル名
versionバージョン
description説明
categoryカテゴリ(配列)
trigger_wordsトリガーワード
tagsタグ
sourceソース
source_urlソース URL(本ページ)
exported_atエクスポート日時(ダウンロード毎)
system_promptシステムプロンプト本文
model_configモデル設定:provider / model / temperature / max_tokens / top_p
examplesサンプル
install_guide各プラットフォームの導入説明(Coze / Dify / Claude / カスタム)
同じスキルを各プラットフォーム形式で出力できます。
.skill 標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能 ダウンロード
.skillpro 拡張形式。scripts / tools / dependencies / hooks を含む ダウンロード
.json 純粋な JSON 出力。system_prompt とモデル設定のみ ダウンロード
Coze frontmatter 付き Markdown。Coze へのインポート用 ダウンロード
Dify Dify DSL。アプリ作成後にそのままインポート ダウンロード

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。