CLI-Anything cli-anything-seaclip
install
source · Clone the upstream repo
git clone https://github.com/HKUDS/CLI-Anything
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/HKUDS/CLI-Anything "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/cli-anything-seaclip" ~/.claude/skills/hkuds-cli-anything-cli-anything-seaclip && rm -rf "$T"
manifest:
skills/cli-anything-seaclip/SKILL.mdsource content
cli-anything-seaclip
A stateless command-line interface for SeaClip-Lite project management. Communicates via HTTP API and direct SQLite reads. No local state or session.
Installation
pip install -e .
Prerequisites:
- Python 3.10+
- SeaClip-Lite backend running at localhost:5200
Usage
Basic Commands
# 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
REPL Mode
When invoked without a subcommand, the CLI enters an interactive REPL session:
cli-anything-seaclip # Enter commands interactively with tab-completion and history
Command Groups
Issue
Issue management commands.
| Command | Description |
|---|---|
| List issues (--status, --priority, --search, --limit) |
| Create a new issue (--title, --description, --priority) |
| Move issue to column (ISSUE_ID --column COL) |
| Update issue status (ISSUE_ID --set STATUS) |
| Delete an issue (ISSUE_ID) |
Agent
Pipeline agent commands.
| Command | Description |
|---|---|
| List all pipeline agents |
Pipeline
Pipeline control commands.
| Command | Description |
|---|---|
| Start pipeline (--issue UUID --mode auto/manual) |
| Get pipeline status (--issue UUID) |
| Resume paused pipeline (--issue UUID) |
| Stop running pipeline (--issue UUID) |
Scheduler
Schedule configuration commands.
| Command | Description |
|---|---|
| List all schedule configs |
| Add schedule (--name, --cron, --repo) |
| Trigger sync (SCHEDULE_ID) |
Activity
Activity feed commands.
| Command | Description |
|---|---|
| Recent activity (--limit N) |
Server
Server utility commands.
| Command | Description |
|---|---|
| Check backend health |
Output Formats
All commands support dual output modes:
- Human-readable (default): Tables, colors, formatted text
- Machine-readable (
flag): Structured JSON for agent consumption--json
# Human output cli-anything-seaclip issue list # JSON output for agents cli-anything-seaclip --json issue list
For AI Agents
When using this CLI programmatically:
- Always use
flag for parseable output--json - Check return codes - 0 for success, non-zero for errors
- Parse stderr for error messages on failure
- Error responses include
in JSON mode{"error": "message"}
Version
1.0.0