← Back to Skills Marketplace
jie868

Openclaw Skill

by jie868 · GitHub ↗ · v1.3.0 · MIT-0
cross-platform ✓ Security Clean
69
Downloads
0
Stars
0
Active Installs
5
Versions
Install in OpenClaw
/install workplace-life-helper
Description
职场+生活全能助手:租房避坑、闲鱼卖货、职场赋能、内容合规检测20项服务(合同审查/押金计算/简历优化/周报生成/合规检测等),0.10元/次
README (SKILL.md)

职场+生活全能助手

任务目标

  • 本 Skill 用于:解决打工人租房、卖货、职场、合规检测中的高频痛点
  • 能力包含:租房避坑(4项)、闲鱼助手(4项)、职场赋能(6项)、内容合规(6项),共20项服务
  • 触发条件:用户提到合同审查、押金计算、闲鱼卖货、简历优化、周报生成、合规检测等关键词

核心定价

  • 统一价格:0.10元/次
  • 支付方式:支付宝AI收(A2M自动付费)
  • 服务地址:https://w4h8ghmxcv.coze.site

服务目录

🏠 租房避坑(4项)

服务 端点 说明
合同审查 /api/v1/skill/zufang/contract 分析租房合同条款,识别风险点
押金计算 /api/v1/skill/zufang/deposit 计算押金退还方案
文书生成 /api/v1/skill/zufang/document 生成退租协议等法律文书
维权建议 /api/v1/skill/zufang/complaint 提供租房纠纷解决方案

🛒 闲鱼助手(4项)

服务 端点 说明
商品文案 /api/v1/skill/xianyu/describe 生成吸引买家的商品描述
定价建议 /api/v1/skill/xianyu/price 智能定价参考
谈判话术 /api/v1/skill/xianyu/negotiate 应对砍价、交易谈判
防骗识别 /api/v1/skill/xianyu/antiscam 识别交易风险和骗子套路

💼 职场赋能(6项)

服务 端点 说明
清醒搭子 /api/v1/skill/bahe/qingxing 职场困惑倾诉和建议
简历优化 /api/v1/skill/bahe/jianli 优化简历提高面试率
社媒文案 /api/v1/skill/bahe/shemei 小红书/抖音等平台文案
电商文案 /api/v1/skill/bahe/dianshang 产品卖点提炼和推广
周报神器 /api/v1/skill/bahe/zhoubao 自动生成周报/月报
AI工具集 /api/v1/skill/bahe/aitools 推荐适合任务的AI工具

✅ 内容合规检测(6项)

服务 端点 说明
公众号合规 /api/v1/skill/comply/wechat 检测公众号文章违规词/广告法
抖音合规 /api/v1/skill/comply/douyin 检测抖音文案/直播带货合规
小红书合规 /api/v1/skill/comply/xiaohongshu 检测小红书种草/测评内容
电商合规 /api/v1/skill/comply/ecommerce 检测电商详情页价格/宣传
广告合规 /api/v1/skill/comply/ad 检测各类广告文案合规
通用合规 /api/v1/skill/comply/general 通用文本合规检测

操作步骤

步骤1:识别用户需求

根据用户输入判断属于哪类服务:

  • 租房相关 → zufang 端点组
  • 闲鱼卖货相关 → xianyu 端点组
  • 职场相关 → bahe 端点组
  • 内容合规相关 → comply 端点组

步骤2:调用 api_client.py

使用 scripts/api_client.py 发起请求:

python scripts/api_client.py \x3Cendpoint> \x3Cjson_body>

示例调用

# 简历优化
python scripts/api_client.py "bahe/jianli" '{"resume_text": "张三,3年经验...", "target_job": "产品经理"}'

# 合同审查
python scripts/api_client.py "zufang/contract" '{"contract_text": "甲方:... 乙方:..."}'

# 闲鱼定价
python scripts/api_client.py "xianyu/price" '{"item_name": "iPhone14", "condition": "9成新", "original_price": "5999"}'

# 公众号合规检测
python scripts/api_client.py "comply/wechat" '{"content": "文章内容...", "article_title": "标题", "industry": "食品"}'

# 抖音文案合规检测
python scripts/api_client.py "comply/douyin" '{"content": "视频文案...", "video_type": "带货"}'

步骤3:处理响应

  • 402 Payment Needed:告知用户价格(0.10元),引导支付宝AI收支付
  • 200 OK:返回服务结果,直接呈现给用户

步骤4:结果呈现

将API返回的JSON结果格式化输出,确保用户易读易懂。

API统一响应格式

所有端点返回统一格式:

{
  "success": true,
  "message": "操作成功",
  "data": {
    "content": "生成的具体内容..." 或 "report": "合规检测报告..."
  },
  "credits_used": 10,
  "disclaimer": "本内容由AI生成,仅供参考。"
}

注意:未付费请求会收到HTTP 402响应:

{
  "code": "Payment-Needed",
  "message": "需要支付",
  "out_trade_no": "ORDER_xxx",
  "amount": "10",
  "currency": "CNY",
  "goods_name": "简历优化"
}

此时需要通过支付宝AI收完成支付,携带Payment-Proof头重新请求即可获得200响应。

API调用示例

简历优化示例

输入

