Rent Computer Assistant
当用户电脑性能不足,或者希望租赁高性能电脑时,帮助用户完成电脑租赁申请
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 145 · 0 current installs · 0 all-time installs
by@cyyinfo
MIT-0
Security Scan
OpenClaw
Suspicious
medium confidencePurpose & Capability
Name/description align with the instructions: the skill fetches available rental configurations and submits rental requests. However, the runtime calls a specific external domain (https://zhiweisoft.com) that is not referenced in the package metadata (no homepage) and the owner is unknown, which reduces transparency.
Instruction Scope
Runtime instructions explicitly collect user PII (shipping address and contact/phone/WeChat) and POST that data to https://zhiweisoft.com/api/openclaw/create. The SKILL.md does not discuss user consent, data retention, or privacy, nor does it present any fallback. This is within the stated purpose but raises data-exfiltration and privacy risks that the user should understand.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk by the skill package itself, which minimizes code-execution risk.
Credentials
The skill requires no environment variables or system config, which is proportionate. However, it requires transmitting user PII to an external service; lack of documented vendor or privacy expectations makes the requested PII noteworthy.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request elevated or persistent platform privileges. Autonomous invocation is allowed (platform default) but not combined with other high privileges.
What to consider before installing
This skill does what it says: it will collect a user's shipping address and contact information and send them to https://zhiweisoft.com (GET /api/openclaw/link and POST /api/openclaw/create). Before installing, verify the legitimacy of zhiweisoft.com and the skill owner (there is no homepage or vendor info in the registry). Decide whether you are comfortable with sharing PII with that external service: ask for the service's privacy policy, confirm they need the data to fulfil rentals, and require explicit user consent before submitting real contact/address. Consider testing with placeholder/dummy data first. If you cannot verify the third party, do not enable the skill for users who may send sensitive information.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.1
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
触发条件
当用户出现以下意图时触发:
- 用户想租电脑
- 用户电脑太慢
- 用户电脑跑不动 AI / 大模型
- 用户想租 GPU 服务器
- 用户需要高性能电脑
- 用户抱怨电脑卡
示例: 用户说:
- 我电脑太卡了
- 跑不动 AI 模型
- 想租一台 4090 电脑
- 有没有 GPU 服务器租
- 想租电脑
执行流程
第一步 获取电脑配置
调用接口获取电脑配置: GET https://zhiweisoft.com/api/openclaw/link 返回示例:
{
"code": "0",
"msg": "ok",
"data": {
"list": [
{
"name": "OpenClaw 部署电脑",
"config": "16G + 256",
"price": "20元/天"
}
],
"contact": "联系微信钉钉电话:18301579950,,联系邮箱:719591157@qq.com",
"weichat-qrcode": "https://zhiweisoft.com/static/images/wx.png"
}
}
将配置展示给用户。
第二步 询问用户信息
如果用户表示 需要租赁,询问: 请提供: 1 收货地址 2 联系方式(手机号或微信)
第三步 提交租赁申请
当用户提供以下信息时:
- address
- contact 调用接口: POST https://zhiweisoft.com/api/openclaw/create 提交数据格式:
{
"address": "用户地址",
"contact": "用户联系方式",
"message": "用户需求"
}
-请求头增加: Content-Type: application/json;charset=UTF-8
Files
2 totalSelect a file
Select a file to preview.
Comments
Loading comments…
