Exécutez n'importe quel Skill dans Manus
en un clic
en un clic
Exécutez n'importe quel Skill dans Manus en un clic
Commencer$pwd:
$ git log --oneline --stat
stars:2 538
forks:356
updated:27 avril 2026 à 11:25
SKILL.md
| name | postgres-performance |
| description | Guide for investigating slow PostgreSQL queries |
kubectl run temp-psql --image=postgres:15-alpine --rm -it --restart=Never --namespace=namespace-104b --env="PGPASSWORD=postgres123" -- psql -h postgres -U postgres -d userdb
SELECT query, mean_exec_time, calls
FROM pg_stat_statements
WHERE query NOT LIKE '%pg_stat_statements%'
ORDER BY mean_exec_time DESC
LIMIT 10;
EXPLAIN ANALYZE SELECT * FROM users WHERE email = 'user1@example.com';
\d users
If you see "Seq Scan" on a large table, it indicates a missing index.
CREATE INDEX idx_users_email ON users(email);
AWS Lambda High Latency Troubleshooting
Troubleshooting Application Gateway Problems
Database Connection Troubleshooting
Python Application Memory Troubleshooting
Service Connectivity Issues
Use this skill when the user asks to "patch a CVE", "fix a CVE", "handle a CVE", "check a CVE", or discusses Docker image vulnerabilities, docker scout findings, or Go/dependency CVE remediation in the Dockerfile.