claims
Original:🇺🇸 English
Translated
Claims-based authorization for agents and operations. Grant, revoke, and verify permissions for secure multi-agent coordination. Use when: permission management, access control, secure operations, authorization checks. Skip when: open access, no security requirements, single-agent local work.
3installs
Sourceruvnet/ruflo
Added on
NPX Install
npx skill4agent add ruvnet/ruflo claimsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Claims Authorization Skill
Purpose
Claims-based authorization for secure agent operations and access control.
Claim Types
| Claim | Description |
|---|---|
| Read file access |
| Write file access |
| Command execution |
| Agent spawning |
| Memory access |
| Network access |
| Administrative operations |
Commands
Check Claim
bash
npx claude-flow claims check --agent agent-123 --claim writeGrant Claim
bash
npx claude-flow claims grant --agent agent-123 --claim write --scope "/src/**"Revoke Claim
bash
npx claude-flow claims revoke --agent agent-123 --claim writeList Claims
bash
npx claude-flow claims list --agent agent-123Scope Patterns
| Pattern | Description |
|---|---|
| All resources |
| All files in src |
| TOML files in config |
| Patterns namespace |
Security Levels
| Level | Claims |
|---|---|
| read only |
| read, write, execute |
| + spawn, memory |
| all claims |
Best Practices
- Follow principle of least privilege
- Scope claims to specific resources
- Audit claim usage regularly
- Revoke claims when no longer needed