在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用deprecate-cpan-module
星标4
分支0
更新时间2026年2月25日 00:59
deprecate cpan module
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
deprecate cpan module
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | deprecate-cpan-module |
| description | deprecate cpan module |
Help the user deprecate a CPAN module.
Deprecating a CPAN module requires two things:
x_deprecated: 1 to the distribution metadataReference: https://neilb.org/2015/01/17/deprecated-metadata.html
Check the project root to determine which build tool is being used:
dist.ini → Dist::Zillaminil.toml → MinillaMakefile.PL → ExtUtils::MakeMaker or Module::InstallBuild.PL → Module::Builddist.ini)[Deprecated]
minil.toml)[Metadata]
x_deprecated = 1
Makefile.PL)META_MERGE => {
'meta-spec' => { version => 2 },
x_deprecated => 1,
},
Build.PL)meta_merge => {
x_deprecated => 1,
},
Makefile.PL)add_metadata x_deprecated => 1;
=head1 NAME
Some::Module - (DEPRECATED) original description
If a replacement module exists:
=head1 DESCRIPTION
B<This module is deprecated.> Use L<Other::Module> instead.
If no replacement exists:
=head1 DESCRIPTION
B<This module is deprecated.> Do not use it in new code.
Commit the changes and release a new version to CPAN.
x_deprecated to the build tool configuration