소스 정보
- 저장소
- johnalbertini14-glitch/openclaw-skills
- 최근 소스 활동
- 2026년 1월 31일 23:32
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill dsiprouter명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
SOC 직업 분류 기준
| name | dsiprouter |
| description | Call the dSIPRouter REST API using the Postman collection (curl + jq). |
| metadata | {"openclaw":{"emoji":"📡","requires":{"bins":["curl","jq"],"env":["DSIP_ADDR","DSIP_TOKEN"]}}} |
This skill is generated from the Postman collection and provides:
curl calling conventionbin/dsiprouter.sh helper CLI with subcommands for the collection’s requestsDSIP_ADDR — hostname/IP of your dSIPRouter node (no scheme)DSIP_TOKEN — API bearer tokenDSIP_INSECURE=1 to allow self-signed TLS (adds -k)Base URL:
https://$DSIP_ADDR:5000/api/v1Auth header:
Authorization: Bearer $DSIP_TOKENdsip_api() {
local method="$1"; shift
local path="$1"; shift
local insecure=()
if [ "${DSIP_INSECURE:-}" = "1" ]; then insecure=(-k); fi
curl "${insecure[@]}" --silent --show-error --fail-with-body \
--connect-timeout 5 --max-time 30 \
-H "Authorization: Bearer ${DSIP_TOKEN}" \
-H "Content-Type: application/json" \
-X "${method}" "https://${DSIP_ADDR}:5000${path}" \
"$@"
}
# list subcommands
dsiprouter.sh help
# list endpoint groups
dsiprouter.sh endpointgroups:list | jq .
# create inbound mapping with your own JSON payload
dsiprouter.sh inboundmapping:create '{"did":"13132222223","servers":["#22"],"name":"Taste Pizzabar"}' | jq .
# or send the Postman sample body
dsiprouter.sh inboundmapping:create --sample | jq .
dsiprouter.sh kamailio:stats | jq .
dsiprouter.sh kamailio:reload | jq .
endpointgroups:list → GET /api/v1/endpointgroupsendpointgroups:get → GET /api/v1/endpointgroups/9 — Get a single endpointgroupendpointgroups:create → POST /api/v1/endpointgroups — Create an endpointgroupendpointgroups:create_1 → POST /api/v1/endpointgroups — Create an endpointgroupendpointgroups:create_2 → POST /api/v1/endpointgroups — Create an endpointgroupendpointgroups:create_3 → POST /api/v1/endpointgroups — Create an endpointgroupendpointgroups:delete → DELETE /api/v1/endpointgroups/53 — Delete endpointgroupendpointgroups:update → PUT /api/v1/endpointgroups/34 — Update an endpointgroupkamailio:reload → POST /api/v1/reload/kamailio — Trigger a reload of Kamailio. This is needed after changes are madekamailio:list → GET /api/v1/kamailio/stats — Obtain call statisticsinboundmapping:list → GET /api/v1/inboundmapping — Get a list of inboundmappingsinboundmapping:create → POST /api/v1/inboundmapping — Create new inboundmappinginboundmapping:update → PUT /api/v1/inboundmapping?did=13132222223 — Create new inboundmappinginboundmapping:delete → DELETE /api/v1/inboundmapping?did=13132222223 — Create new inboundmappingleases:list → GET /api/v1/lease/endpoint?email=mack@goflyball.com&ttl=5m — Get a single endpointgroupleases:list_1 → GET /api/v1/lease/endpoint?email=mack@goflyball.com&ttl=1m&type=ip&auth_ip=172.145.24.2 — Get a single endpointgroupleases:revoke → DELETE /api/v1/lease/endpoint/34/revoke — Get a single endpointgroupcarriergroups:list → GET /api/v1/carriergroupscarriergroups:create → POST /api/v1/carriergroupsauth:create → POST /api/v1/auth/userauth:update → PUT /api/v1/auth/user/2auth:delete → DELETE /api/v1/auth/user/2auth:list → GET /api/v1/auth/userauth:login → POST /api/v1/auth/logincdr:get → GET /api/v1/cdrs/endpointgroups/17?type=csv&dtfilter=2022-09-14&email=Truecdr:get_1 → GET /api/v1/cdrs/endpoint/54bin/dsiprouter.sh