Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começar$pwd:
$ git log --oneline --stat
stars:751
forks:39
updated:7 de março de 2026 às 11:45
SKILL.md
Profile macOS processes (CPU hot spots, hangs, "what is X doing?"). Wraps sample/spindump/xctrace and prints a compact text summary or speedscope/flamegraph data.
Read Slack — search messages, list channels/users, read history and thread replies.
Access git.thalheim.io (Gitea) API as Janet — create repos, issues, PRs, releases, etc.
Read-only GitHub API access as Mic92 — issues, PRs, releases, commits, actions runs, etc.
Manage todos using todoman and vdirsyncer.
Manage documents in Paperless-ngx (search, upload, tag). Use for document management tasks.
| name | http |
| description | Make HTTP requests using hurl. Use for accessing websites/apis |
# GET HTML
hurl <<'EOF'
GET https://example.org
HTTP 200
[Asserts]
xpath "normalize-space(//head/title)" == "Hello world!"
EOF
# Chain requests with captures
hurl <<'EOF'
POST https://api.example.com/login
Content-Type: application/json
{"user": "me", "pass": "secret"}
HTTP 200
[Captures]
token: jsonpath "$.token"
GET https://api.example.com/resource
Authorization: Bearer {{token}}
HTTP 200
EOF
Flags: --variable key=val, --test (assert mode).