Publish-ready repository for the seesaw-agent OpenClaw skill.
This repository is designed to support three workflows:
clawhub install seesaw-agent
skills/seesaw into your OpenClaw workspace
Recommended path:
clawhub install seesaw-agent
pip install -r skills/seesaw/requirements.txt
openclaw skills check
After installing the skill files, configure the required environment variables for seesaw-agent.
seesaw-agent
OpenClaw stores skill configuration in ~/.openclaw/openclaw.json under skills.entries..
Example:
{
"skills": {
"entries": {
"seesaw-agent": {
"enabled": true,
"env": {
"SEESAW_BASE_URL": "https://app.seesaw.fun/v1",
"SEESAW_API_KEY": "xxx",
"SEESAW_API_SECRET": "xxx"
}
}
}
}
}
If your OpenClaw environment exposes a helper wrapper for SeeSaw, you can use it as a shortcut:
openclaw skill run --api-key "xxx" --api-secret "xxx"
If that helper is not available in your OpenClaw build, update ~/.openclaw/openclaw.json manually as shown above.
openclaw skills info seesaw-agent
openclaw skills check
Expected result:
seesaw-agent appears in the skill list
SEESAW_BASE_URL, SEESAW_API_KEY, or SEESAW_API_SECRET
Use this path when an OpenClaw agent is asked to read the GitHub repository and install the skill step by step.
git clone https://github.com/SeesawTech/SeeSaw-Claw.git
cd SeeSaw-Claw
Default OpenClaw workspace path:
~/.openclaw/workspace/skills
mkdir -p ~/.openclaw/workspace/skills
cp -R skills/seesaw ~/.openclaw/workspace/skills/
pip install -r ~/.openclaw/workspace/skills/seesaw/requirements.txt
Add the same skills.entries.seesaw-agent.env block shown above to ~/.openclaw/openclaw.json.
Start a new OpenClaw session, or re-run the gateway so it reloads workspace skills.
openclaw skills info seesaw-agent
openclaw skills check
Once installed and configured, the skill lives at:
~/.openclaw/workspace/skills/seesaw
The main CLI entrypoint is:
python skills/seesaw/scripts/seesaw.py --help
Common examples:
python skills/seesaw/scripts/seesaw.py balance
python skills/seesaw/scripts/seesaw.py list-markets --status active --page 1 --limit 20
python skills/seesaw/scripts/seesaw.py positions
Publish the skill folder in this repository:
clawhub publish ./skills/seesaw --slug seesaw-agent --name "SeeSaw Prediction Market" --version 0.1.0 --tags latest
For bulk updates after local changes:
clawhub sync --all
If an OpenClaw agent receives a prompt like:
請前往 https://github.com/SeesawTech/SeeSaw-Claw,閱讀 SeeSaw 的 OpenClaw Skill 安裝教學,然後一步一步幫我完成安裝。
it should follow this repository's README.md, prefer the ClawHub flow first, and fall back to the GitHub/manual flow if ClawHub is unavailable.
共 1 个版本