用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aAAaqwq/AGI-Super-Team --skill nginx命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
币安广场合约投机雷达 v5:以最近24小时专业交易帖为主要证据,回源核验帖子, 联合币安公共合约行情、4周期K线、布林带、ATR、量能和RR,生成可审计的本地影子报告。 触发词:币安广场、扫描币安、binance square、合约机会、交易信号雷达、4小时雷达
BTC 5分钟K线实时方向预测。v5.9对抗式审查重构: 13因子收敛到3个有证据信号(half_body延续+volume放量+meanrev回归, 11个47-49%硬币因子清零) + 三层独立信息过滤(多周期4h/1h/15m趋势 + 跨资产ETH/SOL广度 + 真订单流OFI) + 移除bull×0.92惩罚/Platt置信度门控。半K线策略第2分钟执行。黑天鹅防护: ATR spike+FNG<25。Binance端点双向故障切换。
BB 双向套利策略:加密合约 10x 杠杆布林带均值回归。布林带收窄=横盘→在下轨买、上轨卖;三重过滤器(1h趋势/RSI/BB甜区)确认碗平放,轨对轨止盈(RR 2:1~4:1)。含实时WebSocket模拟盘(paper)、历史回测(simulate/backtest_daily)、币安永续实盘CLI(trade_exec)。触发:'bb套利'、'布林带'、'bollinger'、'横盘策略'、'NEAR'、'回测'、'模拟盘'、'paper trading'。
基于 SOC 职业分类
正在显示 SKILL.md
| name | Nginx |
| slug | nginx |
| version | 1.0.1 |
| description | Configure Nginx for reverse proxy, load balancing, SSL termination, and high-performance static serving. |
User needs Nginx expertise — from basic server blocks to production configurations. Agent handles reverse proxy, SSL, caching, and performance tuning.
| Topic | File |
|---|---|
| Reverse proxy patterns | proxy.md |
| SSL/TLS configuration | ssl.md |
| Performance tuning | performance.md |
| Common configurations | examples.md |
= first, then ^~ prefix, then regex ~/~*, then longest prefixlocation /api matches /api, /api/, /api/anything — prefix matchlocation = /api only matches exactly /api — not /api/location ~ \.php$ is regex, case-sensitive — ~* for case-insensitive^~ stops regex search if prefix matches — use for static filesproxy_pass http://backend preserves location path — /api/users → /api/usersproxy_pass http://backend/ replaces location path — /api/users → /userscurl -v to see actual backend requesttry_files $uri $uri/ /index.html for SPA — checks file, then dir, then fallback=404 for error$uri/ tries directory with index — set index index.htmlproxy_pass directlyproxy_set_header Host $host — backend sees original host, not proxy IPproxy_set_header X-Real-IP $remote_addr — client IP, not proxyproxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for — append to chainproxy_set_header X-Forwarded-Proto $scheme — for HTTPS detectionupstream block — upstream backend { server 127.0.0.1:3000; }proxy_pass http://backend uses upstream — load balancing includedmax_fails and fail_timeout — marks server unavailablekeepalive 32 for connection pooling — reduces connection overheadssl_certificate is full chain — cert + intermediates, not just certssl_certificate_key is private key — keep permissions restrictedssl_protocols TLSv1.2 TLSv1.3 — disable older protocolsssl_prefer_server_ciphers on — server chooses cipher, not clientnginx -t before nginx -s reload — test config firstroot inside location — prefer in server, override only when neededalias vs root — alias replaces location, root appends locationif — many things break inside if, avoid complex logic$uri is decoded, normalized path — /foo%20bar becomes /foo bar$request_uri is original with query string — unchanged from client$args is query string — $arg_name for specific parameter$host from Host header — $server_name from configworker_processes auto — matches CPU coresworker_connections 1024 — per worker, multiply by workers for maxsendfile on — kernel-level file transfergzip on only for text — gzip_types text/plain application/json ...gzip_min_length 1000 — small files not worth compressingaccess_log off for static assets — reduces I/Olog_format — add response time, upstream timeerror_log level: debug, info, warn, error — debug is verbosemap and if — skip health checks