Command-line interface for SeaClip-Lite - A stateless CLI for managing issues, pipelines, agents, schedules, and activity on the SeaClip-Lite project management
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-skills-f0b9581204cf ,按照其中的说明把「cli-anything-seaclip」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
A stateless command-line interface for SeaClip-Lite project management. Communicates via HTTP API and direct SQLite reads. No local state or session.
pip install -e .
Prerequisites:
# Show help
cli-anything-seaclip --help
# Start interactive REPL mode
cli-anything-seaclip
# Run with JSON output (for agent consumption)
cli-anything-seaclip --json server health
cli-anything-seaclip --json issue list
cli-anything-seaclip --json agent list
When invoked without a subcommand, the CLI enters an interactive REPL session:
cli-anything-seaclip
# Enter commands interactively with tab-completion and history
Issue management commands.
| Command | Description |
|---|---|
list | List issues (--status, --priority, --search, --limit) |
create | Create a new issue (--title, --description, --priority) |
move | Move issue to column (ISSUE_ID --column COL) |
status | Update issue status (ISSUE_ID --set STATUS) |
delete | Delete an issue (ISSUE_ID) |
Pipeline agent commands.
| Command | Description |
|---|---|
list | List all pipeline agents |
Pipeline control commands.
| Command | Description |
|---|---|
start | Start pipeline (--issue UUID --mode auto/manual) |
status | Get pipeline status (--issue UUID) |
resume | Resume paused pipeline (--issue UUID) |
stop | Stop running pipeline (--issue UUID) |
Schedule configuration commands.
| Command | Description |
|---|---|
list | List all schedule configs |
add | Add schedule (--name, --cron, --repo) |
sync | Trigger sync (SCHEDULE_ID) |
Activity feed commands.
| Command | Description |
|---|---|
list | Recent activity (--limit N) |
Server utility commands.
| Command | Description |
|---|---|
health | Check backend health |
All commands support dual output modes:
--json flag): Structured JSON for agent consumption# Human output
cli-anything-seaclip issue list
# JSON output for agents
cli-anything-seaclip --json issue list
When using this CLI programmatically:
--json flag for parseable output{"error": "message"} in JSON mode1.0.0