mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 09:01:17 +00:00
chore: update skill install command to use rivet-dev/skills
This commit is contained in:
parent
43db33590d
commit
57af31faed
6 changed files with 6 additions and 6 deletions
2
.github/workflows/claude-code-review.yml
vendored
2
.github/workflows/claude-code-review.yml
vendored
|
|
@ -37,7 +37,7 @@ jobs:
|
|||
node-version: "20"
|
||||
|
||||
- name: Install sandbox-agent skill
|
||||
run: npx skills add https://sandboxagent.dev/docs --yes
|
||||
run: npx skills add rivet-dev/skills -s sandbox-agent --yes
|
||||
|
||||
- name: Run Claude Code Review
|
||||
id: claude-review
|
||||
|
|
|
|||
2
.github/workflows/claude.yml
vendored
2
.github/workflows/claude.yml
vendored
|
|
@ -36,7 +36,7 @@ jobs:
|
|||
node-version: "20"
|
||||
|
||||
- name: Install sandbox-agent skill
|
||||
run: npx skills add https://sandboxagent.dev/docs --yes
|
||||
run: npx skills add rivet-dev/skills -s sandbox-agent --yes
|
||||
|
||||
- name: Run Claude Code
|
||||
id: claude
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ The Sandbox Agent acts as a universal adapter between your client application an
|
|||
Install skill with:
|
||||
|
||||
```
|
||||
npx skills add https://sandboxagent.dev/docs
|
||||
npx skills add rivet-dev/skills -s sandbox-agent
|
||||
```
|
||||
|
||||
### SDK
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ https://rivet.dev/docs/skill.md
|
|||
To add it to an agent using the Skills CLI:
|
||||
|
||||
```
|
||||
npx skills add rivet.dev/docs/skill.md
|
||||
npx skills add rivet-dev/skills -s sandbox-agent
|
||||
```
|
||||
|
||||
If you run a reverse proxy in front of the docs, make sure `/skill.md` and `/.well-known/skills/*`
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ icon: "rocket"
|
|||
<Steps>
|
||||
<Step title="Install skill (optional)">
|
||||
```bash
|
||||
npx skills add https://sandboxagent.dev/docs
|
||||
npx skills add rivet-dev/skills -s sandbox-agent
|
||||
```
|
||||
</Step>
|
||||
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@ function UniversalAPIDiagram() {
|
|||
|
||||
const CopyInstallButton = () => {
|
||||
const [copied, setCopied] = useState(false);
|
||||
const installCommand = 'npx skills add https://sandboxagent.dev/docs';
|
||||
const installCommand = 'npx skills add rivet-dev/skills -s sandbox-agent';
|
||||
|
||||
const handleCopy = async () => {
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue