9 lines
386 B
Bash
Executable File
9 lines
386 B
Bash
Executable File
#!/bin/bash
|
|
# V89 Skill-to-Agent POC - Opus WIRE 19-avr doctrine 95
|
|
# Skill: qdrant-collections
|
|
# Description: Qdrant collections
|
|
# Whitelist-safe: no sudo, no destructive ops, timeout-protected
|
|
|
|
set -e
|
|
timeout 8 bash -c 'curl -sk --max-time 3 http://localhost:6333/collections 2>/dev/null | head -c 300' 2>&1 || echo "{\"skill\":\"qdrant-collections\",\"error\":\"timeout_or_error\"}"
|