vibetrading-ai-trading-code-generator
ยท v1.0.0
Generate executable Hyperliquid trading strategy code from natural language prompts. Use when a user wants to create automated trading strategies for Hyperliquid exchange based on their trading ideas, technical indicators, or VibeTrading signals. The skill generates complete Python code with proper error handling, logging, and configuration using actual Hyperliquid API wrappers.
โ ๏ธ Hazard Flags
๐ Capabilities
Execution
- โ Shell execution
- โ Code execution
- โ Install dependencies
- โ Persistence
- Privilege: user
Filesystem
- โ Read workspace
- โ Write workspace
- โ Read home
- โ Write home
- โ Read system
- โ Delete
Network
- Egress: any
- โ Ingress
Credentials
- โ Environment vars
- โ Credential files
- โ Browser data
- โ Keychain
Actions
๐ Containment
Level: maximum
- SANDBOX_CONTAINER: Code execution capability
- LOG_ACTIONS: Audit trail for all actions
โก Risks
Mitigation: Review SKILL.md for hidden instructions. Do not use with untrusted input.
Mitigation: Add proper exit conditions or limits to loops
Mitigation: Remove destructive file operations.
Mitigation: Remove SQL exploitation patterns.
Mitigation: Provide clear, detailed description of skill functionality
Mitigation: Remove references to sensitive data collection.
Mitigation: Ensure network access is necessary and documented
Want a deeper analysis?
This report was generated by static analysis. Get an LLM-powered deep review with behavioral reasoning and attack surface mapping.
๐ง Deep Analysis โ $5.00๐จ Incident Response
Kill switch: Stop the agent process
Containment: Review logs for unexpected actions
Recovery: Depends on skill capabilities
๐ Raw SSDS JSON click to expand
{
"meta": {
"document_id": "ssds:auto:vibetrading-code-gen:1.0.0",
"ssds_version": "0.2.0",
"scanner_version": "0.4.0+fe6fd9123d50",
"created_at": "2026-03-05T13:13:44.183Z",
"created_by": {
"agent": "safeagentskills-cli/generate-ssds"
},
"language": "en",
"notes": "Auto-generated SSDS. Manual review recommended."
},
"skill": {
"name": "vibetrading-ai-trading-code-generator",
"version": "1.0.0",
"format": "agent_skill",
"description": "Generate executable Hyperliquid trading strategy code from natural language prompts. Use when a user wants to create automated trading strategies for Hyperliquid exchange based on their trading ideas, technical indicators, or VibeTrading signals. The skill generates complete Python code with proper error handling, logging, and configuration using actual Hyperliquid API wrappers.",
"publisher": "unknown",
"source": {
"channel": "local"
},
"artifact": {
"sha256": "2e02b2922ce9b5deb05312e0005810347d16ba7bb0a4439e2f8830b92d93524b",
"hash_method": "files_sorted"
}
},
"capabilities": {
"execution": {
"can_exec_shell": true,
"can_exec_code": false,
"privilege_level": "user",
"can_install_deps": false,
"can_persist": false
},
"filesystem": {
"reads_workspace": true,
"reads_user_home": false,
"reads_system": false,
"writes_workspace": true,
"writes_user_home": false,
"writes_system": false,
"can_delete": true
},
"network": {
"egress": "any",
"ingress": false
},
"credentials": {
"reads_env_vars": true,
"reads_credential_files": false,
"reads_browser_data": false,
"reads_keychain": false
},
"services": [],
"actions": {
"can_send_messages": false,
"can_post_public": false,
"can_purchase": false,
"can_transfer_money": false,
"can_deploy": false,
"can_delete_external": false
},
"prompt_injection_surfaces": [
"web",
"documents"
],
"content_types": [
"general"
]
},
"hazards": {
"hdac": {
"H": 4,
"D": 4,
"A": 1,
"C": 1
},
"flags": [
"EXEC",
"FS_READ_WORKSPACE",
"FS_WRITE_WORKSPACE",
"FS_DELETE",
"NET_EGRESS_ANY",
"CREDS_ENV",
"PI_WEB",
"PI_DOCUMENTS"
],
"custom_flags": [
{
"code": "PROMPT_INJECTION",
"name": "Prompt Injection Risk",
"description": "Contains prompt injection patterns in: SKILL.md"
},
{
"code": "FILE_DELETE",
"name": "File Deletion",
"description": "Can delete files in: backtest_engine/strategy_adapter.py, README.md, scripts/code_validator.py"
},
{
"code": "RESOURCE_ABUSE",
"name": "Resource Abuse Risk",
"description": "RESOURCE_ABUSE_INFINITE_LOOP detected: Infinite loop without clear exit condition"
},
{
"code": "TOOL_ABUSE",
"name": "Unauthorized Tool Use",
"description": "MCP_SYS_FILE_DESTRUCTION: File destruction or wiping commands"
},
{
"code": "SOCIAL_ENGINEERING",
"name": "Social Engineering Risk",
"description": "SOCIAL_ENG_VAGUE_DESCRIPTION: Skill description is too vague or missing"
},
{
"code": "COMMAND_INJECTION",
"name": "Command Injection Risk",
"description": "MCP_SQL_BLIND: Blind SQL injection, system table access, or stored procedure abuse"
},
{
"code": "TOOL_POISONING",
"name": "Tool Poisoning",
"description": "Hidden secondary behavior detected: MCP_TOOL_POISONING_SENSITIVE_DATA"
},
{
"code": "DATA_EXFILTRATION",
"name": "Data Exfiltration Risk",
"description": "DATA_EXFIL_NETWORK_REQUESTS, DATA_EXFIL_HTTP_POST, DATA_EXFIL_SENSITIVE_FILES, DATA_EXFIL_ENV_VARS: HTTP client library imports that enable external communication"
}
],
"confidence": {
"level": "medium",
"basis": [
"static_analysis"
],
"notes": "Detected 8 security patterns (19 vendored rule hits). Review recommended."
},
"rationale": {
"H": "H4: Critical: Privilege escalation or malware detected",
"D": "D4: Critical: Credential theft or data exfiltration",
"A": "A1: Local side effects only",
"C": "C1: General content"
}
},
"containment": {
"level": "maximum",
"required": [
{
"control": "SANDBOX_CONTAINER",
"reason": "Code execution capability"
}
],
"recommended": [
{
"control": "LOG_ACTIONS",
"reason": "Audit trail for all actions"
}
],
"uncontained_risk": "Risk level depends on manual review of actual capabilities."
},
"risks": {
"risks": [
{
"risk": "Prompt injection patterns detected in: SKILL.md",
"severity": "high",
"mitigation": "Review SKILL.md for hidden instructions. Do not use with untrusted input."
},
{
"risk": "Resource abuse detected: RESOURCE_ABUSE_INFINITE_LOOP",
"severity": "high",
"mitigation": "Add proper exit conditions or limits to loops"
},
{
"risk": "Unauthorized tool use: MCP_SYS_FILE_DESTRUCTION",
"severity": "critical",
"mitigation": "Remove destructive file operations."
},
{
"risk": "Command injection risk: MCP_SQL_BLIND",
"severity": "high",
"mitigation": "Remove SQL exploitation patterns."
},
{
"risk": "Social engineering indicators: SOCIAL_ENG_VAGUE_DESCRIPTION",
"severity": "low",
"mitigation": "Provide clear, detailed description of skill functionality"
},
{
"risk": "Tool poisoning: hidden behaviors detected (MCP_TOOL_POISONING_SENSITIVE_DATA)",
"severity": "high",
"mitigation": "Remove references to sensitive data collection."
},
{
"risk": "Data exfiltration patterns: DATA_EXFIL_NETWORK_REQUESTS, DATA_EXFIL_HTTP_POST, DATA_EXFIL_SENSITIVE_FILES, DATA_EXFIL_ENV_VARS",
"severity": "critical",
"mitigation": "Ensure network access is necessary and documented"
}
],
"limitations": [
"Static analysis only - runtime behavior not verified"
]
},
"incident_response": {
"kill_switch": [
"Stop the agent process"
],
"containment": [
"Review logs for unexpected actions"
],
"recovery": [
"Depends on skill capabilities"
]
},
"evidence": [
{
"evidence_id": "EV:file-1",
"type": "file_excerpt",
"title": "api_wrappers/hyperliquid_api.py",
"file_path": "api_wrappers/hyperliquid_api.py"
},
{
"evidence_id": "EV:file-2",
"type": "file_excerpt",
"title": "backtest_engine/data_downloader.py",
"file_path": "backtest_engine/data_downloader.py"
},
{
"evidence_id": "EV:file-3",
"type": "file_excerpt",
"title": "backtest_engine/historical_backtest.py",
"file_path": "backtest_engine/historical_backtest.py"
},
{
"evidence_id": "EV:file-4",
"type": "file_excerpt",
"title": "backtest_engine/strategy_adapter.py",
"file_path": "backtest_engine/strategy_adapter.py"
},
{
"evidence_id": "EV:file-5",
"type": "file_excerpt",
"title": "examples/grid_trading_example.py",
"file_path": "examples/grid_trading_example.py"
},
{
"evidence_id": "EV:file-6",
"type": "file_excerpt",
"title": "examples/README.md",
"file_path": "examples/README.md"
},
{
"evidence_id": "EV:file-7",
"type": "file_excerpt",
"title": "examples/rsi_strategy_example.py",
"file_path": "examples/rsi_strategy_example.py"
},
{
"evidence_id": "EV:file-8",
"type": "file_excerpt",
"title": "README.md",
"file_path": "README.md"
},
{
"evidence_id": "EV:file-9",
"type": "file_excerpt",
"title": "scripts/backtest_runner.py",
"file_path": "scripts/backtest_runner.py"
},
{
"evidence_id": "EV:file-10",
"type": "file_excerpt",
"title": "scripts/check_python_version.py",
"file_path": "scripts/check_python_version.py"
},
{
"evidence_id": "EV:cisco-1",
"type": "file_excerpt",
"title": "DATA_EXFIL_NETWORK_REQUESTS [MEDIUM] api_wrappers/hyperliquid_api.py:15: # Try to import requests, but provide fallback",
"file_path": "api_wrappers/hyperliquid_api.py"
},
{
"evidence_id": "EV:cisco-2",
"type": "file_excerpt",
"title": "MCP_SQL_BLIND [HIGH] api_wrappers/hyperliquid_api.py:208: time.sleep(0.1)",
"file_path": "api_wrappers/hyperliquid_api.py"
},
{
"evidence_id": "EV:cisco-3",
"type": "file_excerpt",
"title": "DATA_EXFIL_NETWORK_REQUESTS [MEDIUM] backtest_engine/data_downloader.py:17: import requests",
"file_path": "backtest_engine/data_downloader.py"
},
{
"evidence_id": "EV:cisco-4",
"type": "file_excerpt",
"title": "DATA_EXFIL_HTTP_POST [CRITICAL] backtest_engine/data_downloader.py:50: response = requests.post(url, headers=headers, json=data, timeout=30)",
"file_path": "backtest_engine/data_downloader.py"
},
{
"evidence_id": "EV:cisco-5",
"type": "file_excerpt",
"title": "DATA_EXFIL_SENSITIVE_FILES [HIGH] backtest_engine/historical_backtest.py:406: with open(filepath, 'w', encoding='utf-8') as f:",
"file_path": "backtest_engine/historical_backtest.py"
},
{
"evidence_id": "EV:cisco-6",
"type": "file_excerpt",
"title": "MCP_SQL_BLIND [HIGH] examples/grid_trading_example.py:150: time.sleep(0.1)",
"file_path": "examples/grid_trading_example.py"
},
{
"evidence_id": "EV:cisco-7",
"type": "file_excerpt",
"title": "MCP_SQL_BLIND [HIGH] examples/rsi_strategy_example.py:231: time.sleep(0.05)",
"file_path": "examples/rsi_strategy_example.py"
},
{
"evidence_id": "EV:cisco-8",
"type": "file_excerpt",
"title": "MCP_SYS_FILE_DESTRUCTION [CRITICAL] README.md:89: rm -rf logs/* simulation_results/* sessions/*",
"file_path": "README.md"
},
{
"evidence_id": "EV:cisco-9",
"type": "file_excerpt",
"title": "DATA_EXFIL_SENSITIVE_FILES [HIGH] scripts/backtest_runner.py:238: with open(filepath, 'w', encoding='utf-8') as f:",
"file_path": "scripts/backtest_runner.py"
},
{
"evidence_id": "EV:cisco-10",
"type": "file_excerpt",
"title": "DATA_EXFIL_SENSITIVE_FILES [HIGH] scripts/code_formatter.py:133: with open(filepath, 'r') as f:",
"file_path": "scripts/code_formatter.py"
}
]
}