今天想和大家分享我最常用的四个AI服务:OpenRouter、Claude、腾讯元宝和DeepSeek。这些都是我亲测好用的工具,希望能给你的工作和生活带来一些便利~
OpenRouter 是一个AI模型聚合平台,最大的优势是能通过一个统一的API接口调用多种主流AI模型。我会用他来完成大部分任务。
我已基本用Claude Code替代了其他编程助手(比如Cursor),它帮我节省了大量时间。
生活上的问题以及各种网页对话场景就选它
当对生成的内容要求不高,追求性价比就选它,比如我的博客文章智能摘要
md
(注:这只是我的个人使用体验,不同人因需求和使用习惯可能感受不同。所有产品信息请以官方最新说明为准。)
# Git Commit Message Generation Prompt
Generate a precise Conventional Commits format message based on the git diff.
## Format
`<type>[(scope)]: <description>`
## Types
- `feat`: new feature
- `fix`: bug fix
- `docs`: documentation
- `style`: formatting only
- `refactor`: code restructuring
- `perf`: performance improvement
- `test`: testing changes
- `chore`: build/tooling
## Rules
- Concise, clear description of the main change
- Under 50 chars, lowercase start, no period
- Focus on WHAT changed, not implementation details
- Use imperative mood (add, fix, update)
## Input
**Diff:**
{diff}
**Language:** {language}
**IMPORTANT:** Generate the commit message in {language} language only.
**Output format:** Just the commit message, nothing else.