HKUDS/CLI-Anything/skills/cli-anything-seaclip/SKILL.md
cli-anything-seaclip
Command-line interface for SeaClip-Lite - A stateless CLI for managing issues, pipelines, agents, schedules, and activity on the SeaClip-Lite project management board.
- Source repository stars
- 46,599
- Declared platforms
- 0
- Static risk flags
- 0
- Last source update
- 2026-08-03
- Source checked
- 2026-08-04
Decision brief
What it does—and where it fits
A stateless command-line interface for SeaClip-Lite project management. Communicates via HTTP API and direct SQLite reads. No local state or session.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/HKUDS/CLI-Anything --skill "skills/cli-anything-seaclip"Inspect the Agent Skill "cli-anything-seaclip" from https://github.com/HKUDS/CLI-Anything/blob/39634a640cf20bc603b4faae4d31069c44821a9a/skills/cli-anything-seaclip/SKILL.md at commit 39634a640cf20bc603b4faae4d31069c44821a9a. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Usage
Review the “Usage” section in the pinned source before continuing.
Review and apply the “Usage” source section. - 02
Installation
Prerequisites: - Python 3.10+ - SeaClip-Lite backend running at localhost:5200
Python 3.10+SeaClip-Lite backend running at localhost:5200Prerequisites: - Python 3.10+ - SeaClip-Lite backend running at localhost:5200 - 03
Basic Commands
Review the “Basic Commands” section in the pinned source before continuing.
Review and apply the “Basic Commands” source section. - 04
Show help
cli-anything-seaclip --help
cli-anything-seaclip --help
Permission review
Static risk signals and limitations
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 84/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 46,599 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- HKUDS/CLI-Anything
- Skill path
- skills/cli-anything-seaclip/SKILL.md
- Commit
- 39634a640cf20bc603b4faae4d31069c44821a9a
- License
- Apache-2.0
- Collected
- 2026-08-04
- Default branch
- main
View the original SKILL.md
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 | 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 list
For AI Agents
When using this CLI programmatically:
- Always use
--jsonflag for parseable output - Check return codes - 0 for success, non-zero for errors
- Parse stderr for error messages on failure
- Error responses include
{"error": "message"}in JSON mode
Version
1.0.0