Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
自动化代码审查技能,用于检查 Git 提交的代码变更。当用户请求审查代码、检查 PR、code review、review changes、review [hash] 或分析代码质量时触发此技能。审查完成后,用户可通过输入问题序号(如 "1"、"1,3,5"、"fix 1-3")自动修复对应问题。 --- name: code-review description: 自动化代码审查技能,用于检查 Git 提交的代码变更。当用户请求审查代码、检查 PR、code review、review changes、review [hash] 或分析代码质量时触发此技能。审查完成后,用户可通过输入问题序号(如 "1"、"1,3,5"、"fix 1-3")自动修复对应问题。 --- Code Review 审查 Git 提交的代码变更,检查代码质量问题并生成简洁报告。 触发场景 审查代码 - review / 审查代码 / code review - review abc1234(指定提交) - review abc1234..def5678(多个连续提交) 修复问题(审查完成后) - 1 / fix 1 - 修复问题 1 - 1,3,5 / fix 1,3,5 - 修复多个问题 - 1-3 / fix 1-3 - 修复问题 1 到 3 Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
code-review is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
自动化代码审查技能,用于检查 Git 提交的代码变更。当用户请求审查代码、检查 PR、code review、review changes、review [hash] 或分析代码质量时触发此技能。审查完成后,用户可通过输入问题序号(如 "1"、"1,3,5"、"fix 1-3")自动修复对应问题。 --- name: code-review description: 自动化代码审查技能,用于检查 Git 提交的代码变更。当用户请求审查代码、检查 PR、code review、review changes、review [hash] 或分析代码质量时触发此技能。审查完成后,用户可通过输入问题序号(如 "1"、"1,3,5"、"fix 1-3")自动修复对应问题。 --- Code Review 审查 Git 提交的代码变更,检查代码质量问题并生成简洁报告。 触发场景 审查代码 - review / 审查代码 / code review - review abc1234(指定提交) - review abc1234..def5678(多个连续提交) 修复问题(审查完成后) - 1 / fix 1 - 修复问题 1 - 1,3,5 / fix 1,3,5 - 修复多个问题 - 1-3 / fix 1-3 - 修复问题 1 到 3
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 14, 2026
Vendor
1017416696
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Setup snapshot
git clone https://github.com/1017416696/code-review-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
1017416696
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
git show <commit-hash> --format="%H%n%s%n%b" --stat git show <commit-hash> --format="" -- .
bash
# 获取提交列表(从旧到新,包含起始提交) # 注意:git log A..B 不包含 A,需要使用 A~1..B 来包含 A git log '<start>~1..<end>' --oneline --reverse # 获取整体 diff(从 start 的父提交到 end,这样 diff 包含 start 的变更) git diff '<start>~1..<end>'
markdown
# Code Review: <short-hash> ## 📊 变更概览 - **提交信息**: <commit message> - **文件数量**: X 个文件 - **变更行数**: +X / -Y ## 🔴 必须修复 1. [问题类型] - `文件名:行号` 问题描述及修复建议 [如可自动修复,提供修复后的代码示例] 2. [问题类型] - `文件名:行号` 问题描述及修复建议 ## ⚠️ 建议改进 1. [问题类型] - `文件名:行号` 问题描述及改进建议 [如可自动修复,提供修复后的代码示例] 2. [问题类型] - `文件名:行号` 问题描述及改进建议 ## ✅ 总结 - 必须修复: X 个 - 建议改进: Y 个 --- 💡 **提示**: 输入问题序号(如 `1` 或 `1,3,5` 或 `1-3`)可自动修复对应问题
markdown
# Code Review: <start-hash>..<end-hash> ## 📊 变更概览 - **提交范围**: X 个提交(从旧到新排列) - **文件数量**: Y 个文件 - **变更行数**: +A / -B ## 📝 提交列表(从旧到新) 1. `abc1234` - feat: add address validation 2. `bcd2345` - fix: handle null case 3. `def5678` - refactor: extract common method ## 🔴 必须修复 ... ## ⚠️ 建议改进 ... ## ✅ 总结 ...
markdown
# Code Review: <hash> ## 📊 变更概览 ... ✅ 审查通过,未发现问题
markdown
✅ 修复完成
已修复:
- 问题 1: [问题类型] - `文件名:行号` ✅
- 问题 3: [问题类型] - `文件名:行号` ✅
无法自动修复(需人工处理):
- 问题 5: [问题类型] - `文件名:行号` ⚠️
原因: [说明为什么无法自动修复]
请检查修复结果,确认无误后可提交代码。
💡 输入 `0` 可提交本次修复的文件Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
自动化代码审查技能,用于检查 Git 提交的代码变更。当用户请求审查代码、检查 PR、code review、review changes、review [hash] 或分析代码质量时触发此技能。审查完成后,用户可通过输入问题序号(如 "1"、"1,3,5"、"fix 1-3")自动修复对应问题。 --- name: code-review description: 自动化代码审查技能,用于检查 Git 提交的代码变更。当用户请求审查代码、检查 PR、code review、review changes、review [hash] 或分析代码质量时触发此技能。审查完成后,用户可通过输入问题序号(如 "1"、"1,3,5"、"fix 1-3")自动修复对应问题。 --- Code Review 审查 Git 提交的代码变更,检查代码质量问题并生成简洁报告。 触发场景 审查代码 - review / 审查代码 / code review - review abc1234(指定提交) - review abc1234..def5678(多个连续提交) 修复问题(审查完成后) - 1 / fix 1 - 修复问题 1 - 1,3,5 / fix 1,3,5 - 修复多个问题 - 1-3 / fix 1-3 - 修复问题 1 到 3
审查 Git 提交的代码变更,检查代码质量问题并生成简洁报告。
review / 审查代码 / code reviewreview abc1234(指定提交)review abc1234..def5678(多个连续提交)1 / fix 1 - 修复问题 11,3,5 / fix 1,3,5 - 修复多个问题1-3 / fix 1-3 - 修复问题 1 到 3fix all / fix critical - 修复所有必须修复的问题fix all issues - 修复所有问题0 - 提交本次修复修改的文件(自动生成提交信息)根据用户输入确定提交范围:
| 输入 | 审查范围 | Git 命令 |
|------|----------|----------|
| 无参数 | 最近一次提交 | git show HEAD --stat |
| abc1234 | 指定的单个提交 | git show abc1234 --stat |
| abc1234..def5678 | 从 abc1234 到 def5678 的所有提交 | git log abc1234..def5678 --oneline |
单个提交:
git show <commit-hash> --format="%H%n%s%n%b" --stat
git show <commit-hash> --format="" -- .
多个提交:
# 获取提交列表(从旧到新,包含起始提交)
# 注意:git log A..B 不包含 A,需要使用 A~1..B 来包含 A
git log '<start>~1..<end>' --oneline --reverse
# 获取整体 diff(从 start 的父提交到 end,这样 diff 包含 start 的变更)
git diff '<start>~1..<end>'
注意:
- 用户输入
abc1234..def5678表示要审查从 abc1234 到 def5678 的所有提交(包含两端)- 由于
git log A..B语法不包含 A,实际执行时需要使用A~1..B来包含起始提交- 使用
~1而非^,因为^在 zsh 中是特殊字符需要转义- 多个提交时,按从旧到新的顺序展示提交列表,但只审查最终状态的代码变更
单个提交报告格式:
# Code Review: <short-hash>
## 📊 变更概览
- **提交信息**: <commit message>
- **文件数量**: X 个文件
- **变更行数**: +X / -Y
## 🔴 必须修复
1. [问题类型] - `文件名:行号`
问题描述及修复建议
[如可自动修复,提供修复后的代码示例]
2. [问题类型] - `文件名:行号`
问题描述及修复建议
## ⚠️ 建议改进
1. [问题类型] - `文件名:行号`
问题描述及改进建议
[如可自动修复,提供修复后的代码示例]
2. [问题类型] - `文件名:行号`
问题描述及改进建议
## ✅ 总结
- 必须修复: X 个
- 建议改进: Y 个
---
💡 **提示**: 输入问题序号(如 `1` 或 `1,3,5` 或 `1-3`)可自动修复对应问题
多个提交报告格式:
# Code Review: <start-hash>..<end-hash>
## 📊 变更概览
- **提交范围**: X 个提交(从旧到新排列)
- **文件数量**: Y 个文件
- **变更行数**: +A / -B
## 📝 提交列表(从旧到新)
1. `abc1234` - feat: add address validation
2. `bcd2345` - fix: handle null case
3. `def5678` - refactor: extract common method
## 🔴 必须修复
...
## ⚠️ 建议改进
...
## ✅ 总结
...
无问题时:
# Code Review: <hash>
## 📊 变更概览
...
✅ 审查通过,未发现问题
当审查报告生成后,如果发现问题,等待用户输入:
用户输入格式:
1 或 fix 11,3,5 或 fix 1,3,51-3 或 fix 1-3fix all 或 fix criticalfix all issues修复流程:
解析用户输入
fix all,修复所有"必须修复"的问题fix all issues,修复所有问题逐个应用修复
修复完成提示
✅ 修复完成
已修复:
- 问题 1: [问题类型] - `文件名:行号` ✅
- 问题 3: [问题类型] - `文件名:行号` ✅
无法自动修复(需人工处理):
- 问题 5: [问题类型] - `文件名:行号` ⚠️
原因: [说明为什么无法自动修复]
请检查修复结果,确认无误后可提交代码。
💡 输入 `0` 可提交本次修复的文件
修复示例:
用户输入:1,3
正在修复问题 1, 3...
✅ 问题 1: 魔法数字 - `AddressService.java:45`
已将 `100` 替换为常量 `MAX_ADDRESS_COUNT`
✅ 问题 3: 调试日志 - `UserController.java:78`
已删除 `System.out.println` 语句
修复完成!请检查代码确认无误。
注意事项:
用户输入 0 后,自动执行以下操作:
获取修复文件列表
分析实际修改内容
# 获取本次修改的 diff
git diff <修复的文件列表>
根据 diff 内容动态生成提交信息
git diff 输出,理解实际修改了什么<type>: <中文描述>执行 git 命令
git add <修复的文件列表>
git commit -m "<根据 diff 动态生成的提交信息>"
显示提交结果
✅ 已提交
提交信息: <根据实际修改内容生成>
修改文件: <文件列表>
提交信息生成原则:
git diff 分析实际代码变更<type>: <中文描述>fix: 将魔法数字100替换为MAX_COUNT常量fix: 移除UserController中的调试日志refactor: 提取重复代码为validateAddress方法| 级别 | 标识 | 说明 | 示例 | |------|------|------|------| | 必须修复 | 🔴 | 存在 bug、安全漏洞或严重问题 | 未处理的异常、硬编码密钥 | | 建议改进 | ⚠️ | 影响代码质量或可维护性 | 魔法数字、重复代码、命名不规范 |
步骤 1:审查代码
用户: review abc1234
AI: [生成审查报告,列出问题 1-5]
步骤 2:选择修复
用户: 1,3
AI: [自动修复问题 1 和 3,显示修复结果]
步骤 3:确认修复
用户: 检查一下修复结果
AI: [展示修复后的代码片段,确认无误]
用户: review
AI: [审查报告显示 3 个必须修复的问题]
用户: fix all
AI: [自动修复所有必须修复的问题]
用户: review abc1234
AI: [审查报告]
1. 魔法数字 - AddressService.java:45
2. 调试日志 - UserController.java:78
用户: 1,2
AI: ✅ 修复完成
- 问题 1: 魔法数字 - AddressService.java:45 ✅
- 问题 2: 调试日志 - UserController.java:78 ✅
💡 输入 `0` 可提交本次修复的文件
用户: 0
AI: [执行 git diff 分析修改内容]
✅ 已提交
提交信息: fix: 添加地址数量上限常量,移除调试日志
修改文件: AddressService.java, UserController.java
提交信息通过
git diff分析实际代码变更后动态生成,使用中文描述真实的修改内容。
详见 STANDARDS.md
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/1017416696-code-review-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/1017416696-code-review-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/1017416696-code-review-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/1017416696-code-review-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/1017416696-code-review-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/1017416696-code-review-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/1017416696-code-review-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/1017416696-code-review-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/1017416696-code-review-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T05:35:19.685Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "1017416696",
"href": "https://github.com/1017416696/code-review-skill",
"sourceUrl": "https://github.com/1017416696/code-review-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:27:01.491Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/1017416696-code-review-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/1017416696-code-review-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-14T22:27:01.491Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/1017416696-code-review-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/1017416696-code-review-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to code-review and adjacent AI workflows.