
Cli Anything Seaclip
- 342 installs
- 46.6k repo stars
- Updated August 3, 2026
- hkuds/cli-anything
cli-anything-seaclip is a stateless CLI for developers who need to manage SeaClip-Lite issues and pipelines via an HTTP API and direct SQLite reads.
About
cli-anything-seaclip is a stateless command-line interface for SeaClip-Lite project management that communicates via an HTTP API and direct SQLite reads. cli-anything-seaclip runs from the terminal, can enter an interactive REPL mode, and is designed to operate without local session state so automation and scripting remain predictable. cli-anything-seaclip requires Python 3.10+ and a SeaClip-Lite backend running locally, which makes it suitable for developer workflows where the board system is part of a local or self-hosted stack. Developers reach for cli-anything-seaclip when they want CLI-driven issue and pipeline management that can be chained into scripts or agent workflows without manually clicking through a UI.
- SeaClip CLI wrapped for agent use
- Automated short-form video clipping
- Terminal-driven media assembly
- Supports content and demo pipelines
- Structured clip metadata for LLMs
Cli Anything Seaclip by the numbers
- 342 all-time installs (skills.sh)
- +12 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #483 of 1,335 Generative Media skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/hkuds/cli-anything --skill cli-anything-seaclipAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 342 |
|---|---|
| repo stars | ★ 46.6k |
| Last updated | August 3, 2026 |
| Repository | hkuds/cli-anything ↗ |
How do I manage SeaClip-Lite from CLI?
Allow agents to trim, clip, or process SeaClip media from the terminal when assembling demos, social clips, tutorials, or short-form content in automated pipelines.
Who is it for?
Developers who want terminal-first workflows for a SeaClip-Lite board backend.
Skip if: Teams without a SeaClip-Lite backend or without local access to the board database/API.
When should I use this skill?
Invoke when a developer needs a CLI to manage SeaClip-Lite issues, pipelines, agents, schedules, or activity.
What you get
CLI outputs for board actions, issue and pipeline operations executed via HTTP API, and automated workflow steps driven from terminal commands.
- cli command output
- board operation results
By the numbers
- Requires Python 3.10+.
- SeaClip-Lite backend prerequisite is specified at localhost:5200.
Files
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 listREPL Mode
When invoked without a subcommand, the CLI enters an interactive REPL session:
cli-anything-seaclip
# Enter commands interactively with tab-completion and historyCommand Groups
Issue
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) |
Agent
Pipeline agent commands.
| Command | Description |
|---|---|
list | List all pipeline agents |
Pipeline
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) |
Scheduler
Schedule configuration commands.
| Command | Description |
|---|---|
list | List all schedule configs |
add | Add schedule (--name, --cron, --repo) |
sync | Trigger sync (SCHEDULE_ID) |
Activity
Activity feed commands.
| Command | Description |
|---|---|
list | Recent activity (--limit N) |
Server
Server utility commands.
| Command | Description |
|---|---|
health | Check backend health |
Output Formats
All commands support dual output modes:
- Human-readable (default): Tables, colors, formatted text
- Machine-readable (
--jsonflag): Structured JSON for agent consumption
# Human output
cli-anything-seaclip issue list
# JSON output for agents
cli-anything-seaclip --json issue listFor AI Agents
When using this CLI programmatically:
1. Always use `--json` flag for parseable output 2. Check return codes - 0 for success, non-zero for errors 3. Parse stderr for error messages on failure 4. Error responses include {"error": "message"} in JSON mode
Version
1.0.0
Related skills
How it compares
Pick this when you need a stateless CLI + REPL to drive board actions via HTTP API rather than a browser UI.
FAQ
What does cli-anything-seaclip connect to?
cli-anything-seaclip connects to a SeaClip-Lite backend over HTTP and also performs direct SQLite reads. cli-anything-seaclip is designed for developer environments where the backend service and database are accessible locally for fast scripting and iteration.
What are the prerequisites for cli-anything-seaclip?
cli-anything-seaclip requires Python 3.10+ and a running SeaClip-Lite backend. cli-anything-seaclip expects the backend to be available locally (for example on localhost) so the CLI can run without storing session state.