TopRank Skills

Home / Claw Skills / Others / Sentiment Score
Official OpenClaw rules 15%

Sentiment Score

sentiment score

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Sentiment Score 技能。 若已安装,则直接安装 Sentiment Score 技能。

Overview

Skill Key
aronchick/sentiment-score
Author
aronchick
Source Repo
openclaw/skills
Version
-
Source Path
skills/aronchick/sentiment-score
Latest Commit SHA
88f0107ab54b2ea13adc2450590d37ca88ca2bef

Extracted Content

SKILL.md excerpt

# sentiment-score

"Score text sentiment from -1 (negative) to +1 (positive)"

## Requirements

- Expanso Edge installed (`expanso-edge` binary in PATH)
- Install via: `clawhub install expanso-edge`

## Usage

### CLI Pipeline
```bash
# Run standalone
echo '<input>' | expanso-edge run pipeline-cli.yaml
```

### MCP Pipeline
```bash
# Start as MCP server
expanso-edge run pipeline-mcp.yaml
```

### Deploy to Expanso Cloud
```bash
expanso-cli job deploy https://skills.expanso.io/sentiment-score/pipeline-cli.yaml
```

## Files

| File | Purpose |
|------|---------|
| `skill.yaml` | Skill metadata (inputs, outputs, credentials) |
| `pipeline-cli.yaml` | Standalone CLI pipeline |
| `pipeline-mcp.yaml` | MCP server pipeline |

README excerpt

# sentiment-score

Score text sentiment from -1 (negative) to +1 (positive).

## Usage

```bash
echo "I love this product!" | expanso-edge run pipeline-cli.yaml
echo "This is terrible" | expanso-edge run pipeline-cli.yaml
```

## Output

```json
{"score": 0.85, "label": "positive", "confidence": 0.92}
```

Related Claw Skills