用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jleechanorg/claude-commands --skill ai-universe-httpie命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Token-efficient second opinion slash command /advice. Extracts decision point + artifact (≤150 lines), then fans out in parallel: (1) Opus subagent reviewer with fallback chain codex→agy→cursor, (2) /research on the decision topic, (3) /secondo multi-model opinion. Use instead of advisor() which ships the full conversation uncached.
Use this skill when working in repositories managed by Agent Orchestrator or when the user asks how to use `ao` properly. Covers the default AO workflow: bootstrap with `ao start`, dispatch work with `ao spawn`, inspect progress with `ao status` or `ao session ls`, steer sessions with `ao send`, and recover or clean up sessions safely. Includes strict parameter fidelity, pre-spawn cap cleanup, quota-wall fallback, and post-spawn verification.
Generate a full agento PR status report — draft readiness, canonical /green, zero-touch rate, inline display, and Slack summary.
基于 SOC 职业分类
正在显示 SKILL.md
| name | ai-universe-httpie |
| description | Use HTTPie to call AI Universe MCP server for multi-model analysis |
| type | usage |
| scope | project |
This skill demonstrates how to use HTTPie to call the AI Universe MCP server directly for multi-model AI feedback.
Install HTTPie:
# macOS
brew install httpie
# Ubuntu/Debian
apt-get install httpie
# Python (universal)
pip install httpie
Authenticate:
node scripts/auth-cli.mjs login
Prerequisite: Run
node scripts/auth-cli.mjs loginat least once so a valid token exists locally.
# Export token for reuse
export TOKEN=$(node scripts/auth-cli.mjs token)
MCP_URL="https://ai-universe-backend-dev-114133832173.us-central1.run.app/mcp"
echo '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "agent.second_opinion",
"arguments": {
"question": "Should I use Redis or in-memory caching for rate limiting?"
}
},
"id": 1
}' | http POST "$MCP_URL" \
Accept:'application/json, text/event-stream' \
Authorization:"Bearer $TOKEN" \
--timeout=180
# Create request JSON
REQUEST_JSON=$(cat <<'EOF'
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "agent.second_opinion",
"arguments": {
"question": "Design Review: Authentication system using Firebase\n\nAnalyze the architectural decisions:\n- Is OAuth flow appropriate?\n- Are there better alternatives?\n- What are potential security issues?\n- Industry best practices comparison?"
}
},
"id": 1
}
EOF
)
# Send request with HTTPie
echo "$REQUEST_JSON" | http POST "$MCP_URL" \
Accept:'application/json, text/event-stream' \
Authorization:"Bearer $TOKEN" \
--timeout=180 \
--print=b
QUESTION="Code Review: Review this authentication flow for:
- Security vulnerabilities
- Token handling best practices
- Error handling gaps
- Rate limiting implementation
- Session management"
echo "{
\"jsonrpc\": \"2.0\",
\"method\": \"tools/call\",
\"params\": {
\"name\": \"agent.second_opinion\",
\"arguments\": {
\"question\": $(echo "$QUESTION" | jq -Rs .)
}
},
\"id\": 1
}" | http POST "$MCP_URL" \
Accept:'application/json, text/event-stream' \
Authorization:"Bearer $TOKEN" \
--timeout=180
http POST "$MCP_URL" \
Accept:'application/json, text/event-stream' \
Authorization:"Bearer $TOKEN" \
jsonrpc=2.0 \
method=tools/call \
params:='{
"name": "agent.second_opinion",
"arguments": {
"question": "Bug Investigation: Investigate potential issues:\n- Race conditions in async operations\n- Memory leaks in long-running processes\n- Edge cases in error handling\n- Type safety concerns"
}
}' \
id:=1
# Default behavior - pretty JSON output
echo "$REQUEST_JSON" | http POST "$MCP_URL" \
Authorization:"Bearer $TOKEN"
echo "$REQUEST_JSON" | http POST "$MCP_URL" \
Authorization:"Bearer $TOKEN" \
--download \
--output=response.json
echo "$REQUEST_JSON" | http POST "$MCP_URL" \
Authorization:"Bearer $TOKEN" \
--print=HhBb # H=request headers, h=response headers, B=request body, b=response body
echo "$REQUEST_JSON" | http POST "$MCP_URL" \
Authorization:"Bearer $TOKEN" \
--follow
echo "$REQUEST_JSON" | http POST "$MCP_URL" \
Authorization:"Bearer $TOKEN" \
--timeout=300 # 5 minutes
RESPONSE=$(echo "$REQUEST_JSON" | http POST "$MCP_URL" \
Authorization:"Bearer $TOKEN" \
--print=b)
echo "$RESPONSE" | jq -r '.result.content[0].text' | jq -r '.primary.response'
echo "$RESPONSE" | jq -r '.result.content[0].text' | jq -r '.synthesis.response'
echo "$RESPONSE" | jq -r '.result.content[0].text' | jq '{
models: .summary.totalModels,
tokens: .summary.totalTokens,
cost: .summary.totalCost
}'
# Get current rate limit status
USER_ID=$(node scripts/auth-cli.mjs status | awk '/UID:/ {print $2}')
if [ -z "$USER_ID" ]; then
echo "❌ Unable to determine user ID. Run: node scripts/auth-cli.mjs login"
else
jq -n --arg user_id "$USER_ID" '{
jsonrpc: "2.0",
method: "tools/call",
params: {
name: "rate-limit.status",
arguments: {
userId: $user_id
}
},
id: 1
}' | http POST "$MCP_URL" \
Authorization:"Bearer $TOKEN"
fi
if echo "$RESPONSE" | jq -e '.error' >/dev/null 2>&1; then
echo "Error:" $(echo "$RESPONSE" | jq -r '.error')
# Check for rate limit
if echo "$RESPONSE" | jq -e '.details.resetTime' >/dev/null 2>&1; then
echo "Rate limited. Reset at:" $(echo "$RESPONSE" | jq -r '.details.resetTime')
fi
fi
#!/bin/bash
# Get token
TOKEN=$(node scripts/auth-cli.mjs token 2>/dev/null)
if [ $? -ne 0 ]; then
echo "❌ Not authenticated. Run: node scripts/auth-cli.mjs login"
exit 1
fi
# Construct question
QUESTION="$1"
if [ -z "$QUESTION" ]; then
echo "Usage: $0 'your question here'"
exit 1
fi
# Send request
RESPONSE=$(echo "{
\"jsonrpc\": \"2.0\",
\"method\": \"tools/call\",
\"params\": {
\"name\": \"agent.second_opinion\",
\"arguments\": {
\"question\": $(echo "$QUESTION" | jq -Rs .)
}
},
\"id\": 1
}" | http POST "https://ai-universe-backend-dev-114133832173.us-central1.run.app/mcp" \
Accept:'application/json, text/event-stream' \
Authorization:"Bearer $TOKEN" \
--timeout=180 \
--print=b)
# Parse and display
echo "$RESPONSE" | jq -r '.result.content[0].text' | jq '.'
Why HTTPie is preferred:
HTTPie Example:
http POST $URL Authorization:"Bearer $TOKEN" < request.json
curl Equivalent:
curl -X POST "$URL" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d @request.json
~/.claude/scripts/secondo-cli.sh - Implementation reference