Overview
- Skill Key
- geoion/s1cli
- Author
- geoion
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/geoion/s1cli
- Latest Commit SHA
- 71c266d1ed2d19bec0749be169c16f9606ac07fe
Stage1st (S1) 论坛命令行工具,基于 s1cli Python 包。支持登录/登出、浏览版块和帖子、发帖/回帖、搜索帖子、每日签到、查看个人信息、配置管理。当用户询问「S1」「Stage1st」「一阶段论坛」的操作,或要求浏览/发帖/搜索/签到/回帖时使用此 skill。需要已安装 s1cli(pip install s1cli 或 pip install -e /path/to/s1cli)。
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 s1cli 技能。 若已安装,则直接安装 s1cli 技能。
# s1cli — Stage1st 论坛 CLI
## 安装
```bash
# PyPI(如已发布)
pip3 install s1cli
# 或从源码
git clone https://github.com/Geoion/s1cli.git && cd s1cli && pip3 install -e .
```
安装后用 `python3 -m s1cli --help` 确认(某些环境 PATH 里没有 `s1cli` 直接命令,但 `python3 -m s1cli` 始终有效)。
### 依赖:SOCKS 代理支持
若环境配置了 SOCKS 代理,登录时会报错:
```
Using SOCKS proxy, but the 'socksio' package is not installed.
```
修复方法(注意 zsh 下方括号需要加引号):
```bash
pip3 install "httpx[socks]" socksio
```
> ⚠️ zsh 中不能写 `pip3 install httpx[socks]`(方括号会被 shell 解释),必须加引号。
## 命令速查
```bash
# 登录 / 登出
python3 -m s1cli login # 交互输入用户名密码
python3 -m s1cli login -u USER -p PASS
python3 -m s1cli logout
# 版块 & 帖子列表
python3 -m s1cli list # 列出所有版块(含 ID)
python3 -m s1cli list <forum_id> # 列出版块帖子(用 ID)
python3 -m s1cli list <forum_id> -p 2 # 第 2 页
python3 -m s1cli list <forum_id> --json # JSON 输出(见下方解析说明)
# 查看帖子
python3 -m s1cli thread <thread_id>
python3 -m s1cli thread <thread_id> -p 2 # 第 2 页
# 发帖 / 回帖
python3 -m s1cli post -f <forum_name> -t "标题" -c "内容"
python3 -m s1cli reply <thread_id> -c "回复内容"
# 搜索
python3 -m s1cli search "关键词"
python3 -m s1cli search "关键词" -f <forum_name>
# 个人功能
python3 -m s1cli checkin # 每日签到
python3 -m s1cli profile # 个人信息
# 配置
python3 -m s1cli config show
python3 -m s1cli config set theme=dark
```
## --json 输出解析说明
`--json` 模式下,stdout 第一行是进度提示文字(非 JSON),从第二行起才是 JSON 数组。
**不能直接 `json.load(sys.stdin)`**,需跳过第一行:
```python
import subprocess, json
result = subprocess.run(
['python3', '-m', 's1cli', 'list', '<forum_id>', '--json'],
capture_output=True, text=True
)
# 跳过第一行进度提示,剩余部分是完整 JSON
lines = result.stdout.split('\n', 1)
data = json.loads(lines[1])
for t in data:
print(f"回{t['replies']:>5} 看{t['views...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.