File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ metadata:
88 requires :
99 bins :
1010 - python3
11- - node
1211---
1312
1413# Swarm Orchestrator Skill
@@ -370,11 +369,12 @@ Sequential processing - output of one feeds into next.
370369
371370## Security Considerations
372371
373- 1 . ** Never bypass the permission wall** for DATABASE/PAYMENTS APIs
372+ 1 . ** Never bypass the permission wall** for gated resources
3743732 . ** Always include justification** explaining the business need
3753743 . ** Use minimal scope** - request only what you need
3763754 . ** Check token expiry** - tokens are valid for 5 minutes
377- 5 . ** Audit trail** - all permission requests are logged
376+ 5 . ** Validate tokens** - use ` python {baseDir}/scripts/validate_token.py TOKEN ` to verify grant tokens before use
377+ 6 . ** Audit trail** - all permission requests are logged
378378
379379## 📝 Audit Trail Requirements (MANDATORY)
380380
@@ -446,6 +446,9 @@ with open(audit_file, "a") as f:
446446Expired permission tokens are automatically tracked. Run periodic cleanup:
447447
448448``` bash
449+ # Validate a grant token
450+ python {baseDir}/scripts/validate_token.py grant_a1b2c3d4e5f6
451+
449452# List expired tokens (without removing)
450453python {baseDir}/scripts/revoke_token.py --list-expired
451454
You can’t perform that action at this time.
0 commit comments