# Send Supernal Coding CLI to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "sc",
    "name": "Supernal Coding CLI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ianderrington/sc",
    "canonicalUrl": "https://clawhub.ai/ianderrington/sc",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/sc",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sc",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "sc",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T15:21:17.394Z",
      "expiresAt": "2026-05-16T15:21:17.394Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sc",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sc",
        "contentDisposition": "attachment; filename=\"sc-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "sc"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/sc"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/sc",
    "downloadUrl": "https://openagent3.xyz/downloads/sc",
    "agentUrl": "https://openagent3.xyz/skills/sc/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sc/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sc/agent.md"
  }
}
```
## Documentation

### sc - Supernal Coding CLI

Development workflow automation, task management, requirements tracking, and autonomous task execution.

Canonical scope:

sc is for developer/project workflow commands.
orch is for orchestration runtime operations (capacity/spawn/triage/heartbeat/automation).
Do not assume same-name commands across CLIs are semantic equivalents.

### Installation

npm install -g @supernalintelligence/supernal-coding

### Task Management (PRIMARY)

sc task create "Title" --assignee @me --priority P2
sc task list                         # Your tasks  
sc task list --all                   # All repos
sc task list --status in-progress    # Filter by status
sc task view TASK-123                # View task details
sc task start TASK-123               # Begin work (sets in-progress)
sc task done TASK-123 --notes "..."  # Complete task
sc task next                         # Get next task (ralph mode)
sc task verify TASK-123              # Check evidence (optional)
sc task edit TASK-123                # Edit in $EDITOR

# Session linkage (dashboard only - requires localhost:3006)
sc task link TASK-123                # Link to current session (needs OPENCLAW_SESSION_KEY)
sc task link TASK-123 --session "..."  # Link with explicit session
sc task linked                       # List linked tasks
sc task unlink TASK-123              # Remove link

Storage: .supernal/tasks/ (per-repo) or ~/.supernal/tasks/ (global)

Workflow Guide: See docs/TASK_WORKFLOW.md for how tasks, requirements, features, and specs work together.

### Project Health & Status

sc health                    # Run health checks
sc monitor                   # Development status dashboard
sc status                    # Alias for monitor

### Requirements & Traceability

sc trace                     # Traceability matrix
sc planning                  # Manage epics, features, requirements, tasks
sc audit                     # Audit features, requirements, tests

### Git & Workflow

sc git                       # Git workflow operations
sc git smart                 # Smart commits, branch management
sc workflow                  # Project workflow management

### Ralph (Autonomous Loops)

sc ralph                     # Autonomous task execution
sc spec <action> [target]    # Spec file management for ralph loops

### Code Quality

sc code <action>             # Code quality and contracts
sc compliance                # HIPAA, SOC 2, ISO 27001 validation
sc security                  # Database security verification

### Documentation

sc docs                      # Documentation management
sc search <query>            # Search across all content

### System

sc init [dir]                # Initialize project
sc update                    # Check for updates
sc system                    # Config, upgrade, sync, license

### New Feature Workflow

sc planning feature create "Add user auth"
sc spec create auth-feature.md
sc ralph execute auth-feature.md

### Health Check Before PR

sc health
sc audit
sc compliance check

### Knowledge & Workspace Hygiene

# Run knowledge store cleanup (pair with sc health)
know tidy              # Audit knowledge store
know tidy --fix        # Auto-fix issues (normalize tags, move misplaced files)
know reindex           # Rebuild INDEX.md
know validate          # Check frontmatter schema

# Recommended: add to heartbeat or nightly cron
know tidy --fix && know reindex

### Traceability Report

sc trace report --format markdown

### Task Assignment Flow

# Orchestrator assigns task
sc task create "Build API endpoint" --assignee @codex-coder --priority P1

# Agent picks up work
sc task next                # Get your next assigned task
sc task start TASK-123      # Mark as in-progress
# ... do work ...
sc task done TASK-123 --notes "Completed, PR #456"

### Ralph Loops (Autonomous Execution)

# Create spec
sc spec create task-name.md

# Execute with ralph
sc ralph execute task-name.md --max-iterations 10

See orch skill for agent orchestration and spawning.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ianderrington
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-09T15:21:17.394Z
- Expires at: 2026-05-16T15:21:17.394Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/sc)
- [Send to Agent page](https://openagent3.xyz/skills/sc/agent)
- [JSON manifest](https://openagent3.xyz/skills/sc/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/sc/agent.md)
- [Download page](https://openagent3.xyz/downloads/sc)