Skip to main content

archive-src

Use when the user wants a minimal source-only archive for upload or checkpoint. Creates a tar.gz with just src/ and tests/ directories.

インストールへ移動

ソース情報

リポジトリ
tomevault-io/skills-registry
ソースの最終更新活動
2026年4月28日 22:53
検出された SKILL.md の言語
英語
スター
0
フォーク
0

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

ファイルエクスプローラー
2 ファイル

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
archive-src
description
Use when the user wants a minimal source-only archive for upload or checkpoint. Creates a tar.gz with just src/ and tests/ directories.
metadata
{"author":"ahrav"}
# Archive Source + Tests Package only `src/` and `tests/` into a compact `.tar.gz` archive. ## What's Included - `src/**` - All source code - `tests/**` - All test files (integration, property, smoke, simulation, diagnostic, corpus) - `Cargo.toml` - Project manifest (needed for context) ## What's Excluded Everything else: benches, fuzz, docs, config files, lock file, CI, `.codex/`, `.claude/`, `.github/`, binaries. ## Workflow Run from the project root: ```bash TIMESTAMP=$(date +%Y%m%d-%H%M%S) ARCHIVE="scanner-rs-src-${TIMESTAMP}.tar.gz" git ls-files -z -- 'src/' 'tests/' 'Cargo.toml' \ | grep -zZv -e '\.pack$' -e '\.bin$' \ | tar czf "${ARCHIVE}" --null -T - echo "Created ${ARCHIVE} ($(du -h "${ARCHIVE}" | cut -f1))" ``` Report the archive name and size to the user when done. --- > Converted and distributed by [TomeVault](https://tomevault.io/claim/ahrav) — claim your Tome and manage your conversions. <!-- tomevault:4.0:skill_md:2026-04-14 -->
GitHubで見る