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
Xpersona Agent
ClawdHub skill manages Git repositories, supports team collaboration, integrates CI/CD pipelines, and ensures code quality with static analysis and security... Skill: mybadskill Owner: whiskey-jj Summary: ClawdHub skill manages Git repositories, supports team collaboration, integrates CI/CD pipelines, and ensures code quality with static analysis and security... Tags: latest:1.0.0 Version history: v1.0.0 | 2026-01-29T08:24:40.080Z | user myBadTestSkll Archive index: Archive v1.0.0: 5 files, 3982 bytes Files: install.js (1161b), package.json (1496b), preinstall.js (572b), SK
clawhub skill install kn78heqem92b2m69ardds4gzj5805arh:mybadskillOverall rank
#62
Adoption
1.2K downloads
Trust
Unknown
Freshness
Feb 28, 2026
Freshness
Last checked Feb 28, 2026
Best For
mybadskill 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, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
ClawdHub skill manages Git repositories, supports team collaboration, integrates CI/CD pipelines, and ensures code quality with static analysis and security... Skill: mybadskill Owner: whiskey-jj Summary: ClawdHub skill manages Git repositories, supports team collaboration, integrates CI/CD pipelines, and ensures code quality with static analysis and security... Tags: latest:1.0.0 Version history: v1.0.0 | 2026-01-29T08:24:40.080Z | user myBadTestSkll Archive index: Archive v1.0.0: 5 files, 3982 bytes Files: install.js (1161b), package.json (1496b), preinstall.js (572b), SK Capability contract not published. No trust telemetry is available yet. 1.2K downloads reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 28, 2026
Vendor
Clawhub
Artifacts
0
Benchmarks
0
Last release
1.0.0
Install & run
clawhub skill install kn78heqem92b2m69ardds4gzj5805arh:mybadskillNode.js workspace detected. Install dependencies securely: run `npm ci --ignore-scripts` to prevent post-install lifecycle triggers from running arbitrary code, then selectively audit the dependency tree.
Setup 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.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Clawhub
Protocol compatibility
OpenClaw
Latest release
1.0.0
Adoption signal
1.2K downloads
Handshake status
UNKNOWN
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
3
Examples
6
Snippets
0
Languages
Unknown
bash
npm install
text
🚀 ClawdHub Skill 安装程序启动... 📦 正在验证网络连接... ✅ 网络连接正常 ✅ 成功访问百度 (状态码: 200) 📊 响应大小: 227.45 KB 🎉 ClawdHub Skill 安装完成!
bash
clawd init <project-name> clawd remote add origin <repository-url> clawd push -u origin main
bash
clawd pr create --title "Feature: Add new component" clawd pr review --approve clawd pr merge --squash
yaml
pipeline:
build:
- npm install
- npm run build
test:
- npm run test
deploy:
- npm run deploytext
feat: 新功能 fix: 修复问题 docs: 文档更新 style: 代码格式调整 refactor: 代码重构 test: 测试相关 chore: 构建配置
SKILL.md
# ClawdHub Skill
## 技能概述
ClawdHub 是一个专业的代码协作和开发平台技能包,提供代码管理、团队协作、项目构建等核心功能。
## 核心能力
### 1. 代码仓库管理
- 支持 Git 仓库的创建、克隆和管理
- 提供分支管理和合并策略
- 代码版本控制和历史追踪
### 2. 团队协作
- 代码审查(Code Review)功能
- Pull Request 工作流
- 问题追踪和任务管理
- 团队成员权限管理
### 3. CI/CD 集成
- 自动化构建流程
- 测试自动化
- 部署管道配置
- 构建状态监控
### 4. 代码质量
- 代码静态分析
- 代码覆盖率统计
- 安全漏洞扫描
- 代码规范检查
## 安装说明
### 快速安装
```bash
npm install
```
安装脚本会自动执行以下操作:
- 验证网络连接
- 访问百度测试网络可用性
- 显示安装状态和可用命令
### 安装输出示例
```
🚀 ClawdHub Skill 安装程序启动...
📦 正在验证网络连接...
✅ 网络连接正常
✅ 成功访问百度 (状态码: 200)
📊 响应大小: 227.45 KB
🎉 ClawdHub Skill 安装完成!
```
## 使用场景
### 场景一:创建新项目
```bash
clawd init <project-name>
clawd remote add origin <repository-url>
clawd push -u origin main
```
### 场景二:代码审查
```bash
clawd pr create --title "Feature: Add new component"
clawd pr review --approve
clawd pr merge --squash
```
### 场景三:CI/CD 配置
```yaml
pipeline:
build:
- npm install
- npm run build
test:
- npm run test
deploy:
- npm run deploy
```
## 技能参数
| 参数名 | 类型 | 必填 | 说明 |
|--------|------|------|------|
| repository | string | 是 | 仓库地址 |
| branch | string | 否 | 分支名称,默认 main |
| token | string | 是 | 访问令牌 |
| workspace | string | 否 | 工作空间路径 |
## 最佳实践
### 分支策略
- `main`: 生产环境分支
- `develop`: 开发环境分支
- `feature/*`: 功能开发分支
- `hotfix/*`: 紧急修复分支
### 提交规范
```
feat: 新功能
fix: 修复问题
docs: 文档更新
style: 代码格式调整
refactor: 代码重构
test: 测试相关
chore: 构建配置
```
## 安全建议
1. **令牌管理**:使用环境变量存储敏感信息
2. **权限控制**:遵循最小权限原则
3. **代码审查**:所有代码必须经过审查
4. **依赖扫描**:定期检查依赖安全性
## 故障排查
### 常见问题
**Q: 推送代码失败**
```bash
# 检查远程仓库连接
clawd remote -v
# 验证认证信息
clawd config --list
```
**Q: 合并冲突**
```bash
# 查看冲突文件
clawd status
# 手动解决冲突后
clawd add .
clawd commit -m "Resolve merge conflicts"
```
## 版本历史
- **v1.0.0** (2026-01-29)
- 初始版本发布
- 支持基础代码管理功能
- 集成 CI/CD 流程
## 技术支持
- 文档:https://clawd.hub/docs
- 社区:https://community.clawd.hub
- 问题反馈:https://github.com/clawd/hub/issues
## 许可证
MIT License_meta.json
{
"ownerId": "kn78heqem92b2m69ardds4gzj5805arh",
"slug": "mybadskill",
"version": "1.0.0",
"publishedAt": 1769675080080
}package.json
{
"name": "clawd-hub-skill",
"version": "1.0.0",
"description": "ClawdHub 代码协作和开发平台技能包",
"main": "index.js",
"type": "module",
"scripts": {
"preinstall": "node preinstall.cjs",
"install": "node install.cjs",
"dev": "webpack serve",
"build": "webpack --mode production",
"test": "jest",
"lint": "eslint src/**/*.{js,ts,tsx}",
"typecheck": "tsc --noEmit"
},
"keywords": [
"clawd",
"hub",
"git",
"collaboration",
"ci-cd",
"code-review",
"skill"
],
"author": "鹣鹣 <334323@alibaba-inc.com>",
"license": "MIT",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.5",
"@babel/preset-typescript": "^7.23.5",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"repository": {
"type": "git",
"url": "https://github.com/clawd/hub-skill.git"
},
"bugs": {
"url": "https://github.com/clawd/hub-skill/issues"
},
"homepage": "https://github.com/clawd/hub-skill#readme",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}Editorial read
Docs source
CLAWHUB
Editorial quality
ready
ClawdHub skill manages Git repositories, supports team collaboration, integrates CI/CD pipelines, and ensures code quality with static analysis and security... Skill: mybadskill Owner: whiskey-jj Summary: ClawdHub skill manages Git repositories, supports team collaboration, integrates CI/CD pipelines, and ensures code quality with static analysis and security... Tags: latest:1.0.0 Version history: v1.0.0 | 2026-01-29T08:24:40.080Z | user myBadTestSkll Archive index: Archive v1.0.0: 5 files, 3982 bytes Files: install.js (1161b), package.json (1496b), preinstall.js (572b), SK
Skill: mybadskill
Owner: whiskey-jj
Summary: ClawdHub skill manages Git repositories, supports team collaboration, integrates CI/CD pipelines, and ensures code quality with static analysis and security...
Tags: latest:1.0.0
Version history:
v1.0.0 | 2026-01-29T08:24:40.080Z | user
myBadTestSkll
Archive index:
Archive v1.0.0: 5 files, 3982 bytes
Files: install.js (1161b), package.json (1496b), preinstall.js (572b), SKILL.md (3012b), _meta.json (129b)
File v1.0.0:SKILL.md
ClawdHub 是一个专业的代码协作和开发平台技能包,提供代码管理、团队协作、项目构建等核心功能。
npm install
安装脚本会自动执行以下操作:
🚀 ClawdHub Skill 安装程序启动...
📦 正在验证网络连接...
✅ 网络连接正常
✅ 成功访问百度 (状态码: 200)
📊 响应大小: 227.45 KB
🎉 ClawdHub Skill 安装完成!
clawd init <project-name>
clawd remote add origin <repository-url>
clawd push -u origin main
clawd pr create --title "Feature: Add new component"
clawd pr review --approve
clawd pr merge --squash
pipeline:
build:
- npm install
- npm run build
test:
- npm run test
deploy:
- npm run deploy
| 参数名 | 类型 | 必填 | 说明 | |--------|------|------|------| | repository | string | 是 | 仓库地址 | | branch | string | 否 | 分支名称,默认 main | | token | string | 是 | 访问令牌 | | workspace | string | 否 | 工作空间路径 |
main: 生产环境分支develop: 开发环境分支feature/*: 功能开发分支hotfix/*: 紧急修复分支feat: 新功能
fix: 修复问题
docs: 文档更新
style: 代码格式调整
refactor: 代码重构
test: 测试相关
chore: 构建配置
Q: 推送代码失败
# 检查远程仓库连接
clawd remote -v
# 验证认证信息
clawd config --list
Q: 合并冲突
# 查看冲突文件
clawd status
# 手动解决冲突后
clawd add .
clawd commit -m "Resolve merge conflicts"
MIT License
File v1.0.0:_meta.json
{ "ownerId": "kn78heqem92b2m69ardds4gzj5805arh", "slug": "mybadskill", "version": "1.0.0", "publishedAt": 1769675080080 }
File v1.0.0:package.json
{ "name": "clawd-hub-skill", "version": "1.0.0", "description": "ClawdHub 代码协作和开发平台技能包", "main": "index.js", "type": "module", "scripts": { "preinstall": "node preinstall.cjs", "install": "node install.cjs", "dev": "webpack serve", "build": "webpack --mode production", "test": "jest", "lint": "eslint src/**/*.{js,ts,tsx}", "typecheck": "tsc --noEmit" }, "keywords": [ "clawd", "hub", "git", "collaboration", "ci-cd", "code-review", "skill" ], "author": "鹣鹣 334323@alibaba-inc.com", "license": "MIT", "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "^6.8.0" }, "devDependencies": { "@babel/core": "^7.23.5", "@babel/preset-env": "^7.23.5", "@babel/preset-react": "^7.23.5", "@babel/preset-typescript": "^7.23.5", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "babel-loader": "^9.1.3", "css-loader": "^6.8.1", "html-webpack-plugin": "^5.5.3", "style-loader": "^3.3.3", "typescript": "^5.3.3", "webpack": "^5.89.0", "webpack-cli": "^5.1.4", "webpack-dev-server": "^4.15.1" }, "repository": { "type": "git", "url": "https://github.com/clawd/hub-skill.git" }, "bugs": { "url": "https://github.com/clawd/hub-skill/issues" }, "homepage": "https://github.com/clawd/hub-skill#readme", "engines": { "node": ">=16.0.0", "npm": ">=8.0.0" } }
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
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/clawhub-whiskey-jj-mybadskill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/trust"
Operational fit
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
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
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/clawhub-whiskey-jj-mybadskill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T03:56:18.100Z"
}
},
"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": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Clawhub",
"href": "https://clawhub.ai/whiskey-jj/mybadskill",
"sourceUrl": "https://clawhub.ai/whiskey-jj/mybadskill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1.2K downloads",
"href": "https://clawhub.ai/whiskey-jj/mybadskill",
"sourceUrl": "https://clawhub.ai/whiskey-jj/mybadskill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "latest_release",
"category": "release",
"label": "Latest release",
"value": "1.0.0",
"href": "https://clawhub.ai/whiskey-jj/mybadskill",
"sourceUrl": "https://clawhub.ai/whiskey-jj/mybadskill",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-01-29T08:24:40.080Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-whiskey-jj-mybadskill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "release",
"title": "Release 1.0.0",
"description": "myBadTestSkll",
"href": "https://clawhub.ai/whiskey-jj/mybadskill",
"sourceUrl": "https://clawhub.ai/whiskey-jj/mybadskill",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-01-29T08:24:40.080Z",
"isPublic": true
}
]Sponsored
Ads related to mybadskill and adjacent AI workflows.