install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/aronchick/sentiment-score" ~/.openclaw/skills/openclaw-skills-sentiment-score-8a1ebb && rm -rf "$T"
manifest:
skills/aronchick/sentiment-score/skill.yamlsource content
name: "expanso-sentiment-score" version: "1.0.1" description: "Score text sentiment from -1 (negative) to +1 (positive)"
author: name: "Expanso Team" url: "https://expanso.io" avatar: "EX"
credentials:
- name: OPENAI_API_KEY required: false
inputs:
- name: text type: string required: true
outputs:
- name: score type: number description: Sentiment score -1 to +1
- name: label type: string description: positive, negative, or neutral
backends:
- name: openai type: remote requires: [OPENAI_API_KEY]
- name: ollama type: local models: [llama3.2]
components: inputs: [stdin, http_server] processors: [mapping, openai_chat_completion] outputs: [stdout, sync_response]