feat: add OpenClaw automated setup scripts#40
Open
Daiyimo wants to merge 1 commit intostepfun-ai:mainfrom
Open
feat: add OpenClaw automated setup scripts#40Daiyimo wants to merge 1 commit intostepfun-ai:mainfrom
Daiyimo wants to merge 1 commit intostepfun-ai:mainfrom
Conversation
- add_stepfun.sh for Linux/macOS (interactive, with backup) - install_stepfun.ps1 for Windows (auto-elevation, UTF-8 support) - Update README.md with "Automated Setup Scripts" section Scripts provide one-line configuration: - Choice of OpenRouter Free (50 RPM) or StepFun Official API - Automatic provider and model setup - Sets Step 3.5 Flash as primary model - Creates timestamped backups of openclaw.json Co-authored-by: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat: add automated setup scripts for OpenClaw + Step 3.5 Flash
📦 Added Files
cookbooks/openclaw/add_stepfun.sh- Linux/macOS one-line setupcookbooks/openclaw/install_stepfun.ps1- Windows PowerShell setup (auto-elevate)cookbooks/openclaw/README.mdwith "Automated Setup Scripts" section✨ Features
~/.openclaw/openclaw.jsonjq(Unix) and admin rights (Windows)🚀 Usage
Linux / macOS
```bash
curl -fsSL https://raw.githubusercontent.com/stepfun-ai/Step-3.5-Flash/main/cookbooks/openclaw/add_stepfun.sh | sudo bash
```
Windows (PowerShell as Admin)
```powershell
irm "https://raw.githubusercontent.com/stepfun-ai/Step-3.5-Flash/main/cookbooks/openclaw/install_stepfun.ps1" -UseBasicParsing | iex
```
📝 Context
These scripts originate from the openclaw-napcat project, where they have been battle-tested by the community. They provide a convenient alternative to manual WebUI configuration for users who prefer command-line tools.
✅ Checklist
Co-authored-by: Claude noreply@anthropic.com