TopRank Skills

Home / Claw Skills / Autres / Expanso Language Detect
Official OpenClaw rules 15%

Expanso Language Detect

language detect

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
aronchick/expanso-language-detect
Author
aronchick
Source Repo
openclaw/skills
Version
-
Source Path
skills/aronchick/expanso-language-detect
Latest Commit SHA
638356de8fb4f4a38ff366988753e31bae564dda

Extracted Content

SKILL.md excerpt

# language-detect

Detect the language of text using AI

## 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/language-detect/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

# language-detect

Detect the language of text using AI.

## Usage

```bash
export OPENAI_API_KEY=sk-...
echo "Bonjour le monde" | expanso-edge run pipeline-cli.yaml
```

## Output

```json
{
  "language": "French",
  "code": "fr",
  "confidence": 0.98
}
```

Related Claw Skills