Interactive guidance for selecting appropriate trust verification tier
Interactive guidance for selecting appropriate trust verification tier
Select the optimal trust verification tier for multi-agent interactions based on stakes, context, and requirements.
See the detailed interactive selection process below with decision trees and tier reference.
Match verification cost to interaction stakes. Don't pay for blockchain when signatures suffice.
START: What is the economic value at risk?
Less than $100?
└─► L0 Local (free, <10ms)
Unless: Cross-organization OR audit required
└─► L1 Attested ($0.0001, minutes)
$100 - $10,000?
└─► L1 Attested (audit trail)
Unless: Automated enforcement needed
└─► L2 Contracted ($0.10, seconds)
$10,000 - $100,000?
└─► L2 Contracted (smart contracts)
Unless: Multi-party agreement required
└─► L3 Consensus ($1-5, minutes)
Over $100,000?
└─► L3 Consensus OR L4 Economic
L4 if: Long-term partnership with stake commitment
| Tier | Mechanism | Latency | Cost | Best For | ||--|||-| | L0 Local | Ed25519 signatures | <10ms | Free | Internal agents, development | | L1 Attested | Merkle anchoring | Minutes | $0.0001 | Cross-org, audit trails | | L2 Contracted | Smart contracts | Seconds | $0.10 | Payments, SLAs | | L3 Consensus | Multi-party BFT | Minutes | $1-5 | Critical decisions | | L4 Economic | Stake + slashing | Variable | Stake | Long-term partnerships |
When asked to select a tier, gather these inputs:
Ask: What is the approximate economic value at risk?
Ask: Is this interaction within the same organization or cross-organization?
Ask: Is an audit trail required for compliance or legal reasons?
Ask: Do you need automated enforcement (penalties, refunds)?
Ask: Does this require multi-party consensus?
Ask: Is this a long-term relationship requiring ongoing trust?
After gathering inputs, provide:
## Recommended Trust Tier: L{tier_number} {tier_name}
### Rationale
- Economic value: {value}
- Cross-organization: {yes/no}
- Audit required: {yes/no}
- Automated enforcement: {yes/no}
- Multi-party consensus: {yes/no}
- Long-term relationship: {yes/no}
### Tier Details
- **Mechanism**: {mechanism}
- **Latency**: {latency}
- **Cost**: {cost}
- **Guarantees**: {guarantees}
### Implementation
```python
from lib.society.simple import create_agent_society, SocietyPreset
# For L{tier_number}, use {preset} preset
society = create_agent_society(
"YourProject",
agents=["agent1", "agent2"],
preset=SocietyPreset.{preset}
)
The system will automatically escalate to a higher tier if:
## Common Scenarios
### Development & Testing
**Recommendation:** L0 Local (DEVELOPMENT preset)
```python
society = create_agent_society("MyProject", preset=SocietyPreset.DEVELOPMENT)
Recommendation: L1 Attested (PRODUCTION preset)
society = create_agent_society("MyProject", preset=SocietyPreset.PRODUCTION)
Recommendation: L2 Contracted (ENTERPRISE preset)
society = create_agent_society("MyProject", preset=SocietyPreset.ENTERPRISE)
Recommendation: L2 or L3 depending on value
# Configure for contracted trust
from lib.society.presets import SocietyBuilder, TrustTier
society = (SocietyBuilder("FinanceProject")
.with_trust_tier(TrustTier.L2_CONTRACTED)
.with_contract_enforcement(True)
.with_agents(["payment_agent", "verification_agent"])
.build())
| Tier | Setup Cost | Operational Cost | Security Level | ||||-| | L0 | Minimal | Free | Good for trusted environments | | L1 | Low | $0.10-$1/month | Audit-ready | | L2 | Medium | $10-$100/month | Enterprise-grade | | L3 | High | $100-$1000/month | Critical infrastructure | | L4 | Very high | Stake opportunity cost | Maximum security |
This skill should be used when strict adherence to the defined process is required.
npx skills add gitwalter/selecting-society-tiers下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer