All checks were successful
skill-release-placeholder / release (push) Successful in 1s
53 lines
1.3 KiB
Markdown
53 lines
1.3 KiB
Markdown
---
|
||
# ---------------------------------------------------------------------------
|
||
# 技能清单(Skill Manifest)
|
||
# ---------------------------------------------------------------------------
|
||
name: 头条号批量发布
|
||
description: 头条号批量发布技能(骨架阶段:仅健康检查与版本;发布逻辑待实现)。
|
||
version: 0.1.0
|
||
author: 深圳匠厂科技有限公司
|
||
metadata:
|
||
openclaw:
|
||
slug: toutiao-publisher
|
||
emoji: "📰"
|
||
category: "内容发布"
|
||
skill:
|
||
slug: toutiao-publisher
|
||
emoji: "📰"
|
||
category: "内容发布"
|
||
allowed-tools:
|
||
- bash
|
||
---
|
||
|
||
# 头条号批量发布(toutiao-publisher)
|
||
|
||
## 使用时机
|
||
|
||
- 用户需要**在头条号侧批量或自动化发布内容**时(具体话术与流程待业务实现后补充)。
|
||
|
||
## 执行步骤
|
||
|
||
### 健康检查
|
||
|
||
```bash
|
||
python3 {baseDir}/scripts/skill_main.py health
|
||
```
|
||
|
||
### 查看版本
|
||
|
||
```bash
|
||
python3 {baseDir}/scripts/skill_main.py version
|
||
```
|
||
|
||
### 发布与其它子命令
|
||
|
||
实现中:后续将在 `scripts/` 下增加发布入口,并在此文档补充命令与参数说明。
|
||
|
||
## 环境依赖
|
||
|
||
详见本仓库 `docs/RUNTIME.md`(`CLAW_DATA_ROOT`、`CLAW_USER_ID` 等)。
|
||
|
||
## 数据与隐私
|
||
|
||
本技能若产生持久化数据,应仅写入 `{CLAW_DATA_ROOT}/{CLAW_USER_ID}/toutiao-publisher/` 下;不得将用户数据提交到版本库。
|