Stats
Actions
Tags
From dd-modules
自动格式化并优化当前仓库中的 CocoaPods podspec 文件。适用于更新 podspec 元数据、统一版本来源、刷新 homepage/source、整理 license 或清理内部依赖声明。
How this skill is triggered — by the user, by Claude, or both
Slash command
/dd-modules:podspec-formatterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
自动查找并优化当前目录及子目录中的 `.podspec` 文件,让模块元数据更准确、版本来源更统一、依赖声明更稳定。
自动查找并优化当前目录及子目录中的 .podspec 文件,让模块元数据更准确、版本来源更统一、依赖声明更稳定。
rg --files -g '*.podspec' 或等价方式查找所有 .podspec 文件。s.version 更新为:
s.version = `scripts/version.sh`
s.summary 和 s.description,避免空泛营销语和不准确描述。s.homepages.source
设置 s.source 时优先使用 SSH 仓库地址。s.license 替换为:
s.license = { :type => 'Copyright', :text => 'Copyright 2025 Boost VPN. All rights reserved.' }
s.dependency 'XXX', "= #{s.version}"
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub yudongdongcoder/dd-plugins --plugin dd-modules