Improve zhayujie/chatgpt-on-wechat Trust Score
Personalized improvement plan. Updated 2026-03-19.
Current Score
After Improvements
Improvement Actions
Ranked by point impact. Each action includes a copy-paste template.
1. Add SECURITY.md
A SECURITY.md file tells users how to report vulnerabilities. This is a strong trust signal.
Copy template
# Security Policy ## Supported Versions | Version | Supported | | ------- | --------- | | latest | ✅ | ## Reporting a Vulnerability Please report security vulnerabilities to [email protected] We will respond within 48 hours and provide a fix timeline. Do NOT open public issues for security vulnerabilities.
2. Add security scanning CI
Automated security scanning in CI catches vulnerabilities before they reach users.
Copy template
# .github/workflows/security.yml
name: Security Scan
on:
push:
branches: [main]
pull_request:
schedule:
- cron: '0 6 * * 1'
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
severity: 'HIGH,CRITICAL'3. Update dependencies
Outdated dependencies lower your activity score. Run dependency updates and commit.
Copy template
# For Python: pip install --upgrade -r requirements.txt pip freeze > requirements.txt # For Node: npx npm-check-updates -u npm install
4. Set up automated dependency updates
Dependabot or Renovate keeps dependencies fresh automatically.
Copy template
# .github/dependabot.yml
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 55. Add comprehensive README sections
READMEs with installation, usage examples, and API docs score higher.
Copy template
## Installation ```bash pip install zhayujie-chatgpt-on-wechat ``` ## Quick Start ```python from zhayujie_chatgpt_on_wechat import Client client = Client() result = client.run() print(result) ``` ## API Reference See [docs/api.md](docs/api.md) for full API documentation. ## Contributing See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
6. Add to package registries
Publishing to PyPI/npm increases discoverability and downloads.
Copy template
# PyPI: python -m build twine upload dist/* # npm: npm publish
7. Add CONTRIBUTING.md
A contributing guide encourages community participation and signals project maturity.
Copy template
# Contributing to zhayujie/chatgpt-on-wechat ## Getting Started 1. Fork the repository 2. Create a feature branch: `git checkout -b feature/my-feature` 3. Commit changes: `git commit -am 'Add feature'` 4. Push: `git push origin feature/my-feature` 5. Open a Pull Request ## Code Style - Follow existing code patterns - Add tests for new features - Update documentation as needed ## Bug Reports Use GitHub Issues with a clear description and reproduction steps.
8. Add .well-known/agent.json
The agent.json file makes your tool discoverable by AI agents and registries.
Copy template
{
"name": "zhayujie/chatgpt-on-wechat",
"description": "CowAgent\u662f\u57fa\u4e8e\u5927\u6a21\u578b\u7684\u8d85\u7ea7AI\u52a9\u7406\uff0c\u80fd\u4e3b\u52a8\u601d\u8003\u548c\u4efb\u52a1\u89c4\u5212\u3001\u8bbf\u95ee\u64cd\u4f5c\u7cfb\u7edf\u548c\u5916\u90e8\u8d44\u6e90\u3001\u521b\u9020\u548c\u6267\u884cSkills\u3001\u62e5\u6709\u957f\u671f\u8bb0\u5fc6\u5e76\u4e0d\u65ad\u6210\u957f\u3002\u540c\u65f6\u652f\u6301\u98de\u4e66\u3001\u9489\u9489\u3001\u4f01\u4e1a\u5fae\u4fe1\u5e94\u7528\u3001\u5fae\u4fe1\u516c\u4f17\u53f7\u3001\u7f51\u9875\u7b49\u63a5\u5165\uff0c\u53ef\u9009\u62e9OpenAI/Claude/Gemini/DeepSeek/ Qwen/GLM/Kimi/LinkAI\uff0c\u80fd\u5904\u7406\u6587\u672c\u3001\u8bed\u97f3\u3001\u56fe\u7247\u548c\u6587\u4ef6\uff0c\u53ef\u5feb\u901f\u642d\u5efa\u4e2a\u4ebaAI\u52a9\u624b\u548c\u4f01\u4e1a\u6570\u5b57\u5458\u5de5\u3002",
"version": "1.0.0",
"capabilities": [],
"trust_score": "https://nerq.ai/is-zhayujie-chatgpt-on-wechat-safe"
}9. Add Nerq Trust Badge
The trust badge shows visitors your security rating at a glance.
Copy template
[](https://nerq.ai/is-zhayujie-chatgpt-on-wechat-safe)
Competitors in communication
| Name | Trust | Grade | Stars | |
|---|---|---|---|---|
| nanoclaw | 91 | A+ | 7.7k | improve |
| nanoclaw | 88 | A | 6.9k | improve |
| AgentVibes | 88 | A | 109 | improve |
| AlphaAvatar/AlphaAvatar | 87 | A | 561 | improve |
| mobile-use | 87 | A | 2.2k | improve |
Need help improving?
Implement these actions and your score will update automatically on the next crawl.