Source profileQuality 84/100

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.

Best for

    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

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    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.

    Source-detected install commandSource
    npx skills add https://github.com/HKUDS/CLI-Anything --skill "skills/cli-anything-seaclip"
    Safe inspection promptEditorial

    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

    1. 01

      Usage

      Review the “Usage” section in the pinned source before continuing.

      Review and apply the “Usage” source section.
    2. 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
    3. 03

      Basic Commands

      Review the “Basic Commands” section in the pinned source before continuing.

      Review and apply the “Basic Commands” source section.
    4. 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

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score84/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars46,599SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated 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.

    CommandDescription
    listList issues (--status, --priority, --search, --limit)
    createCreate a new issue (--title, --description, --priority)
    moveMove issue to column (ISSUE_ID --column COL)
    statusUpdate issue status (ISSUE_ID --set STATUS)
    deleteDelete an issue (ISSUE_ID)

    Agent

    Pipeline agent commands.

    CommandDescription
    listList all pipeline agents

    Pipeline

    Pipeline control commands.

    CommandDescription
    startStart pipeline (--issue UUID --mode auto/manual)
    statusGet pipeline status (--issue UUID)
    resumeResume paused pipeline (--issue UUID)
    stopStop running pipeline (--issue UUID)

    Scheduler

    Schedule configuration commands.

    CommandDescription
    listList all schedule configs
    addAdd schedule (--name, --cron, --repo)
    syncTrigger sync (SCHEDULE_ID)

    Activity

    Activity feed commands.

    CommandDescription
    listRecent activity (--limit N)

    Server

    Server utility commands.

    CommandDescription
    healthCheck backend health

    Output Formats

    All commands support dual output modes:

    • Human-readable (default): Tables, colors, formatted text
    • Machine-readable (--json flag): 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:

    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