eda-system-packager
Package the agent+skill infrastructure into a standalone, portable repository-ready bundle with skill-local tool mirrors.
EDA System Packager
When to use
Use this skill when you need to:
- export current
AGENTS.md + skills + core KB/tool docsas a standalone package, - mirror dependent scripts into each skill's
references/scriptsfor portability, - prepare a repository-ready folder for separate GitHub publication.
Run
python3 scripts/common/build_agent_skill_bundle.py --out-dir exports/eda_agent_skill_system
Output
exports/eda_agent_skill_system/- standalone
AGENTS.md skills/withskill_local_toolsmapping and mirrored scripts- core
docs/knowledge_baseanddocs/tool_registry - selected
scripts/common
- standalone
Publish
cd exports/eda_agent_skill_system
git init
git add .
git commit -m "init standalone agent+skill system"
git branch -M main
git remote add origin <repo_url>
git push -u origin main