{
  "resume_text": "张三\
3年产品经验\
负责过APP迭代\
熟练Axure",
  "target_job": "高级产品经理"
}

输出(200)

{
  "success": true,
  "message": "操作成功",
  "data": {
    "content": "【优化后的简历内容】..."
  },
  "credits_used": 10,
  "disclaimer": "本内容由AI生成,仅供参考。"
}

公众号合规检测示例

输入

{
  "content": "这款产品是最好的,100%有效!",
  "article_title": "产品推荐",
  "industry": "化妆品"
}

输出(200)

{
  "success": true,
  "message": "公众号文章合规检测完成",
  "data": {
    "report": "{\"risk_level\": \"高\", \"total_issues\": 2, \"issues\": [...]}"
  },
  "credits_used": 10,
  "disclaimer": "⚠️ 本内容由AI生成,仅供法律信息参考..."
}

注意事项

  • 所有端点统一收费:0.10元/次(共20个端点)
  • 未付费用户会收到402响应,需通过支付宝AI收完成支付
  • 合同审查仅供参考,不构成法律意见
  • 合规检测结果仅供参考,不构成法律建议
  • 闲鱼定价建议仅供参考,实际价格自行决定
  • 支付宝AI收会自动处理付费流程,用户授权后即可使用
Usage Guidance
This skill appears coherent and purpose-aligned. Before installing, be aware that each service call may require a small Alipay payment and that submitted resumes, contracts, marketplace details, or compliance drafts are sent to the remote API for processing.
Capability Analysis
Type: OpenClaw Skill Name: workplace-life-helper Version: 1.3.0 The skill bundle is a legitimate API wrapper for a suite of workplace and life assistance services (renting, resume optimization, and content compliance). The Python script `scripts/api_client.py` uses standard libraries to communicate with a Coze-hosted API endpoint and includes robust handling for a transparent 'pay-per-use' model via Alipay, with no evidence of malicious intent, data exfiltration, or unauthorized execution.
Capability Tags
cryptocan-make-purchases
Capability Assessment
Purpose & Capability
The stated purpose, service catalog, API endpoint, and included client code align: it provides rental, marketplace, workplace, and content-compliance assistance through a remote API.
Instruction Scope
The instructions describe invoking the API for matching user requests and handling payment-required responses; paid retries should remain user-confirmed.
Install Mechanism
There is no install spec or dependency installation. The included Python client uses standard-library HTTP requests and does not show shelling out, eval, obfuscation, or hidden installers.
Credentials
The skill sends user-provided content such as resumes, contracts, and compliance text to the remote service; this is purpose-aligned but privacy-relevant.
Persistence & Privilege
The artifacts disclose per-call Alipay A2M payment behavior. No local credentials, persistence, background service, or privileged system access is shown.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install workplace-life-helper
  3. After installation, invoke the skill by name or use /workplace-life-helper
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.3.0
workplace-life-helper 1.3.0 - 新增内容合规检测模块,覆盖公众号、抖音、小红书、电商、广告及通用文本等6项服务,总服务数扩展至20项 - SKILL.md文档全面更新,补充所有新增端点说明与调用示例 - 更新技能描述和标签,突出合规检测能力 - 保持统一定价与调用流程不变,所有服务依然通过支付宝AI收自动付费
v1.2.0
workplace-life-helper 1.2.0 更新日志 - 全面统一了API响应格式,所有功能输出标准JSON结构,便于解析和展示。 - 新增API 402未付费返回结构说明,明确如何根据订单引导用户支付。 - API调用示例和注意事项同步更新,覆盖新响应格式。 - SKILL文档细化了接口返回细节及支付流程指引。
v1.1.0
- 增加“AI工具集”服务,职场赋能板块服务由5项扩展至6项(总服务数量由13项增至14项) - 服务描述和目录同步更新,反映新增服务 - metadata.openclaw 配置合并到主文件结构 - 修改版本号至1.0.1 - 优化说明文本,调整各板块服务项数量和描述的准确性
v1.0.1
- No file changes detected in this release. - Version number updated from 1.0.0 to 1.0.1. - No functional or documentation updates included.
v1.0.0
Initial release of workplace-life-helper - Provides 13 services across rental, second-hand selling, and workplace scenarios (contract review, deposit calculation, resume optimization, weekly report generation, and more). - Simple, unified pricing: 0.10元 per use, paid via Alipay AI收. - Smart API routing covers rental pitfalls, second-hand sales guidance (like Xianyu), and workplace empowerment. - Easy invocation through user intent recognition and API calls; automatically guides payment and delivers actionable results. - All endpoints and uses documented with clear examples for quick start.
Metadata
Slug workplace-life-helper
Version 1.3.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 5
Frequently Asked Questions

What is Openclaw Skill?

职场+生活全能助手:租房避坑、闲鱼卖货、职场赋能、内容合规检测20项服务(合同审查/押金计算/简历优化/周报生成/合规检测等),0.10元/次. It is an AI Agent Skill for Claude Code / OpenClaw, with 69 downloads so far.

How do I install Openclaw Skill?

Run "/install workplace-life-helper" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Openclaw Skill free?

Yes, Openclaw Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Openclaw Skill support?

Openclaw Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Openclaw Skill?

It is built and maintained by jie868 (@jie868); the current version is v1.3.0.

💬 Comments