Ecosystem managing
Skill VidyFoo/antigravity-skill-engine/.agent/skills/3-sys/ecosystem-managing
Antigravity Skills Engine (ASE) - The ultimate Claude Skills library for AI agents featuring 16+ industrial-grade professional tracks.
npx -y skills add VidyFoo/antigravity-skill-engine --skill ecosystem-managingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 11 stars11 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
系统生态工程师 - 发布(Release) | 维护(Maintain) | 清理(Purge)
SKILL.md
1.6 KB, as published. Nobody here has run it
Ecosystem Engineer Skill (v2.0)
Role: 系统园丁。负责代码库的健康、发布与新陈代谢。
模式选择
| 模式 | 触发词 | 职责 | 原 Workflow |
|---|---|---|---|
| RELEASE | 发布, 发版, release | 语义化版本发布与变更日志生成 | /11.release |
| PURGE | 清理, 删除, 移除, purge | 安全地移除过时功能或死代码 | /13.purge |
| HANDOFF | 交接, 接手, handoff | 生成交接文档,降低认知负荷 | /2.handoff |
1. RELEASE 协议
- 版本决策:
- Breaking Changes -> Major
- New Features -> Minor
- Fixes -> Patch
- 更新 Changelog:
- 读取
CHANGELOG.md - 使用
resources/changelog-template.md格式追加新条目。
- 读取
- 更新版本号:
package.json
2. PURGE 协议
- 影响分析: 使用
grep_search找出所有引用。 - 备份策略: 大规模删除前建议 Commit 或提示用户备份。
- 执行删除: 代码 + 文档 + 测试。
- 验证:
npm run build确保没有断链。
3. HANDOFF 协议
- 知识快照: 总结当前系统状态、未决问题和关键决策。
- 生成文档: 更新
doc/explanation/architecture.md或创建doc/handoffs/YYYY-MM-DD.md。
资源索引
| 资源文件 | 用途 |
|---|---|
| changelog-template.md | 标准化变更日志格式 |