Install
$ agentstack add skill-vibesurf-ai-claude-surf-config-vibesurf ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Config VibeSurf - VibeSurf Configuration
Overview
Manage VibeSurf API key and workflow configurations. Import, export, and execute custom workflows.
When to Use
- User needs to set up VibeSurf API key
- User wants to import a workflow from JSON
- User needs to export a workflow to JSON
API Endpoints
Base path: $VIBESURF_ENDPOINT/api/vibesurf
API Key Management
| Action | Method | Endpoint | Description | |--------|--------|----------|-------------| | Check Status | GET | /api/vibesurf/status | Get VibeSurf connection status | | Verify Key | POST | /api/vibesurf/verify-key | Verify and store API key |
Workflow Management
| Action | Method | Endpoint | Description | |--------|--------|----------|-------------| | Import Workflow | POST | /api/vibesurf/import-workflow | Import workflow from JSON | | Export Workflow | GET | /api/vibesurf/export-workflow/{flow_id} | Export workflow to JSON file |
Request Examples
Verify API Key
POST /api/vibesurf/verify-key
{
"api_key": "vs-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
Import Workflow
POST /api/vibesurf/import-workflow
{
"workflow_json": "{\"name\": \"My Workflow\", \"description\": \"...\", \"data\": {...}}"
}
API Key Format
VibeSurf API keys must:
- Start with
vs- - Be 51 characters total length
- Example:
vs-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Workflow Import/Export
Import
- Accepts Langflow-compatible JSON format
- Requires valid VibeSurf API key
- Returns
workflow_idandedit_url
Export
- Exports workflow to JSON file
- Removes sensitive data (API keys) automatically
- Returns file path to exported JSON
Workflow
- Check API key status →
GET /api/vibesurf/status - Set up API key (if needed) →
POST /api/vibesurf/verify-key - Import workflows →
POST /api/vibesurf/import-workflow - Export workflows →
GET /api/vibesurf/export-workflow/{flow_id}
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: vibesurf-ai
- Source: vibesurf-ai/claude-surf
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.