Loading...
Loading...
Found 386 Skills
自动生成全面的测试套件,包括单元测试、集成测试和E2E测试,支持Jest、Vitest、pytest、xUnit等。
使用SMTP发送带附件的邮件,支持HTML模板、多收件人和文件附件。基于nodemailer。
Mechanically replace static dependency call sites with wrapper or built-in abstraction calls across a bounded scope (file, project, or namespace). Performs codemod-style bulk replacement of DateTime.UtcNow to TimeProvider.GetUtcNow(), File.ReadAllText to IFileSystem, and similar transformations. Adds constructor injection parameters and updates DI registration. USE FOR: replace DateTime.UtcNow with TimeProvider, replace DateTime.Now with TimeProvider, migrate static calls to wrapper, bulk replace File.* with IFileSystem, codemod static to injectable, add constructor injection for time provider, mechanical migration of statics, refactor DateTime to TimeProvider, swap static for injected dependency, convert static calls to use abstraction, replace statics in a class, migrate one file to TimeProvider, scoped migration, update call sites. DO NOT USE FOR: detecting statics (use detect-static-dependencies), generating wrappers (use generate-testability-wrappers), migrating between test frameworks.
智能代码重构,提供设计模式建议、代码异味检测和保持行为不变的安全转换策略。
复制和粘贴文本/文件到剪贴板,支持历史记录和格式转换。
Converts long inline XAML bindings to Property Element Syntax for better readability. Use when XAML binding expressions become too long or complex.
计算文件哈希值(MD5、SHA1、SHA256、SHA512)用于完整性验证和比较。
编码和解码Base64、URL安全Base64和十六进制字符串,支持文件处理。
处理图片 - 调整大小、转换格式、添加水印、生成缩略图。基于Pillow。
比较文件和文本,支持统一diff、并排视图和补丁生成。
Organize DI registrations using IServiceCollection extension methods. Group related services into composable Add* methods for clean Program.cs and reusable configuration in tests.
解析、验证和解释cron表达式,计算下次运行时间。